mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 11:29:55 +00:00
mpeg2dec: Don't error out when there is no associated buffer
In 0.10, having mpeg2dec occasionally tell us to output a frame that was never decoded was just ignored, so do the same in 1.0 Fixes: #685107
This commit is contained in:
parent
c6b03d0c3b
commit
6d35db313f
1 changed files with 2 additions and 3 deletions
|
@ -933,10 +933,9 @@ beach:
|
|||
|
||||
no_frame:
|
||||
{
|
||||
GST_WARNING ("display buffer does not have a valid frame");
|
||||
return GST_FLOW_ERROR;
|
||||
GST_DEBUG ("display buffer does not have a valid frame");
|
||||
return GST_FLOW_OK;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
static GstFlowReturn
|
||||
|
|
Loading…
Reference in a new issue