opusenc: fix constrained-vbr property name typo

This commit is contained in:
Vincent Penquerc'h 2011-11-16 18:43:53 +00:00
parent f3f9e4b978
commit af8771ef2f

View file

@ -226,7 +226,7 @@ gst_opus_enc_class_init (GstOpusEncClass * klass)
"Constant bit rate", DEFAULT_CBR,
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
g_object_class_install_property (gobject_class, PROP_CONSTRAINED_VBR,
g_param_spec_boolean ("constrained-cbr", "Constrained VBR",
g_param_spec_boolean ("constrained-vbr", "Constrained VBR",
"Constrained VBR", DEFAULT_CONSTRAINED_VBR,
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
g_object_class_install_property (gobject_class, PROP_COMPLEXITY,