mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-07 07:58:51 +00:00
Update for GstURIHandler get_protocols() changes
This commit is contained in:
parent
4db445cf84
commit
074330bf16
2 changed files with 4 additions and 4 deletions
|
@ -1632,10 +1632,10 @@ gst_dvd_read_src_uri_get_type (GType type)
|
||||||
return GST_URI_SRC;
|
return GST_URI_SRC;
|
||||||
}
|
}
|
||||||
|
|
||||||
static gchar **
|
static const gchar *const *
|
||||||
gst_dvd_read_src_uri_get_protocols (GType type)
|
gst_dvd_read_src_uri_get_protocols (GType type)
|
||||||
{
|
{
|
||||||
static gchar *protocols[] = { (gchar *) "dvd", NULL };
|
static const gchar *protocols[] = { "dvd", NULL };
|
||||||
|
|
||||||
return protocols;
|
return protocols;
|
||||||
}
|
}
|
||||||
|
|
|
@ -199,10 +199,10 @@ gst_pnm_src_uri_get_type (GType type)
|
||||||
return GST_URI_SRC;
|
return GST_URI_SRC;
|
||||||
}
|
}
|
||||||
|
|
||||||
static gchar **
|
static const gchar *const *
|
||||||
gst_pnm_src_uri_get_protocols (GType type)
|
gst_pnm_src_uri_get_protocols (GType type)
|
||||||
{
|
{
|
||||||
static gchar *protocols[] = { (gchar *) "pnm", NULL };
|
static const gchar *protocols[] = { "pnm", NULL };
|
||||||
|
|
||||||
return protocols;
|
return protocols;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue