fix for uri changes

This commit is contained in:
Wim Taymans 2011-06-22 16:38:48 +02:00
parent aa73f69f2d
commit 646ffd0dad
4 changed files with 9 additions and 9 deletions

View 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;

View 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 };

View 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 };

View 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 };