mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 01:30:38 +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:
|
no_frame:
|
||||||
{
|
{
|
||||||
GST_WARNING ("display buffer does not have a valid frame");
|
GST_DEBUG ("display buffer does not have a valid frame");
|
||||||
return GST_FLOW_ERROR;
|
return GST_FLOW_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static GstFlowReturn
|
static GstFlowReturn
|
||||||
|
|
Loading…
Reference in a new issue