audiofx: remove transform lock usage
[platform/upstream/gst-plugins-good.git] / gst / audiofx / audioecho.c
1 /* 
2  * GStreamer
3  * Copyright (C) 2009 Sebastian Dröge <sebastian.droege@collabora.co.uk>
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20
21 /**
22  * SECTION:element-audioecho
23  * @Since: 0.10.14
24  *
25  * audioecho adds an echo or (simple) reverb effect to an audio stream. The echo
26  * delay, intensity and the percentage of feedback can be configured.
27  *
28  * For getting an echo effect you have to set the delay to a larger value,
29  * for example 200ms and more. Everything below will result in a simple
30  * reverb effect, which results in a slightly metallic sound.
31  *
32  * Use the max-delay property to set the maximum amount of delay that
33  * will be used. This can only be set before going to the PAUSED or PLAYING
34  * state and will be set to the current delay by default.
35  *
36  * <refsect2>
37  * <title>Example launch line</title>
38  * |[
39  * gst-launch filesrc location="melo1.ogg" ! audioconvert ! audioecho delay=500000000 intensity=0.6 feedback=0.4 ! audioconvert ! autoaudiosink
40  * gst-launch filesrc location="melo1.ogg" ! decodebin ! audioconvert ! audioecho delay=50000000 intensity=0.6 feedback=0.4 ! audioconvert ! autoaudiosink
41  * ]|
42  * </refsect2>
43  */
44
45 #ifdef HAVE_CONFIG_H
46 #include "config.h"
47 #endif
48
49 #include <gst/gst.h>
50 #include <gst/base/gstbasetransform.h>
51 #include <gst/audio/audio.h>
52 #include <gst/audio/gstaudiofilter.h>
53
54 #include "audioecho.h"
55
56 #define GST_CAT_DEFAULT gst_audio_echo_debug
57 GST_DEBUG_CATEGORY_STATIC (GST_CAT_DEFAULT);
58
59 enum
60 {
61   PROP_0,
62   PROP_DELAY,
63   PROP_MAX_DELAY,
64   PROP_INTENSITY,
65   PROP_FEEDBACK
66 };
67
68 #define ALLOWED_CAPS \
69     "audio/x-raw,"                                                 \
70     " format=(string) {"GST_AUDIO_NE(F32)","GST_AUDIO_NE(F64)"}, " \
71     " rate=(int)[1,MAX],"                                          \
72     " channels=(int)[1,MAX],"                                      \
73     " layout=(string) interleaved"
74
75 #define gst_audio_echo_parent_class parent_class
76 G_DEFINE_TYPE (GstAudioEcho, gst_audio_echo, GST_TYPE_AUDIO_FILTER);
77
78 static void gst_audio_echo_set_property (GObject * object, guint prop_id,
79     const GValue * value, GParamSpec * pspec);
80 static void gst_audio_echo_get_property (GObject * object, guint prop_id,
81     GValue * value, GParamSpec * pspec);
82 static void gst_audio_echo_finalize (GObject * object);
83
84 static gboolean gst_audio_echo_setup (GstAudioFilter * self,
85     const GstAudioInfo * info);
86 static gboolean gst_audio_echo_stop (GstBaseTransform * base);
87 static GstFlowReturn gst_audio_echo_transform_ip (GstBaseTransform * base,
88     GstBuffer * buf);
89
90 static void gst_audio_echo_transform_float (GstAudioEcho * self,
91     gfloat * data, guint num_samples);
92 static void gst_audio_echo_transform_double (GstAudioEcho * self,
93     gdouble * data, guint num_samples);
94
95 /* GObject vmethod implementations */
96
97 static void
98 gst_audio_echo_class_init (GstAudioEchoClass * klass)
99 {
100   GObjectClass *gobject_class = (GObjectClass *) klass;
101   GstElementClass *gstelement_class = (GstElementClass *) klass;
102   GstBaseTransformClass *basetransform_class = (GstBaseTransformClass *) klass;
103   GstAudioFilterClass *audioself_class = (GstAudioFilterClass *) klass;
104   GstCaps *caps;
105
106   GST_DEBUG_CATEGORY_INIT (gst_audio_echo_debug, "audioecho", 0,
107       "audioecho element");
108
109   gobject_class->set_property = gst_audio_echo_set_property;
110   gobject_class->get_property = gst_audio_echo_get_property;
111   gobject_class->finalize = gst_audio_echo_finalize;
112
113   g_object_class_install_property (gobject_class, PROP_DELAY,
114       g_param_spec_uint64 ("delay", "Delay",
115           "Delay of the echo in nanoseconds", 1, G_MAXUINT64,
116           1, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS
117           | GST_PARAM_CONTROLLABLE));
118
119   g_object_class_install_property (gobject_class, PROP_MAX_DELAY,
120       g_param_spec_uint64 ("max-delay", "Maximum Delay",
121           "Maximum delay of the echo in nanoseconds"
122           " (can't be changed in PLAYING or PAUSED state)",
123           1, G_MAXUINT64, 1,
124           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS |
125           GST_PARAM_MUTABLE_READY));
126
127   g_object_class_install_property (gobject_class, PROP_INTENSITY,
128       g_param_spec_float ("intensity", "Intensity",
129           "Intensity of the echo", 0.0, 1.0,
130           0.0, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS
131           | GST_PARAM_CONTROLLABLE));
132
133   g_object_class_install_property (gobject_class, PROP_FEEDBACK,
134       g_param_spec_float ("feedback", "Feedback",
135           "Amount of feedback", 0.0, 1.0,
136           0.0, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS
137           | GST_PARAM_CONTROLLABLE));
138
139   gst_element_class_set_details_simple (gstelement_class, "Audio echo",
140       "Filter/Effect/Audio",
141       "Adds an echo or reverb effect to an audio stream",
142       "Sebastian Dröge <sebastian.droege@collabora.co.uk>");
143
144   caps = gst_caps_from_string (ALLOWED_CAPS);
145   gst_audio_filter_class_add_pad_templates (GST_AUDIO_FILTER_CLASS (klass),
146       caps);
147   gst_caps_unref (caps);
148
149   audioself_class->setup = GST_DEBUG_FUNCPTR (gst_audio_echo_setup);
150   basetransform_class->transform_ip =
151       GST_DEBUG_FUNCPTR (gst_audio_echo_transform_ip);
152   basetransform_class->stop = GST_DEBUG_FUNCPTR (gst_audio_echo_stop);
153 }
154
155 static void
156 gst_audio_echo_init (GstAudioEcho * self)
157 {
158   self->delay = 1;
159   self->max_delay = 1;
160   self->intensity = 0.0;
161   self->feedback = 0.0;
162
163   g_mutex_init (&self->lock);
164
165   gst_base_transform_set_in_place (GST_BASE_TRANSFORM (self), TRUE);
166 }
167
168 static void
169 gst_audio_echo_finalize (GObject * object)
170 {
171   GstAudioEcho *self = GST_AUDIO_ECHO (object);
172
173   g_free (self->buffer);
174   self->buffer = NULL;
175
176   g_mutex_clear (&self->lock);
177
178   G_OBJECT_CLASS (parent_class)->finalize (object);
179 }
180
181 static void
182 gst_audio_echo_set_property (GObject * object, guint prop_id,
183     const GValue * value, GParamSpec * pspec)
184 {
185   GstAudioEcho *self = GST_AUDIO_ECHO (object);
186
187   switch (prop_id) {
188     case PROP_DELAY:{
189       guint64 max_delay, delay;
190
191       g_mutex_lock (&self->lock);
192       delay = g_value_get_uint64 (value);
193       max_delay = self->max_delay;
194
195       if (delay > max_delay && GST_STATE (self) > GST_STATE_READY) {
196         GST_WARNING_OBJECT (self, "New delay (%" GST_TIME_FORMAT ") "
197             "is larger than maximum delay (%" GST_TIME_FORMAT ")",
198             GST_TIME_ARGS (delay), GST_TIME_ARGS (max_delay));
199         self->delay = max_delay;
200       } else {
201         self->delay = delay;
202         self->max_delay = MAX (delay, max_delay);
203       }
204       g_mutex_unlock (&self->lock);
205       break;
206     }
207     case PROP_MAX_DELAY:{
208       guint64 max_delay, delay;
209
210       g_mutex_lock (&self->lock);
211       max_delay = g_value_get_uint64 (value);
212       delay = self->delay;
213
214       if (GST_STATE (self) > GST_STATE_READY) {
215         GST_ERROR_OBJECT (self, "Can't change maximum delay in"
216             " PLAYING or PAUSED state");
217       } else {
218         self->delay = delay;
219         self->max_delay = max_delay;
220       }
221       g_mutex_unlock (&self->lock);
222       break;
223     }
224     case PROP_INTENSITY:{
225       g_mutex_lock (&self->lock);
226       self->intensity = g_value_get_float (value);
227       g_mutex_unlock (&self->lock);
228       break;
229     }
230     case PROP_FEEDBACK:{
231       g_mutex_lock (&self->lock);
232       self->feedback = g_value_get_float (value);
233       g_mutex_unlock (&self->lock);
234       break;
235     }
236     default:
237       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
238       break;
239   }
240 }
241
242 static void
243 gst_audio_echo_get_property (GObject * object, guint prop_id,
244     GValue * value, GParamSpec * pspec)
245 {
246   GstAudioEcho *self = GST_AUDIO_ECHO (object);
247
248   switch (prop_id) {
249     case PROP_DELAY:
250       g_mutex_lock (&self->lock);
251       g_value_set_uint64 (value, self->delay);
252       g_mutex_unlock (&self->lock);
253       break;
254     case PROP_MAX_DELAY:
255       g_mutex_lock (&self->lock);
256       g_value_set_uint64 (value, self->max_delay);
257       g_mutex_unlock (&self->lock);
258       break;
259     case PROP_INTENSITY:
260       g_mutex_lock (&self->lock);
261       g_value_set_float (value, self->intensity);
262       g_mutex_unlock (&self->lock);
263       break;
264     case PROP_FEEDBACK:
265       g_mutex_lock (&self->lock);
266       g_value_set_float (value, self->feedback);
267       g_mutex_unlock (&self->lock);
268       break;
269     default:
270       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
271       break;
272   }
273 }
274
275 /* GstAudioFilter vmethod implementations */
276
277 static gboolean
278 gst_audio_echo_setup (GstAudioFilter * base, const GstAudioInfo * info)
279 {
280   GstAudioEcho *self = GST_AUDIO_ECHO (base);
281   gboolean ret = TRUE;
282
283   switch (GST_AUDIO_INFO_FORMAT (info)) {
284     case GST_AUDIO_FORMAT_F32:
285       self->process = (GstAudioEchoProcessFunc)
286           gst_audio_echo_transform_float;
287       break;
288     case GST_AUDIO_FORMAT_F64:
289       self->process = (GstAudioEchoProcessFunc)
290           gst_audio_echo_transform_double;
291       break;
292     default:
293       ret = FALSE;
294       break;
295   }
296
297   g_free (self->buffer);
298   self->buffer = NULL;
299   self->buffer_pos = 0;
300   self->buffer_size = 0;
301   self->buffer_size_frames = 0;
302
303   return ret;
304 }
305
306 static gboolean
307 gst_audio_echo_stop (GstBaseTransform * base)
308 {
309   GstAudioEcho *self = GST_AUDIO_ECHO (base);
310
311   g_free (self->buffer);
312   self->buffer = NULL;
313   self->buffer_pos = 0;
314   self->buffer_size = 0;
315   self->buffer_size_frames = 0;
316
317   return TRUE;
318 }
319
320 #define TRANSFORM_FUNC(name, type) \
321 static void \
322 gst_audio_echo_transform_##name (GstAudioEcho * self, \
323     type * data, guint num_samples) \
324 { \
325   type *buffer = (type *) self->buffer; \
326   guint channels = GST_AUDIO_FILTER_CHANNELS (self); \
327   guint rate = GST_AUDIO_FILTER_RATE (self); \
328   guint i, j; \
329   guint echo_index = self->buffer_size_frames - self->delay_frames; \
330   gdouble echo_off = ((((gdouble) self->delay) * rate) / GST_SECOND) - self->delay_frames; \
331   \
332   if (echo_off < 0.0) \
333     echo_off = 0.0; \
334   \
335   num_samples /= channels; \
336   \
337   for (i = 0; i < num_samples; i++) { \
338     guint echo0_index = ((echo_index + self->buffer_pos) % self->buffer_size_frames) * channels; \
339     guint echo1_index = ((echo_index + self->buffer_pos +1) % self->buffer_size_frames) * channels; \
340     guint rbout_index = (self->buffer_pos % self->buffer_size_frames) * channels; \
341     for (j = 0; j < channels; j++) { \
342       gdouble in = data[i*channels + j]; \
343       gdouble echo0 = buffer[echo0_index + j]; \
344       gdouble echo1 = buffer[echo1_index + j]; \
345       gdouble echo = echo0 + (echo1-echo0)*echo_off; \
346       type out = in + self->intensity * echo; \
347       \
348       data[i*channels + j] = out; \
349       \
350       buffer[rbout_index + j] = in + self->feedback * echo; \
351     } \
352     self->buffer_pos = (self->buffer_pos + 1) % self->buffer_size_frames; \
353   } \
354 }
355
356 TRANSFORM_FUNC (float, gfloat);
357 TRANSFORM_FUNC (double, gdouble);
358
359 /* GstBaseTransform vmethod implementations */
360 static GstFlowReturn
361 gst_audio_echo_transform_ip (GstBaseTransform * base, GstBuffer * buf)
362 {
363   GstAudioEcho *self = GST_AUDIO_ECHO (base);
364   guint num_samples;
365   GstClockTime timestamp, stream_time;
366   GstMapInfo map;
367
368   g_mutex_lock (&self->lock);
369   timestamp = GST_BUFFER_TIMESTAMP (buf);
370   stream_time =
371       gst_segment_to_stream_time (&base->segment, GST_FORMAT_TIME, timestamp);
372
373   GST_DEBUG_OBJECT (self, "sync to %" GST_TIME_FORMAT,
374       GST_TIME_ARGS (timestamp));
375
376   if (GST_CLOCK_TIME_IS_VALID (stream_time))
377     gst_object_sync_values (GST_OBJECT (self), stream_time);
378
379   if (self->buffer == NULL) {
380     guint bpf, rate;
381
382     bpf = GST_AUDIO_FILTER_BPF (self);
383     rate = GST_AUDIO_FILTER_RATE (self);
384
385     self->delay_frames =
386         MAX (gst_util_uint64_scale (self->delay, rate, GST_SECOND), 1);
387     self->buffer_size_frames =
388         MAX (gst_util_uint64_scale (self->max_delay, rate, GST_SECOND), 1);
389
390     self->buffer_size = self->buffer_size_frames * bpf;
391     self->buffer = g_try_malloc0 (self->buffer_size);
392     self->buffer_pos = 0;
393
394     if (self->buffer == NULL) {
395       g_mutex_unlock (&self->lock);
396       GST_ERROR_OBJECT (self, "Failed to allocate %u bytes", self->buffer_size);
397       return GST_FLOW_ERROR;
398     }
399   }
400
401   gst_buffer_map (buf, &map, GST_MAP_READWRITE);
402   num_samples = map.size / GST_AUDIO_FILTER_BPS (self);
403
404   self->process (self, map.data, num_samples);
405
406   gst_buffer_unmap (buf, &map);
407   g_mutex_unlock (&self->lock);
408
409   return GST_FLOW_OK;
410 }