mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 05:12:09 +00:00
examples: webrtc: mp-sendrecv: set element states to NULL after removing them from pipeline
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3219>
This commit is contained in:
parent
17c111d2b9
commit
93ed51cbb2
1 changed files with 2 additions and 0 deletions
|
@ -308,6 +308,7 @@ remove_peer_from_pipeline (const gchar * peer_id)
|
|||
return;
|
||||
|
||||
gst_bin_remove (GST_BIN (pipeline), webrtc);
|
||||
gst_element_set_state (GST_ELEMENT (webrtc), GST_STATE_NULL);
|
||||
gst_object_unref (webrtc);
|
||||
|
||||
qname = g_strdup_printf ("queue-%s", peer_id);
|
||||
|
@ -321,6 +322,7 @@ remove_peer_from_pipeline (const gchar * peer_id)
|
|||
gst_object_unref (sinkpad);
|
||||
|
||||
gst_bin_remove (GST_BIN (pipeline), q);
|
||||
gst_element_set_state (GST_ELEMENT (q), GST_STATE_NULL);
|
||||
gst_object_unref (q);
|
||||
|
||||
tee = gst_bin_get_by_name (GST_BIN (pipeline), "audiotee");
|
||||
|
|
Loading…
Reference in a new issue