From c1983b9939b0fc0f069dee2d109533ccc5eabe71 Mon Sep 17 00:00:00 2001 From: Koop Mast Date: Wed, 22 Jun 2011 17:09:52 +0200 Subject: [PATCH] basetransform: remove redundant () See #653137 --- libs/gst/base/gstbasetransform.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/gst/base/gstbasetransform.c b/libs/gst/base/gstbasetransform.c index ecb5cfa..9575603 100644 --- a/libs/gst/base/gstbasetransform.c +++ b/libs/gst/base/gstbasetransform.c @@ -2018,7 +2018,7 @@ gst_base_transform_chain (GstPad * pad, GstBuffer * buffer) /* outbuf can be NULL, this means a dropped buffer, if we have a buffer but * GST_BASE_TRANSFORM_FLOW_DROPPED we will not push either. */ if (outbuf != NULL) { - if ((ret == GST_FLOW_OK)) { + if (ret == GST_FLOW_OK) { GstClockTime position_out = GST_CLOCK_TIME_NONE; /* Remember last stop position */ -- 2.7.4