mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
basetransform: Fix 'equality comparison with extraneous parentheses' compiler warning
This commit is contained in:
parent
c8cde669b7
commit
7c32cfd661
1 changed files with 1 additions and 1 deletions
|
@ -2655,7 +2655,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 last_stop_out = GST_CLOCK_TIME_NONE;
|
||||
|
||||
/* Remember last stop position */
|
||||
|
|
Loading…
Reference in a new issue