mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
effectv: Make elements list constant
This commit is contained in:
parent
012f71afb5
commit
b3bb4fa7ef
1 changed files with 2 additions and 2 deletions
|
@ -29,11 +29,11 @@
|
|||
|
||||
struct _elements_entry
|
||||
{
|
||||
gchar *name;
|
||||
const gchar *name;
|
||||
GType (*type) (void);
|
||||
};
|
||||
|
||||
static struct _elements_entry _elements[] = {
|
||||
static const struct _elements_entry _elements[] = {
|
||||
{"edgetv", gst_edgetv_get_type},
|
||||
{"agingtv", gst_agingtv_get_type},
|
||||
{"dicetv", gst_dicetv_get_type},
|
||||
|
|
Loading…
Reference in a new issue