From 160b5ee560de92aa4323377ca73095f04218f5ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Tue, 21 Sep 2010 12:27:20 +0200 Subject: [PATCH] mplex: Don't use GST_FLOW_IS_SUCCESS() --- ext/mplex/gstmplex.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/mplex/gstmplex.cc b/ext/mplex/gstmplex.cc index 677db8d074..04eae2edf1 100644 --- a/ext/mplex/gstmplex.cc +++ b/ext/mplex/gstmplex.cc @@ -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);