Tizen 2.0 Release
[framework/multimedia/gst-plugins-good0.10.git] / gst / equalizer / gstiirequalizer.h
1 /* GStreamer IIR equalizer
2  * Copyright (C) <2004> Benjamin Otte <otte@gnome.org>
3  *               <2007> Stefan Kost <ensonic@users.sf.net>
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 #ifndef __GST_IIR_EQUALIZER__
22 #define __GST_IIR_EQUALIZER__
23
24 #include <gst/audio/gstaudiofilter.h>
25 #include <gst/audio/gstringbuffer.h>
26 #include <gst/controller/gstcontroller.h>
27
28 typedef struct _GstIirEqualizer GstIirEqualizer;
29 typedef struct _GstIirEqualizerClass GstIirEqualizerClass;
30 typedef struct _GstIirEqualizerBand GstIirEqualizerBand;
31
32 #define GST_TYPE_IIR_EQUALIZER \
33   (gst_iir_equalizer_get_type())
34 #define GST_IIR_EQUALIZER(obj) \
35   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_IIR_EQUALIZER,GstIirEqualizer))
36 #define GST_IIR_EQUALIZER_CLASS(klass) \
37   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_IIR_EQUALIZER,GstIirEqualizerClass))
38 #define GST_IS_IIR_EQUALIZER(obj) \
39   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_IIR_EQUALIZER))
40 #define GST_IS_IIR_EQUALIZER_CLASS(klass) \
41   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_IIR_EQUALIZER))
42
43 #define LOWEST_FREQ (20.0)
44 #define HIGHEST_FREQ (20000.0)
45
46 typedef void (*ProcessFunc) (GstIirEqualizer * eq, guint8 * data, guint size,
47     guint channels);
48
49 struct _GstIirEqualizer
50 {
51   GstAudioFilter audiofilter;
52
53   /*< private >*/
54
55   GMutex *bands_lock;
56   GstIirEqualizerBand **bands;
57
58   /* properties */
59   guint freq_band_count;
60   /* for each band and channel */
61   gpointer history;
62   guint history_size;
63
64   gboolean need_new_coefficients;
65
66   ProcessFunc process;
67 };
68
69 struct _GstIirEqualizerClass
70 {
71   GstAudioFilterClass audiofilter_class;
72 };
73
74 extern void gst_iir_equalizer_compute_frequencies (GstIirEqualizer * equ, guint new_count);
75
76 extern GType gst_iir_equalizer_get_type(void);
77
78 #endif /* __GST_IIR_EQUALIZER__ */