mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 01:00:37 +00:00
matroska: Quiet a WARN when parsing push mode
This warning was noisy when returning EOS, which is just used to indicate more data is needed from upstream.
This commit is contained in:
parent
d71c06c8fe
commit
1e1d77a18d
1 changed files with 1 additions and 1 deletions
|
@ -127,7 +127,7 @@ gst_ebml_peek_id_length (guint32 * _id, guint64 * _length, guint * _needed,
|
|||
/* ERRORS */
|
||||
peek_error:
|
||||
{
|
||||
if (ret != GST_FLOW_FLUSHING)
|
||||
if (ret != GST_FLOW_FLUSHING && ret != GST_FLOW_EOS)
|
||||
GST_WARNING_OBJECT (el, "peek failed, ret = %s", gst_flow_get_name (ret));
|
||||
else
|
||||
GST_DEBUG_OBJECT (el, "peek failed, ret = %s", gst_flow_get_name (ret));
|
||||
|
|
Loading…
Reference in a new issue