mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
gsturi: Don't use g_signal_emit_by_name, use the signal ID directly
This commit is contained in:
parent
e572d3bf0b
commit
1d91fd9fb9
1 changed files with 11 additions and 2 deletions
11
gst/gsturi.c
11
gst/gsturi.c
|
@ -51,6 +51,14 @@
|
|||
GST_DEBUG_CATEGORY_STATIC (gst_uri_handler_debug);
|
||||
#define GST_CAT_DEFAULT gst_uri_handler_debug
|
||||
|
||||
enum
|
||||
{
|
||||
NEW_URI,
|
||||
LAST_SIGNAL
|
||||
};
|
||||
|
||||
static guint gst_uri_handler_signals[LAST_SIGNAL] = { 0 };
|
||||
|
||||
static void gst_uri_handler_base_init (gpointer g_class);
|
||||
|
||||
GType
|
||||
|
@ -98,6 +106,7 @@ gst_uri_handler_base_init (gpointer g_class)
|
|||
* The URI of the given @handler has changed.
|
||||
*/
|
||||
|
||||
gst_uri_handler_signals[NEW_URI] =
|
||||
g_signal_new ("new-uri", GST_TYPE_URI_HANDLER, G_SIGNAL_RUN_LAST,
|
||||
G_STRUCT_OFFSET (GstURIHandlerInterface, new_uri), NULL, NULL,
|
||||
gst_marshal_VOID__STRING, G_TYPE_NONE, 1, G_TYPE_STRING);
|
||||
|
@ -767,5 +776,5 @@ gst_uri_handler_new_uri (GstURIHandler * handler, const gchar * uri)
|
|||
{
|
||||
g_return_if_fail (GST_IS_URI_HANDLER (handler));
|
||||
|
||||
g_signal_emit_by_name (handler, "new-uri", uri);
|
||||
g_signal_emit (handler, gst_uri_handler_signals[NEW_URI], 0, uri);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue