fix for uri changes
authorWim Taymans <wim.taymans@collabora.co.uk>
Wed, 22 Jun 2011 14:38:48 +0000 (16:38 +0200)
committerWim Taymans <wim.taymans@collabora.co.uk>
Wed, 22 Jun 2011 14:38:48 +0000 (16:38 +0200)
ext/gio/gstgio.c
gst-libs/gst/app/gstappsink.c
gst-libs/gst/app/gstappsrc.c
gst-libs/gst/cdda/gstcddabasesrc.c

index 3bf9c69..35c8b85 100644 (file)
@@ -139,19 +139,19 @@ gst_gio_get_supported_protocols (void)
 }
 
 static GstURIType
-gst_gio_uri_handler_get_type_sink (void)
+gst_gio_uri_handler_get_type_sink (GType type)
 {
   return GST_URI_SINK;
 }
 
 static GstURIType
-gst_gio_uri_handler_get_type_src (void)
+gst_gio_uri_handler_get_type_src (GType type)
 {
   return GST_URI_SRC;
 }
 
 static gchar **
-gst_gio_uri_handler_get_protocols (void)
+gst_gio_uri_handler_get_protocols (GType type)
 {
   static gchar **protocols = NULL;
 
index 4e69069..4f1ee68 100644 (file)
@@ -1359,13 +1359,13 @@ gst_app_sink_set_callbacks (GstAppSink * appsink,
 /*** GSTURIHANDLER INTERFACE *************************************************/
 
 static GstURIType
-gst_app_sink_uri_get_type (void)
+gst_app_sink_uri_get_type (GType type)
 {
   return GST_URI_SINK;
 }
 
 static gchar **
-gst_app_sink_uri_get_protocols (void)
+gst_app_sink_uri_get_protocols (GType type)
 {
   static gchar *protocols[] = { (char *) "appsink", NULL };
 
index 7b21164..1a6a0cd 100644 (file)
@@ -1606,13 +1606,13 @@ gst_app_src_set_callbacks (GstAppSrc * appsrc,
 /*** GSTURIHANDLER INTERFACE *************************************************/
 
 static GstURIType
-gst_app_src_uri_get_type (void)
+gst_app_src_uri_get_type (GType type)
 {
   return GST_URI_SRC;
 }
 
 static gchar **
-gst_app_src_uri_get_protocols (void)
+gst_app_src_uri_get_protocols (GType type)
 {
   static gchar *protocols[] = { (char *) "appsrc", NULL };
 
index fec1ebd..535c02e 100644 (file)
@@ -911,13 +911,13 @@ gst_cdda_base_src_handle_event (GstBaseSrc * basesrc, GstEvent * event)
 }
 
 static GstURIType
-gst_cdda_base_src_uri_get_type (void)
+gst_cdda_base_src_uri_get_type (GType type)
 {
   return GST_URI_SRC;
 }
 
 static gchar **
-gst_cdda_base_src_uri_get_protocols (void)
+gst_cdda_base_src_uri_get_protocols (GType type)
 {
   static gchar *protocols[] = { (char *) "cdda", NULL };