mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
mplex: Don't use GST_FLOW_IS_SUCCESS()
This commit is contained in:
parent
f96df5c17a
commit
160b5ee560
1 changed files with 1 additions and 1 deletions
|
@ -556,7 +556,7 @@ gst_mplex_chain (GstPad * sinkpad, GstBuffer * buffer)
|
|||
if (G_UNLIKELY (mpad->eos))
|
||||
goto eos;
|
||||
|
||||
if (G_UNLIKELY (!GST_FLOW_IS_SUCCESS (mplex->srcresult)))
|
||||
if (G_UNLIKELY (mplex->srcresult != GST_FLOW_OK))
|
||||
goto ignore;
|
||||
|
||||
gst_adapter_push (mpad->adapter, buffer);
|
||||
|
|
Loading…
Reference in a new issue