udp: port to new API
authorWim Taymans <wim.taymans@collabora.co.uk>
Mon, 4 Jul 2011 16:15:42 +0000 (18:15 +0200)
committerWim Taymans <wim.taymans@collabora.co.uk>
Mon, 4 Jul 2011 16:15:42 +0000 (18:15 +0200)
gst/udp/gstudpsink.c
gst/udp/gstudpsrc.c

index f84faf562cf677cf68eb4a73857ceb3f6bb72861..91f0777554168c103c68a71f49ce85048b9b8b13 100644 (file)
@@ -207,13 +207,13 @@ gst_udpsink_get_property (GObject * object, guint prop_id, GValue * value,
 /*** GSTURIHANDLER INTERFACE *************************************************/
 
 static GstURIType
-gst_udpsink_uri_get_type (void)
+gst_udpsink_uri_get_type (GType type)
 {
   return GST_URI_SINK;
 }
 
 static gchar **
-gst_udpsink_uri_get_protocols (void)
+gst_udpsink_uri_get_protocols (GType type)
 {
   static gchar *protocols[] = { (char *) "udp", NULL };
 
index 5fb7d333d03f56f9dba5d9cd1889bcbc2c556939..51a04467fb70b208232965ce95104ddb8db11089 100644 (file)
@@ -1012,13 +1012,13 @@ gst_udpsrc_stop (GstBaseSrc * bsrc)
 /*** GSTURIHANDLER INTERFACE *************************************************/
 
 static GstURIType
-gst_udpsrc_uri_get_type (void)
+gst_udpsrc_uri_get_type (GType type)
 {
   return GST_URI_SRC;
 }
 
 static gchar **
-gst_udpsrc_uri_get_protocols (void)
+gst_udpsrc_uri_get_protocols (GType type)
 {
   static gchar *protocols[] = { (char *) "udp", NULL };