summaryrefslogtreecommitdiff
path: root/gst/audiofx/audioinvert.c
diff options
context:
space:
mode:
authorStefan Kost <ensonic@users.sf.net>2010-10-13 17:21:23 +0300
committerStefan Kost <ensonic@users.sf.net>2010-10-13 18:00:28 +0300
commitd8167e3071ba389a544760e7dd777604c13bb69c (patch)
treeb9907bda1a5d2910b5989ab8bdad625126d0cc1d /gst/audiofx/audioinvert.c
parent77b656eec130ddea17ccae54bafdfbe84850a2f9 (diff)
various (gst): add a missing G_PARAM_STATIC_STRINGS flags
Diffstat (limited to 'gst/audiofx/audioinvert.c')
-rw-r--r--gst/audiofx/audioinvert.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gst/audiofx/audioinvert.c b/gst/audiofx/audioinvert.c
index 95d425cb7..c0a7da496 100644
--- a/gst/audiofx/audioinvert.c
+++ b/gst/audiofx/audioinvert.c
@@ -130,7 +130,8 @@ gst_audio_invert_class_init (GstAudioInvertClass * klass)
g_object_class_install_property (gobject_class, PROP_DEGREE,
g_param_spec_float ("degree", "Degree",
"Degree of inversion", 0.0, 1.0,
- 0.0, G_PARAM_READWRITE | GST_PARAM_CONTROLLABLE));
+ 0.0,
+ G_PARAM_READWRITE | GST_PARAM_CONTROLLABLE | G_PARAM_STATIC_STRINGS));
GST_AUDIO_FILTER_CLASS (klass)->setup =
GST_DEBUG_FUNCPTR (gst_audio_invert_setup);