mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-26 02:00:33 +00:00
videodecoder: Don't always drain on gaps/discont
V4L2 and OMX decoder don't support draining and keeping reference frames. As a side effect, these decoder just stops working on gaps/discont. When this drain was introduced, the commit stated that this was for TRICKMODE_KEY_UNITS, so only drain if running in this mode. https://bugzilla.gnome.org/show_bug.cgi?id=796771
This commit is contained in:
parent
fe8f7dac83
commit
62cb08404b
1 changed files with 4 additions and 2 deletions
|
@ -1190,6 +1190,7 @@ gst_video_decoder_sink_event_default (GstVideoDecoder * decoder,
|
|||
GList *frame_events;
|
||||
|
||||
GST_VIDEO_DECODER_STREAM_LOCK (decoder);
|
||||
if (decoder->input_segment.flags & GST_SEEK_FLAG_TRICKMODE_KEY_UNITS)
|
||||
flow_ret = gst_video_decoder_drain_out (decoder, FALSE);
|
||||
ret = (flow_ret == GST_FLOW_OK);
|
||||
|
||||
|
@ -2124,7 +2125,8 @@ gst_video_decoder_chain_forward (GstVideoDecoder * decoder,
|
|||
/* Draining on DISCONT is handled in chain_reverse() for reverse playback,
|
||||
* and this function would only be called to get everything collected GOP
|
||||
* by GOP in the parse_gather list */
|
||||
if (decoder->input_segment.rate > 0.0 && GST_BUFFER_IS_DISCONT (buf))
|
||||
if (decoder->input_segment.rate > 0.0 && GST_BUFFER_IS_DISCONT (buf)
|
||||
&& (decoder->input_segment.flags & GST_SEEK_FLAG_TRICKMODE_KEY_UNITS))
|
||||
ret = gst_video_decoder_drain_out (decoder, FALSE);
|
||||
|
||||
if (priv->current_frame == NULL)
|
||||
|
|
Loading…
Reference in a new issue