1 /* -*- c-basic-offset: 2 -*-
2  *
3  * GStreamer
4  * Copyright (C) 1999-2001 Erik Walthinsen <omega@cse.ogi.edu>
5  *               2006 Dreamlab Technologies Ltd. <mathis.hofer@dreamlab.net>
6  *               2007-2009 Sebastian Dröge <sebastian.droege@collabora.co.uk>
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Library General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Library General Public License for more details.
17  *
18  * You should have received a copy of the GNU Library General Public
19  * License along with this library; if not, write to the
20  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
21  * Boston, MA 02110-1301, USA.
22  *
23  *
24  * this windowed sinc filter is taken from the freely downloadable DSP book,
25  * "The Scientist and Engineer's Guide to Digital Signal Processing",
26  * chapter 16
27  * available at http://www.dspguide.com/
28  *
29  * For the window functions see
30  * http://en.wikipedia.org/wiki/Window_function
31  */
32 
33 /**
34  * SECTION:element-audiowsinclimit
35  *
36  * Attenuates all frequencies above the cutoff frequency (low-pass) or all frequencies below the
37  * cutoff frequency (high-pass). The length parameter controls the rolloff, the window parameter
38  * controls rolloff and stopband attenuation. The Hamming window provides a faster rolloff but a bit
39  * worse stopband attenuation, the other way around for the Blackman window.
40  *
41  * This element has the advantage over the Chebyshev lowpass and highpass filter that it has
42  * a much better rolloff when using a larger kernel size and almost linear phase. The only
43  * disadvantage is the much slower execution time with larger kernels.
44  *
45  * <refsect2>
46  * <title>Example launch line</title>
47  * |[
48  * gst-launch-1.0 audiotestsrc freq=1500 ! audioconvert ! audiowsinclimit mode=low-pass cutoff=1000 length=501 ! audioconvert ! alsasink
49  * gst-launch-1.0 filesrc location="melo1.ogg" ! oggdemux ! vorbisdec ! audioconvert ! audiowsinclimit mode=high-pass cutoff=15000 length=501 ! audioconvert ! alsasink
50  * gst-launch-1.0 audiotestsrc wave=white-noise ! audioconvert ! audiowsinclimit mode=low-pass cutoff=1000 length=10001 window=blackman ! audioconvert ! alsasink
51  * ]|
52  * </refsect2>
53  */
54 
55 #ifdef HAVE_CONFIG_H
56 #include "config.h"
57 #endif
58 
59 #include <string.h>
60 #include <math.h>
61 #include <gst/gst.h>
62 #include <gst/audio/gstaudiofilter.h>
63 
64 #include "audiowsinclimit.h"
65 
66 #include "gst/glib-compat-private.h"
67 
68 #define GST_CAT_DEFAULT gst_audio_wsinclimit_debug
69 GST_DEBUG_CATEGORY_STATIC (GST_CAT_DEFAULT);
70 
71 enum
72 {
73   PROP_0,
74   PROP_LENGTH,
75   PROP_FREQUENCY,
76   PROP_MODE,
77   PROP_WINDOW
78 };
79 
80 enum
81 {
82   MODE_LOW_PASS = 0,
83   MODE_HIGH_PASS
84 };
85 
86 #define GST_TYPE_AUDIO_WSINC_LIMIT_MODE (gst_audio_wsinclimit_mode_get_type ())
87 static GType
gst_audio_wsinclimit_mode_get_type(void)88 gst_audio_wsinclimit_mode_get_type (void)
89 {
90   static GType gtype = 0;
91 
92   if (gtype == 0) {
93     static const GEnumValue values[] = {
94       {MODE_LOW_PASS, "Low pass (default)",
95           "low-pass"},
96       {MODE_HIGH_PASS, "High pass",
97           "high-pass"},
98       {0, NULL, NULL}
99     };
100 
101     gtype = g_enum_register_static ("GstAudioWSincLimitMode", values);
102   }
103   return gtype;
104 }
105 
106 enum
107 {
108   WINDOW_HAMMING = 0,
109   WINDOW_BLACKMAN,
110   WINDOW_GAUSSIAN,
111   WINDOW_COSINE,
112   WINDOW_HANN
113 };
114 
115 #define GST_TYPE_AUDIO_WSINC_LIMIT_WINDOW (gst_audio_wsinclimit_window_get_type ())
116 static GType
gst_audio_wsinclimit_window_get_type(void)117 gst_audio_wsinclimit_window_get_type (void)
118 {
119   static GType gtype = 0;
120 
121   if (gtype == 0) {
122     static const GEnumValue values[] = {
123       {WINDOW_HAMMING, "Hamming window (default)",
124           "hamming"},
125       {WINDOW_BLACKMAN, "Blackman window",
126           "blackman"},
127       {WINDOW_GAUSSIAN, "Gaussian window",
128           "gaussian"},
129       {WINDOW_COSINE, "Cosine window",
130           "cosine"},
131       {WINDOW_HANN, "Hann window",
132           "hann"},
133       {0, NULL, NULL}
134     };
135 
136     gtype = g_enum_register_static ("GstAudioWSincLimitWindow", values);
137   }
138   return gtype;
139 }
140 
141 #define gst_audio_wsinclimit_parent_class parent_class
142 G_DEFINE_TYPE (GstAudioWSincLimit, gst_audio_wsinclimit,
143     GST_TYPE_AUDIO_FX_BASE_FIR_FILTER);
144 
145 static void gst_audio_wsinclimit_set_property (GObject * object, guint prop_id,
146     const GValue * value, GParamSpec * pspec);
147 static void gst_audio_wsinclimit_get_property (GObject * object, guint prop_id,
148     GValue * value, GParamSpec * pspec);
149 static void gst_audio_wsinclimit_finalize (GObject * object);
150 
151 static gboolean gst_audio_wsinclimit_setup (GstAudioFilter * base,
152     const GstAudioInfo * info);
153 
154 
155 #define POW2(x)  (x)*(x)
156 
157 static void
gst_audio_wsinclimit_class_init(GstAudioWSincLimitClass * klass)158 gst_audio_wsinclimit_class_init (GstAudioWSincLimitClass * klass)
159 {
160   GObjectClass *gobject_class = (GObjectClass *) klass;
161   GstElementClass *gstelement_class = (GstElementClass *) klass;
162   GstAudioFilterClass *filter_class = (GstAudioFilterClass *) klass;
163 
164   GST_DEBUG_CATEGORY_INIT (gst_audio_wsinclimit_debug, "audiowsinclimit", 0,
165       "Low-pass and High-pass Windowed sinc filter plugin");
166 
167   gobject_class->set_property = gst_audio_wsinclimit_set_property;
168   gobject_class->get_property = gst_audio_wsinclimit_get_property;
169   gobject_class->finalize = gst_audio_wsinclimit_finalize;
170 
171   /* FIXME: Don't use the complete possible range but restrict the upper boundary
172    * so automatically generated UIs can use a slider */
173   g_object_class_install_property (gobject_class, PROP_FREQUENCY,
174       g_param_spec_float ("cutoff", "Cutoff",
175           "Cut-off Frequency (Hz)", 0.0, 100000.0, 0.0,
176           G_PARAM_READWRITE | GST_PARAM_CONTROLLABLE | G_PARAM_STATIC_STRINGS));
177   g_object_class_install_property (gobject_class, PROP_LENGTH,
178       g_param_spec_int ("length", "Length",
179           "Filter kernel length, will be rounded to the next odd number",
180           3, 256000, 101,
181           G_PARAM_READWRITE | GST_PARAM_CONTROLLABLE | G_PARAM_STATIC_STRINGS));
182 
183   g_object_class_install_property (gobject_class, PROP_MODE,
184       g_param_spec_enum ("mode", "Mode",
185           "Low pass or high pass mode", GST_TYPE_AUDIO_WSINC_LIMIT_MODE,
186           MODE_LOW_PASS,
187           G_PARAM_READWRITE | GST_PARAM_CONTROLLABLE | G_PARAM_STATIC_STRINGS));
188 
189   g_object_class_install_property (gobject_class, PROP_WINDOW,
190       g_param_spec_enum ("window", "Window",
191           "Window function to use", GST_TYPE_AUDIO_WSINC_LIMIT_WINDOW,
192           WINDOW_HAMMING,
193           G_PARAM_READWRITE | GST_PARAM_CONTROLLABLE | G_PARAM_STATIC_STRINGS));
194 
195   gst_element_class_set_static_metadata (gstelement_class,
196       "Low pass & high pass filter", "Filter/Effect/Audio",
197       "Low pass and high pass windowed sinc filter",
198       "Thomas Vander Stichele <thomas at apestaart dot org>, "
199       "Steven W. Smith, "
200       "Dreamlab Technologies Ltd. <mathis.hofer@dreamlab.net>, "
201       "Sebastian Dröge <sebastian.droege@collabora.co.uk>");
202 
203   filter_class->setup = GST_DEBUG_FUNCPTR (gst_audio_wsinclimit_setup);
204 }
205 
206 static void
gst_audio_wsinclimit_init(GstAudioWSincLimit * self)207 gst_audio_wsinclimit_init (GstAudioWSincLimit * self)
208 {
209   self->mode = MODE_LOW_PASS;
210   self->window = WINDOW_HAMMING;
211   self->kernel_length = 101;
212   self->cutoff = 0.0;
213 
214   g_mutex_init (&self->lock);
215 }
216 
217 static void
gst_audio_wsinclimit_build_kernel(GstAudioWSincLimit * self,const GstAudioInfo * info)218 gst_audio_wsinclimit_build_kernel (GstAudioWSincLimit * self,
219     const GstAudioInfo * info)
220 {
221   gint i = 0;
222   gdouble sum = 0.0;
223   gint len = 0;
224   gdouble w;
225   gdouble *kernel = NULL;
226   gint rate, channels;
227 
228   len = self->kernel_length;
229 
230   if (info) {
231     rate = GST_AUDIO_INFO_RATE (info);
232     channels = GST_AUDIO_INFO_CHANNELS (info);
233   } else {
234     rate = GST_AUDIO_FILTER_RATE (self);
235     channels = GST_AUDIO_FILTER_CHANNELS (self);
236   }
237 
238   if (rate == 0) {
239     GST_DEBUG ("rate not set yet");
240     return;
241   }
242 
243   if (channels == 0) {
244     GST_DEBUG ("channels not set yet");
245     return;
246   }
247 
248   /* Clamp cutoff frequency between 0 and the nyquist frequency */
249   self->cutoff = CLAMP (self->cutoff, 0.0, rate / 2);
250 
251   GST_DEBUG ("gst_audio_wsinclimit_: initializing filter kernel of length %d "
252       "with cutoff %.2lf Hz "
253       "for mode %s",
254       len, self->cutoff,
255       (self->mode == MODE_LOW_PASS) ? "low-pass" : "high-pass");
256 
257   /* fill the kernel */
258   w = 2 * G_PI * (self->cutoff / rate);
259 
260   kernel = g_new (gdouble, len);
261 
262   for (i = 0; i < len; ++i) {
263     if (i == (len - 1) / 2.0)
264       kernel[i] = w;
265     else
266       kernel[i] = sin (w * (i - (len - 1) / 2)) / (i - (len - 1) / 2.0);
267 
268     /* windowing */
269     switch (self->window) {
270       case WINDOW_HAMMING:
271         kernel[i] *= (0.54 - 0.46 * cos (2 * G_PI * i / (len - 1)));
272         break;
273       case WINDOW_BLACKMAN:
274         kernel[i] *= (0.42 - 0.5 * cos (2 * G_PI * i / (len - 1)) +
275             0.08 * cos (4 * G_PI * i / (len - 1)));
276         break;
277       case WINDOW_GAUSSIAN:
278         kernel[i] *= exp (-0.5 * POW2 (3.0 / len * (2 * i - (len - 1))));
279         break;
280       case WINDOW_COSINE:
281         kernel[i] *= cos (G_PI * i / (len - 1) - G_PI / 2);
282         break;
283       case WINDOW_HANN:
284         kernel[i] *= 0.5 * (1 - cos (2 * G_PI * i / (len - 1)));
285         break;
286     }
287   }
288 
289   /* normalize for unity gain at DC */
290   for (i = 0; i < len; ++i)
291     sum += kernel[i];
292   for (i = 0; i < len; ++i)
293     kernel[i] /= sum;
294 
295   /* convert to highpass if specified */
296   if (self->mode == MODE_HIGH_PASS) {
297     for (i = 0; i < len; ++i)
298       kernel[i] = -kernel[i];
299 
300     if (len % 2 == 1) {
301       kernel[(len - 1) / 2] += 1.0;
302     } else {
303       kernel[len / 2 - 1] += 0.5;
304       kernel[len / 2] += 0.5;
305     }
306   }
307 
308   gst_audio_fx_base_fir_filter_set_kernel (GST_AUDIO_FX_BASE_FIR_FILTER (self),
309       kernel, self->kernel_length, (len - 1) / 2, info);
310 }
311 
312 /* GstAudioFilter vmethod implementations */
313 
314 /* get notified of caps and plug in the correct process function */
315 static gboolean
gst_audio_wsinclimit_setup(GstAudioFilter * base,const GstAudioInfo * info)316 gst_audio_wsinclimit_setup (GstAudioFilter * base, const GstAudioInfo * info)
317 {
318   GstAudioWSincLimit *self = GST_AUDIO_WSINC_LIMIT (base);
319 
320   gst_audio_wsinclimit_build_kernel (self, info);
321 
322   return GST_AUDIO_FILTER_CLASS (parent_class)->setup (base, info);
323 }
324 
325 static void
gst_audio_wsinclimit_finalize(GObject * object)326 gst_audio_wsinclimit_finalize (GObject * object)
327 {
328   GstAudioWSincLimit *self = GST_AUDIO_WSINC_LIMIT (object);
329 
330   g_mutex_clear (&self->lock);
331 
332   G_OBJECT_CLASS (parent_class)->finalize (object);
333 }
334 
335 static void
gst_audio_wsinclimit_set_property(GObject * object,guint prop_id,const GValue * value,GParamSpec * pspec)336 gst_audio_wsinclimit_set_property (GObject * object, guint prop_id,
337     const GValue * value, GParamSpec * pspec)
338 {
339   GstAudioWSincLimit *self = GST_AUDIO_WSINC_LIMIT (object);
340 
341   g_return_if_fail (GST_IS_AUDIO_WSINC_LIMIT (self));
342 
343   switch (prop_id) {
344     case PROP_LENGTH:{
345       gint val;
346 
347       g_mutex_lock (&self->lock);
348       val = g_value_get_int (value);
349       if (val % 2 == 0)
350         val++;
351 
352       if (val != self->kernel_length) {
353         gst_audio_fx_base_fir_filter_push_residue (GST_AUDIO_FX_BASE_FIR_FILTER
354             (self));
355         self->kernel_length = val;
356         gst_audio_wsinclimit_build_kernel (self, NULL);
357       }
358       g_mutex_unlock (&self->lock);
359       break;
360     }
361     case PROP_FREQUENCY:
362       g_mutex_lock (&self->lock);
363       self->cutoff = g_value_get_float (value);
364       gst_audio_wsinclimit_build_kernel (self, NULL);
365       g_mutex_unlock (&self->lock);
366       break;
367     case PROP_MODE:
368       g_mutex_lock (&self->lock);
369       self->mode = g_value_get_enum (value);
370       gst_audio_wsinclimit_build_kernel (self, NULL);
371       g_mutex_unlock (&self->lock);
372       break;
373     case PROP_WINDOW:
374       g_mutex_lock (&self->lock);
375       self->window = g_value_get_enum (value);
376       gst_audio_wsinclimit_build_kernel (self, NULL);
377       g_mutex_unlock (&self->lock);
378       break;
379     default:
380       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
381       break;
382   }
383 }
384 
385 static void
gst_audio_wsinclimit_get_property(GObject * object,guint prop_id,GValue * value,GParamSpec * pspec)386 gst_audio_wsinclimit_get_property (GObject * object, guint prop_id,
387     GValue * value, GParamSpec * pspec)
388 {
389   GstAudioWSincLimit *self = GST_AUDIO_WSINC_LIMIT (object);
390 
391   switch (prop_id) {
392     case PROP_LENGTH:
393       g_value_set_int (value, self->kernel_length);
394       break;
395     case PROP_FREQUENCY:
396       g_value_set_float (value, self->cutoff);
397       break;
398     case PROP_MODE:
399       g_value_set_enum (value, self->mode);
400       break;
401     case PROP_WINDOW:
402       g_value_set_enum (value, self->window);
403       break;
404     default:
405       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
406       break;
407   }
408 }
409