mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 08:41:07 +00:00
avidemux: Stop without posting error on flushing
This could just be a normal pipeline shutdown.
This commit is contained in:
parent
afcd462918
commit
7917bea855
1 changed files with 3 additions and 1 deletions
|
@ -4355,9 +4355,11 @@ no_index:
|
|||
}
|
||||
pull_range_failed:
|
||||
{
|
||||
if (res == GST_FLOW_FLUSHING)
|
||||
return res;
|
||||
GST_ELEMENT_ERROR (avi, STREAM, DEMUX, (NULL),
|
||||
("pull_range flow reading header: %s", gst_flow_get_name (res)));
|
||||
return GST_FLOW_ERROR;
|
||||
return res;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue