summaryrefslogtreecommitdiffstats
path: root/gst/filter/gstiir.c
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2002-06-27 12:38:35 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2002-06-27 12:38:35 +0000
commitc903e6470eea491ec693bab49ad8b023601d42c1 (patch)
tree501c4da76862e2401b348e6a92f5801b27112b21 /gst/filter/gstiir.c
parent6b4bd943ceb7e97286880c9628758426e7fe9f56 (diff)
downloadgst-plugins-bad-c903e6470eea491ec693bab49ad8b023601d42c1.tar.gz
gst-plugins-bad-c903e6470eea491ec693bab49ad8b023601d42c1.tar.bz2
gst-plugins-bad-c903e6470eea491ec693bab49ad8b023601d42c1.zip
highly unoptimized windowed sinc filter
Original commit message from CVS: highly unoptimized windowed sinc filter
Diffstat (limited to 'gst/filter/gstiir.c')
-rw-r--r--gst/filter/gstiir.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/filter/gstiir.c b/gst/filter/gstiir.c
index 811b6a12..0bbcb050 100644
--- a/gst/filter/gstiir.c
+++ b/gst/filter/gstiir.c
@@ -136,7 +136,7 @@ gst_iir_class_init (GstIIRClass * klass)
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_STAGES,
g_param_spec_int ("stages", "Stages", "Number of filter stages",
1, G_MAXINT,
- 0, G_PARAM_READWRITE));
+ 1, G_PARAM_READWRITE));
gobject_class->set_property = gst_iir_set_property;
gobject_class->get_property = gst_iir_get_property;