audiowsinc{limit,band}: Allow much larger filter lengths now

This commit is contained in:
Sebastian Dröge 2009-12-12 17:00:50 +01:00
parent 119a6ce637
commit 7fec6843c0
2 changed files with 2 additions and 2 deletions

View file

@ -181,7 +181,7 @@ gst_audio_wsincband_class_init (GstAudioWSincBandClass * klass)
g_object_class_install_property (gobject_class, PROP_LENGTH, g_object_class_install_property (gobject_class, PROP_LENGTH,
g_param_spec_int ("length", "Length", g_param_spec_int ("length", "Length",
"Filter kernel length, will be rounded to the next odd number", 3, "Filter kernel length, will be rounded to the next odd number", 3,
50000, 101, 2560000, 101,
G_PARAM_READWRITE | GST_PARAM_CONTROLLABLE | G_PARAM_STATIC_STRINGS)); G_PARAM_READWRITE | GST_PARAM_CONTROLLABLE | G_PARAM_STATIC_STRINGS));
g_object_class_install_property (gobject_class, PROP_MODE, g_object_class_install_property (gobject_class, PROP_MODE,

View file

@ -177,7 +177,7 @@ gst_audio_wsinclimit_class_init (GstAudioWSincLimitClass * klass)
g_object_class_install_property (gobject_class, PROP_LENGTH, g_object_class_install_property (gobject_class, PROP_LENGTH,
g_param_spec_int ("length", "Length", g_param_spec_int ("length", "Length",
"Filter kernel length, will be rounded to the next odd number", "Filter kernel length, will be rounded to the next odd number",
3, 50000, 101, 3, 256000, 101,
G_PARAM_READWRITE | GST_PARAM_CONTROLLABLE | G_PARAM_STATIC_STRINGS)); G_PARAM_READWRITE | GST_PARAM_CONTROLLABLE | G_PARAM_STATIC_STRINGS));
g_object_class_install_property (gobject_class, PROP_MODE, g_object_class_install_property (gobject_class, PROP_MODE,