mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 06:46:38 +00:00
oggdemux: Fix sizes again, this time for real
This commit is contained in:
parent
bf9d573cd1
commit
8a678da1fe
1 changed files with 2 additions and 2 deletions
|
@ -490,8 +490,8 @@ gst_ogg_demux_chain_peer (GstOggPad * pad, ogg_packet * packet,
|
||||||
/* We don't push header packets for VP8 */
|
/* We don't push header packets for VP8 */
|
||||||
cret = gst_ogg_demux_combine_flows (ogg, pad, GST_FLOW_OK);
|
cret = gst_ogg_demux_combine_flows (ogg, pad, GST_FLOW_OK);
|
||||||
goto done;
|
goto done;
|
||||||
} else if (packet->b_o_s || (packet->bytes >= 6
|
} else if (packet->b_o_s || (packet->bytes >= 5
|
||||||
&& memcmp (packet->packet, "OVP80", 6) == 0)) {
|
&& memcmp (packet->packet, "OVP80", 5) == 0)) {
|
||||||
/* We don't push header packets for VP8 */
|
/* We don't push header packets for VP8 */
|
||||||
cret = gst_ogg_demux_combine_flows (ogg, pad, GST_FLOW_OK);
|
cret = gst_ogg_demux_combine_flows (ogg, pad, GST_FLOW_OK);
|
||||||
goto done;
|
goto done;
|
||||||
|
|
Loading…
Reference in a new issue