mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-31 03:29:50 +00:00
avidemux: skip JUNK chunks in data section in streaming mode
Skip JUNK tags in streaming mode as well instead of EOSing prematurely. Fixes #564100.
This commit is contained in:
parent
d46e459f22
commit
4d07c78f0b
1 changed files with 2 additions and 0 deletions
|
@ -4004,6 +4004,8 @@ gst_avi_demux_stream_data (GstAviDemux * avi)
|
|||
}
|
||||
}
|
||||
return GST_FLOW_OK;
|
||||
} else if (tag == GST_RIFF_TAG_JUNK) {
|
||||
GST_DEBUG ("JUNK chunk, skipping");
|
||||
} else if (tag == GST_RIFF_TAG_idx1) {
|
||||
GST_DEBUG ("Found index tag, stream done");
|
||||
avi->have_eos = TRUE;
|
||||
|
|
Loading…
Reference in a new issue