avidemux: Stop without posting error on flushing

This could just be a normal pipeline shutdown.
This commit is contained in:
Olivier Crête 2015-07-25 03:25:28 -04:00
parent afcd462918
commit 7917bea855

View file

@ -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;
}
}