mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-05 23:18:52 +00:00
fix for uri changes
This commit is contained in:
parent
aa73f69f2d
commit
646ffd0dad
4 changed files with 9 additions and 9 deletions
|
@ -139,19 +139,19 @@ gst_gio_get_supported_protocols (void)
|
||||||
}
|
}
|
||||||
|
|
||||||
static GstURIType
|
static GstURIType
|
||||||
gst_gio_uri_handler_get_type_sink (void)
|
gst_gio_uri_handler_get_type_sink (GType type)
|
||||||
{
|
{
|
||||||
return GST_URI_SINK;
|
return GST_URI_SINK;
|
||||||
}
|
}
|
||||||
|
|
||||||
static GstURIType
|
static GstURIType
|
||||||
gst_gio_uri_handler_get_type_src (void)
|
gst_gio_uri_handler_get_type_src (GType type)
|
||||||
{
|
{
|
||||||
return GST_URI_SRC;
|
return GST_URI_SRC;
|
||||||
}
|
}
|
||||||
|
|
||||||
static gchar **
|
static gchar **
|
||||||
gst_gio_uri_handler_get_protocols (void)
|
gst_gio_uri_handler_get_protocols (GType type)
|
||||||
{
|
{
|
||||||
static gchar **protocols = NULL;
|
static gchar **protocols = NULL;
|
||||||
|
|
||||||
|
|
|
@ -1359,13 +1359,13 @@ gst_app_sink_set_callbacks (GstAppSink * appsink,
|
||||||
/*** GSTURIHANDLER INTERFACE *************************************************/
|
/*** GSTURIHANDLER INTERFACE *************************************************/
|
||||||
|
|
||||||
static GstURIType
|
static GstURIType
|
||||||
gst_app_sink_uri_get_type (void)
|
gst_app_sink_uri_get_type (GType type)
|
||||||
{
|
{
|
||||||
return GST_URI_SINK;
|
return GST_URI_SINK;
|
||||||
}
|
}
|
||||||
|
|
||||||
static gchar **
|
static gchar **
|
||||||
gst_app_sink_uri_get_protocols (void)
|
gst_app_sink_uri_get_protocols (GType type)
|
||||||
{
|
{
|
||||||
static gchar *protocols[] = { (char *) "appsink", NULL };
|
static gchar *protocols[] = { (char *) "appsink", NULL };
|
||||||
|
|
||||||
|
|
|
@ -1606,13 +1606,13 @@ gst_app_src_set_callbacks (GstAppSrc * appsrc,
|
||||||
/*** GSTURIHANDLER INTERFACE *************************************************/
|
/*** GSTURIHANDLER INTERFACE *************************************************/
|
||||||
|
|
||||||
static GstURIType
|
static GstURIType
|
||||||
gst_app_src_uri_get_type (void)
|
gst_app_src_uri_get_type (GType type)
|
||||||
{
|
{
|
||||||
return GST_URI_SRC;
|
return GST_URI_SRC;
|
||||||
}
|
}
|
||||||
|
|
||||||
static gchar **
|
static gchar **
|
||||||
gst_app_src_uri_get_protocols (void)
|
gst_app_src_uri_get_protocols (GType type)
|
||||||
{
|
{
|
||||||
static gchar *protocols[] = { (char *) "appsrc", NULL };
|
static gchar *protocols[] = { (char *) "appsrc", NULL };
|
||||||
|
|
||||||
|
|
|
@ -911,13 +911,13 @@ gst_cdda_base_src_handle_event (GstBaseSrc * basesrc, GstEvent * event)
|
||||||
}
|
}
|
||||||
|
|
||||||
static GstURIType
|
static GstURIType
|
||||||
gst_cdda_base_src_uri_get_type (void)
|
gst_cdda_base_src_uri_get_type (GType type)
|
||||||
{
|
{
|
||||||
return GST_URI_SRC;
|
return GST_URI_SRC;
|
||||||
}
|
}
|
||||||
|
|
||||||
static gchar **
|
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 };
|
static gchar *protocols[] = { (char *) "cdda", NULL };
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue