mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 16:21:17 +00:00
rtspclientsink: Don't run signal class handlers during the CLEANUP stage
It's sufficient to run them during the FIRST stage instead of in both. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-rtsp-server/-/merge_requests/193>
This commit is contained in:
parent
247b17c083
commit
747eaf3634
1 changed files with 2 additions and 2 deletions
|
@ -754,7 +754,7 @@ gst_rtsp_client_sink_class_init (GstRTSPClientSinkClass * klass)
|
|||
*/
|
||||
gst_rtsp_client_sink_signals[SIGNAL_NEW_MANAGER] =
|
||||
g_signal_new_class_handler ("new-manager", G_TYPE_FROM_CLASS (klass),
|
||||
G_SIGNAL_RUN_FIRST | G_SIGNAL_RUN_CLEANUP, 0, NULL, NULL, NULL,
|
||||
G_SIGNAL_RUN_FIRST, 0, NULL, NULL, NULL,
|
||||
G_TYPE_NONE, 1, GST_TYPE_ELEMENT);
|
||||
|
||||
/**
|
||||
|
@ -768,7 +768,7 @@ gst_rtsp_client_sink_class_init (GstRTSPClientSinkClass * klass)
|
|||
*/
|
||||
gst_rtsp_client_sink_signals[SIGNAL_NEW_PAYLOADER] =
|
||||
g_signal_new_class_handler ("new-payloader", G_TYPE_FROM_CLASS (klass),
|
||||
G_SIGNAL_RUN_FIRST | G_SIGNAL_RUN_CLEANUP, 0, NULL, NULL, NULL,
|
||||
G_SIGNAL_RUN_FIRST, 0, NULL, NULL, NULL,
|
||||
G_TYPE_NONE, 1, GST_TYPE_ELEMENT);
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue