summaryrefslogtreecommitdiffstats
path: root/gst/filter/gstfilter.c
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2002-06-27 14:15:51 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2002-06-27 14:15:51 +0000
commit3641ecfbd05aa115086431808e3358ceef185a65 (patch)
tree0a36375073fddbb52ba17f9d6fbe39fd7bdd5bda /gst/filter/gstfilter.c
parentc903e6470eea491ec693bab49ad8b023601d42c1 (diff)
downloadgst-plugins-bad-3641ecfbd05aa115086431808e3358ceef185a65.tar.gz
gst-plugins-bad-3641ecfbd05aa115086431808e3358ceef185a65.tar.bz2
gst-plugins-bad-3641ecfbd05aa115086431808e3358ceef185a65.zip
windowed sinc bandpass filter
Original commit message from CVS: windowed sinc bandpass filter
Diffstat (limited to 'gst/filter/gstfilter.c')
-rw-r--r--gst/filter/gstfilter.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/gst/filter/gstfilter.c b/gst/filter/gstfilter.c
index cd9f466e..0aee8525 100644
--- a/gst/filter/gstfilter.c
+++ b/gst/filter/gstfilter.c
@@ -31,8 +31,9 @@ struct _elements_entry {
};
static struct _elements_entry _elements[] = {
- { "iir", gst_iir_get_type, &gst_iir_details, NULL },
- { "wsinc", gst_wsinc_get_type, &gst_wsinc_details, NULL },
+ { "iir", gst_iir_get_type, &gst_iir_details, NULL },
+ { "lpwsinc", gst_lpwsinc_get_type, &gst_lpwsinc_details, NULL },
+ { "bpwsinc", gst_bpwsinc_get_type, &gst_bpwsinc_details, NULL },
{ NULL, 0 },
};