mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-21 21:46:22 +00:00
shout2: Don't register signal without class handler with G_SIGNAL_RUN_CLEANUP
There is no class handler to run during the CLEANUP stage. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-good/-/merge_requests/913>
This commit is contained in:
parent
e037391364
commit
860b74d6e2
1 changed files with 1 additions and 1 deletions
|
@ -229,7 +229,7 @@ gst_shout2send_class_init (GstShout2sendClass * klass)
|
|||
/* signals */
|
||||
gst_shout2send_signals[SIGNAL_CONNECTION_PROBLEM] =
|
||||
g_signal_new ("connection-problem", G_TYPE_FROM_CLASS (klass),
|
||||
G_SIGNAL_RUN_CLEANUP, 0, NULL, NULL, NULL, G_TYPE_NONE, 1, G_TYPE_INT);
|
||||
0, 0, NULL, NULL, NULL, G_TYPE_NONE, 1, G_TYPE_INT);
|
||||
|
||||
gstbasesink_class->start = GST_DEBUG_FUNCPTR (gst_shout2send_start);
|
||||
gstbasesink_class->stop = GST_DEBUG_FUNCPTR (gst_shout2send_stop);
|
||||
|
|
Loading…
Reference in a new issue