mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
audioaggregator: use local var
Instead of the self->priv-> deref use the local var we created already.
This commit is contained in:
parent
d95e62be82
commit
4080b844c0
1 changed files with 1 additions and 1 deletions
|
@ -1385,7 +1385,7 @@ gst_audio_aggregator_aggregate (GstAggregator * agg, gboolean timeout)
|
|||
|
||||
GST_AUDIO_AGGREGATOR_UNLOCK (aagg);
|
||||
|
||||
ret = gst_aggregator_finish_buffer (agg, aagg->priv->current_buffer);
|
||||
ret = gst_aggregator_finish_buffer (agg, outbuf);
|
||||
aagg->priv->current_buffer = NULL;
|
||||
|
||||
GST_LOG_OBJECT (aagg, "pushed outbuf, result = %s", gst_flow_get_name (ret));
|
||||
|
|
Loading…
Reference in a new issue