mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 11:41:09 +00:00
playsink: Fix volume leak
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/4459>
This commit is contained in:
parent
63ccf85049
commit
c6bb20bba8
1 changed files with 2 additions and 3 deletions
|
@ -4998,9 +4998,8 @@ gst_play_sink_change_state (GstElement * element, GstStateChange transition)
|
|||
/* fall through */
|
||||
case GST_STATE_CHANGE_READY_TO_NULL:
|
||||
GST_PLAY_SINK_LOCK (playsink);
|
||||
if (playsink->audiochain && playsink->audiochain->sink_volume) {
|
||||
/* remove our links to the volume elements when they were
|
||||
* provided by a sink */
|
||||
if (playsink->audiochain) {
|
||||
/* remove our links to the volume elements */
|
||||
disconnect_audio_chain (playsink->audiochain, playsink);
|
||||
if (playsink->audiochain->volume)
|
||||
gst_object_unref (playsink->audiochain->volume);
|
||||
|
|
Loading…
Reference in a new issue