From 08a7da766de0f9879b086c8b3fac60a99831876a Mon Sep 17 00:00:00 2001 From: Stefan Sauer Date: Sun, 15 Oct 2017 16:48:21 +0200 Subject: [PATCH] aggregator: rename a local variable The variable tracks wheter the queue is not empty, but num_buffers==0. That means we have events or queries to process. Rename accordingly. --- gst-libs/gst/base/gstaggregator.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/gst-libs/gst/base/gstaggregator.c b/gst-libs/gst/base/gstaggregator.c index 88a3a1801b..785775cff4 100644 --- a/gst-libs/gst/base/gstaggregator.c +++ b/gst-libs/gst/base/gstaggregator.c @@ -447,7 +447,7 @@ gst_aggregator_check_pads_ready (GstAggregator * self) GstAggregatorPad *pad; GList *l, *sinkpads; gboolean have_buffer = TRUE; - gboolean have_event = FALSE; + gboolean have_event_or_query = FALSE; GST_LOG_OBJECT (self, "checking pads"); @@ -464,7 +464,7 @@ gst_aggregator_check_pads_ready (GstAggregator * self) if (pad->priv->num_buffers == 0) { if (!gst_aggregator_pad_queue_is_empty (pad)) - have_event = TRUE; + have_event_or_query = TRUE; if (!pad->priv->eos) { have_buffer = FALSE; @@ -485,7 +485,7 @@ gst_aggregator_check_pads_ready (GstAggregator * self) PAD_UNLOCK (pad); } - if (!have_buffer && !have_event) + if (!have_buffer && !have_event_or_query) goto pad_not_ready; if (have_buffer) @@ -503,13 +503,13 @@ no_sinkpads: } pad_not_ready: { - if (have_event) + if (have_event_or_query) GST_LOG_OBJECT (pad, "pad not ready to be aggregated yet," " but waking up for serialized event"); else GST_LOG_OBJECT (pad, "pad not ready to be aggregated yet"); GST_OBJECT_UNLOCK (self); - return have_event; + return have_event_or_query; } }