diff options
Diffstat (limited to 'gst/filter')
-rw-r--r-- | gst/filter/gstbpwsinc.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gst/filter/gstbpwsinc.c b/gst/filter/gstbpwsinc.c index 6f3e5cc7..8ba87fd3 100644 --- a/gst/filter/gstbpwsinc.c +++ b/gst/filter/gstbpwsinc.c @@ -181,7 +181,9 @@ bpwsinc_set_caps (GstBaseTransform * base, GstCaps * incaps, GstCaps * outcaps) "set_caps: in %" GST_PTR_FORMAT " out %" GST_PTR_FORMAT, incaps, outcaps); len = this->wing_size; - /* fill the lp kernel */ + /* fill the lp kernel + * FIXME: refactor to own function, this is not caps related + */ GST_DEBUG ("bpwsinc: initializing LP kernel of length %d with cut-off %f", len * 2 + 1, this->lower_frequency); kernel_lp = (double *) g_malloc (sizeof (double) * (2 * len + 1)); |