mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-26 17:18:15 +00:00
baseaudiosink: chain up to parent_class correctly
This commit is contained in:
parent
8aea5d34bd
commit
a3971d2afe
1 changed files with 1 additions and 1 deletions
|
@ -362,7 +362,7 @@ gst_base_audio_sink_query_pad (GstBaseSink * bsink, GstQuery * query)
|
|||
break;
|
||||
}
|
||||
default:
|
||||
res = GST_BASE_SINK_CLASS (bsink)->query (bsink, query);
|
||||
res = GST_BASE_SINK_CLASS (parent_class)->query (bsink, query);
|
||||
break;
|
||||
}
|
||||
return res;
|
||||
|
|
Loading…
Reference in a new issue