Top |
GObject ╰── GInitiallyUnowned ╰── GstObject ╰── GstElement ╰── GstBaseTransform ╰── GstAudioFilter ╰── GstAudioFXBaseFIRFilter ╰── GstAudioFIRFilter
audiofirfilter implements a generic audio FIR filter. Before usage the "kernel" property has to be set to the filter kernel that should be used and the "latency" property has to be set to the latency (in samples) that is introduced by the filter kernel. Setting a latency of n samples will lead to the first n samples being dropped from the output and n samples added to the end.
The filter kernel describes the impulse response of the filter. To calculate the frequency response of the filter you have to calculate the Fourier Transform of the impulse response.
To change the filter kernel whenever the sampling rate changes the "rate-changed" signal can be used. This should be done for most FIR filters as they're depending on the sampling rate.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 |
/* GStreamer * Copyright (C) 2009 Sebastian Droege <sebastian.droege@collabora.co.uk> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, * Boston, MA 02110-1301, USA. */ /* This small sample application creates a bandpass FIR filter * by transforming the frequency response to the filter kernel. */ /* FIXME 0.11: suppress warnings for deprecated API such as GValueArray * with newer GLib versions (>= 2.31.0) */ #define GLIB_DISABLE_DEPRECATION_WARNINGS #include <string.h> #include <math.h> #include <gst/gst.h> #include <gst/fft/gstfftf64.h> static gboolean on_message (GstBus * bus, GstMessage * message, gpointer user_data) { GMainLoop *loop = (GMainLoop *) user_data; switch (GST_MESSAGE_TYPE (message)) { case GST_MESSAGE_ERROR: g_error ("Got ERROR"); g_main_loop_quit (loop); break; case GST_MESSAGE_WARNING: g_warning ("Got WARNING"); g_main_loop_quit (loop); break; case GST_MESSAGE_EOS: g_main_loop_quit (loop); break; default: break; } return TRUE; } static void on_rate_changed (GstElement * element, gint rate, gpointer user_data) { GValueArray *va; GValue v = { 0, }; GstFFTF64 *fft; GstFFTF64Complex frequency_response[17]; gdouble tmp[32]; gdouble filter_kernel[32]; guint i; /* Create the frequency response: zero outside * a small frequency band */ for (i = 0; i < 17; i++) { if (i < 5 || i > 11) frequency_response[i].r = 0.0; else frequency_response[i].r = 1.0; frequency_response[i].i = 0.0; } /* Calculate the inverse FT of the frequency response */ fft = gst_fft_f64_new (32, TRUE); gst_fft_f64_inverse_fft (fft, frequency_response, tmp); gst_fft_f64_free (fft); /* Shift the inverse FT of the frequency response by 16, * i.e. the half of the kernel length to get the * impulse response. See http://www.dspguide.com/ch17/1.htm * for more information. */ for (i = 0; i < 32; i++) filter_kernel[i] = tmp[(i + 16) % 32]; /* Apply the hamming window to the impulse response to get * a better result than given from the rectangular window */ for (i = 0; i < 32; i++) filter_kernel[i] *= (0.54 - 0.46 * cos (2 * G_PI * i / 32)); va = g_value_array_new (1); g_value_init (&v, G_TYPE_DOUBLE); for (i = 0; i < 32; i++) { g_value_set_double (&v, filter_kernel[i]); g_value_array_append (va, &v); g_value_reset (&v); } g_object_set (G_OBJECT (element), "kernel", va, NULL); /* Latency is 1/2 of the kernel length for this method of * calculating a filter kernel from the frequency response */ g_object_set (G_OBJECT (element), "latency", (gint64) (32 / 2), NULL); g_value_array_free (va); } gint main (gint argc, gchar * argv[]) { GstElement *pipeline, *src, *filter, *conv, *sink; GstBus *bus; GMainLoop *loop; gst_init (NULL, NULL); pipeline = gst_element_factory_make ("pipeline", NULL); src = gst_element_factory_make ("audiotestsrc", NULL); g_object_set (G_OBJECT (src), "wave", 5, NULL); filter = gst_element_factory_make ("audiofirfilter", NULL); g_signal_connect (G_OBJECT (filter), "rate-changed", G_CALLBACK (on_rate_changed), NULL); conv = gst_element_factory_make ("audioconvert", NULL); sink = gst_element_factory_make ("autoaudiosink", NULL); g_return_val_if_fail (sink != NULL, -1); gst_bin_add_many (GST_BIN (pipeline), src, filter, conv, sink, NULL); if (!gst_element_link_many (src, filter, conv, sink, NULL)) { g_error ("Failed to link elements"); return -2; } loop = g_main_loop_new (NULL, FALSE); bus = gst_pipeline_get_bus (GST_PIPELINE (pipeline)); gst_bus_add_signal_watch (bus); g_signal_connect (G_OBJECT (bus), "message", G_CALLBACK (on_message), loop); gst_object_unref (GST_OBJECT (bus)); if (gst_element_set_state (pipeline, GST_STATE_PLAYING) == GST_STATE_CHANGE_FAILURE) { g_error ("Failed to go into PLAYING state"); return -3; } g_main_loop_run (loop); gst_element_set_state (pipeline, GST_STATE_NULL); g_main_loop_unref (loop); gst_object_unref (pipeline); return 0; } |
plugin |
audiofx |
author |
Sebastian Dröge <sebastian.droege@collabora.co.uk> |
class |
Filter/Effect/Audio |
name |
sink |
direction |
sink |
presence |
always |
details |
audio/x-raw, format=(string){ F32LE, F64LE }, rate=(int)[ 1, 2147483647 ], channels=(int)[ 1, 2147483647 ], layout=(string)interleaved |
name |
src |
direction |
source |
presence |
always |
details |
audio/x-raw, format=(string){ F32LE, F64LE }, rate=(int)[ 1, 2147483647 ], channels=(int)[ 1, 2147483647 ], layout=(string)interleaved |
“rate-changed”
signalvoid user_function (GstAudioFIRFilter *filter, gint rate, gpointer user_data)
Will be emitted when the sampling rate changes. The callbacks will be called from the streaming thread and processing will stop until the event is handled.
filter |
the filter on which the signal is emitted |
|
rate |
the new sampling rate |
|
user_data |
user data set when the signal handler was connected. |
Flags: Run Last