mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-12 02:15:31 +00:00
avidemux: fix crash with certain videos
This is a regression from 1.2 caused by the port to the pad flow combiner. https://bugzilla.gnome.org/show_bug.cgi?id=736192
This commit is contained in:
parent
a3a5530518
commit
7271ff253b
1 changed files with 1 additions and 1 deletions
|
@ -5107,7 +5107,7 @@ gst_avi_demux_find_next (GstAviDemux * avi, gfloat rate)
|
|||
stream = &avi->stream[i];
|
||||
|
||||
/* ignore streams that finished */
|
||||
if (GST_PAD_LAST_FLOW_RETURN (stream->pad) == GST_FLOW_EOS)
|
||||
if (stream->pad && GST_PAD_LAST_FLOW_RETURN (stream->pad) == GST_FLOW_EOS)
|
||||
continue;
|
||||
|
||||
position = stream->current_timestamp;
|
||||
|
|
Loading…
Reference in a new issue