mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-05 15:08:53 +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;
|
break;
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
res = GST_BASE_SINK_CLASS (bsink)->query (bsink, query);
|
res = GST_BASE_SINK_CLASS (parent_class)->query (bsink, query);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
return res;
|
return res;
|
||||||
|
|
Loading…
Reference in a new issue