mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
avidemux: fix header parsing in push mode
Fix 'break' that got warped to the wrong place, probably as part of a merge. Fixes GST_IS_BUFFER criticals in parse_idit() when being accidentally passed a NULL buffer because of the missing break. gst-launch-1.0 playbin uri=http://docs.gstreamer.com/media/sintel_trailer-480i.avi
This commit is contained in:
parent
0c24e92308
commit
f879e4e0f0
1 changed files with 1 additions and 1 deletions
|
@ -3228,8 +3228,8 @@ gst_avi_demux_stream_header_push (GstAviDemux * avi)
|
|||
case GST_RIFF_TAG_JUNQ:
|
||||
case GST_RIFF_TAG_JUNK:
|
||||
goto next;
|
||||
break;
|
||||
}
|
||||
break;
|
||||
case GST_RIFF_IDIT:
|
||||
gst_avi_demux_parse_idit (avi, sub);
|
||||
goto next;
|
||||
|
|
Loading…
Reference in a new issue