mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
audiobasesink: Fix infinite recursion by chaining up to the correct parent class vfunc
This commit is contained in:
parent
bb3eb93ee9
commit
5cb3d75dbf
1 changed files with 1 additions and 1 deletions
|
@ -1021,7 +1021,7 @@ gst_audio_base_sink_wait_eos (GstBaseSink * bsink, GstEvent * event)
|
|||
GstAudioBaseSink *sink = GST_AUDIO_BASE_SINK (bsink);
|
||||
GstFlowReturn ret;
|
||||
|
||||
ret = GST_BASE_SINK_CLASS (parent_class)->event (bsink, event);
|
||||
ret = GST_BASE_SINK_CLASS (parent_class)->wait_eos (bsink, event);
|
||||
if (ret != GST_FLOW_OK)
|
||||
return ret;
|
||||
|
||||
|
|
Loading…
Reference in a new issue