rtpjitterbuffer: Free CNAME/SSRC mappings on finalize and PAUSED->READY

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2336>
This commit is contained in:
Sebastian Dröge 2022-04-29 23:33:47 +03:00
parent 2c405da921
commit 7466444b63

View file

@ -1226,6 +1226,9 @@ gst_rtp_jitter_buffer_finalize (GObject * object)
g_cond_clear (&priv->jbuf_query);
rtp_jitter_buffer_flush (priv->jbuf, NULL, NULL);
g_list_free_full (priv->cname_ssrc_mappings,
(GDestroyNotify) cname_ssrc_mapping_free);
priv->cname_ssrc_mappings = NULL;
g_queue_foreach (&priv->gap_packets, (GFunc) gst_buffer_unref, NULL);
g_queue_clear (&priv->gap_packets);
g_object_unref (priv->jbuf);
@ -1882,6 +1885,9 @@ gst_rtp_jitter_buffer_change_state (GstElement * element,
g_thread_join (priv->timer_thread);
priv->timer_thread = NULL;
gst_clear_caps (&priv->reference_timestamp_caps);
g_list_free_full (priv->cname_ssrc_mappings,
(GDestroyNotify) cname_ssrc_mapping_free);
priv->cname_ssrc_mappings = NULL;
break;
case GST_STATE_CHANGE_READY_TO_NULL:
break;