mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-22 05:56:31 +00:00
audioaggregator: fix chaining up GObject's constructed virtual method
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8416>
This commit is contained in:
parent
7aace62267
commit
e9f488a2c5
1 changed files with 2 additions and 0 deletions
|
@ -643,6 +643,8 @@ gst_audio_aggregator_constructed (GObject * object)
|
||||||
{
|
{
|
||||||
GstAudioAggregator *aagg = GST_AUDIO_AGGREGATOR (object);
|
GstAudioAggregator *aagg = GST_AUDIO_AGGREGATOR (object);
|
||||||
|
|
||||||
|
G_OBJECT_CLASS (gst_audio_aggregator_pad_parent_class)->constructed (object);
|
||||||
|
|
||||||
gst_audio_aggregator_translate_output_buffer_duration (aagg,
|
gst_audio_aggregator_translate_output_buffer_duration (aagg,
|
||||||
DEFAULT_OUTPUT_BUFFER_DURATION);
|
DEFAULT_OUTPUT_BUFFER_DURATION);
|
||||||
gst_audio_aggregator_recalculate_latency (aagg);
|
gst_audio_aggregator_recalculate_latency (aagg);
|
||||||
|
|
Loading…
Reference in a new issue