mplex: Don't use GST_FLOW_IS_SUCCESS()

This commit is contained in:
Sebastian Dröge 2010-09-21 12:27:20 +02:00
parent f96df5c17a
commit 160b5ee560

View file

@ -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);