summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/vf_hue.c
diff options
context:
space:
mode:
Diffstat (limited to 'libmpcodecs/vf_hue.c')
-rw-r--r--libmpcodecs/vf_hue.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libmpcodecs/vf_hue.c b/libmpcodecs/vf_hue.c
index 1776b2b54b..04697ea537 100644
--- a/libmpcodecs/vf_hue.c
+++ b/libmpcodecs/vf_hue.c
@@ -168,13 +168,13 @@ static int open(vf_instance_t *vf, char* args)
}
#define ST_OFF(f) M_ST_OFF(struct vf_priv_s,f)
-static m_option_t vf_opts_fields[] = {
+static const m_option_t vf_opts_fields[] = {
{"hue", ST_OFF(hue), CONF_TYPE_FLOAT, M_OPT_RANGE,-180.0 ,180.0, NULL},
{"saturation", ST_OFF(saturation), CONF_TYPE_FLOAT, M_OPT_RANGE,-10.0 ,10.0, NULL},
{ NULL, NULL, 0, 0, 0, 0, NULL }
};
-static m_struct_t vf_opts = {
+static const m_struct_t vf_opts = {
"hue",
sizeof(struct vf_priv_s),
&vf_priv_dflt,