mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 09:55:36 +00:00
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.
This commit is contained in:
parent
73f64d6f13
commit
08a7da766d
1 changed files with 5 additions and 5 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue