mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 16:50:47 +00:00
theoradec: remove the nonuse parameter from handle_type_packet() method
This commit is contained in:
parent
a19ae16b5a
commit
d9ec99e598
1 changed files with 2 additions and 2 deletions
|
@ -379,7 +379,7 @@ theora_handle_comment_packet (GstTheoraDec * dec, ogg_packet * packet)
|
||||||
}
|
}
|
||||||
|
|
||||||
static GstFlowReturn
|
static GstFlowReturn
|
||||||
theora_handle_type_packet (GstTheoraDec * dec, ogg_packet * packet)
|
theora_handle_type_packet (GstTheoraDec * dec)
|
||||||
{
|
{
|
||||||
gint par_num, par_den;
|
gint par_num, par_den;
|
||||||
GstFlowReturn ret = GST_FLOW_OK;
|
GstFlowReturn ret = GST_FLOW_OK;
|
||||||
|
@ -532,7 +532,7 @@ theora_handle_header_packet (GstTheoraDec * dec, ogg_packet * packet)
|
||||||
res = theora_handle_comment_packet (dec, packet);
|
res = theora_handle_comment_packet (dec, packet);
|
||||||
break;
|
break;
|
||||||
case 0x82:
|
case 0x82:
|
||||||
res = theora_handle_type_packet (dec, packet);
|
res = theora_handle_type_packet (dec);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
/* ignore */
|
/* ignore */
|
||||||
|
|
Loading…
Reference in a new issue