summaryrefslogtreecommitdiffstats
path: root/gst/equalizer
diff options
context:
space:
mode:
Diffstat (limited to 'gst/equalizer')
-rw-r--r--gst/equalizer/gstiirequalizer.c9
-rw-r--r--gst/equalizer/gstiirequalizer.h10
-rw-r--r--gst/equalizer/gstiirequalizernbands.c4
3 files changed, 8 insertions, 15 deletions
diff --git a/gst/equalizer/gstiirequalizer.c b/gst/equalizer/gstiirequalizer.c
index db29adec..926b1e0a 100644
--- a/gst/equalizer/gstiirequalizer.c
+++ b/gst/equalizer/gstiirequalizer.c
@@ -433,7 +433,8 @@ gst_iir_equalizer_set_property (GObject * object, guint prop_id,
{
GstIirEqualizer *equ = GST_IIR_EQUALIZER (object);
- GST_EQUALIZER_TRANSFORM_LOCK (equ);
+ g_mutex_lock (((GstBaseTransform *) (equ))->transform_lock);
+ //GST_BASE_TRANSFORM_LOCK (equ);
GST_OBJECT_LOCK (equ);
switch (prop_id) {
case ARG_BAND_WIDTH:
@@ -453,7 +454,7 @@ gst_iir_equalizer_set_property (GObject * object, guint prop_id,
break;
}
GST_OBJECT_UNLOCK (equ);
- GST_EQUALIZER_TRANSFORM_UNLOCK (equ);
+ GST_BASE_TRANSFORM_UNLOCK (equ);
}
static void
@@ -462,7 +463,7 @@ gst_iir_equalizer_get_property (GObject * object, guint prop_id,
{
GstIirEqualizer *equ = GST_IIR_EQUALIZER (object);
- GST_EQUALIZER_TRANSFORM_LOCK (equ);
+ GST_BASE_TRANSFORM_LOCK (equ);
GST_OBJECT_LOCK (equ);
switch (prop_id) {
case ARG_BAND_WIDTH:
@@ -473,7 +474,7 @@ gst_iir_equalizer_get_property (GObject * object, guint prop_id,
break;
}
GST_OBJECT_UNLOCK (equ);
- GST_EQUALIZER_TRANSFORM_UNLOCK (equ);
+ GST_BASE_TRANSFORM_UNLOCK (equ);
}
/* start of code that is type specific */
diff --git a/gst/equalizer/gstiirequalizer.h b/gst/equalizer/gstiirequalizer.h
index 03fe6a72..558959c8 100644
--- a/gst/equalizer/gstiirequalizer.h
+++ b/gst/equalizer/gstiirequalizer.h
@@ -25,14 +25,6 @@
#include <gst/audio/gstringbuffer.h>
#include <gst/controller/gstcontroller.h>
-
-#define GST_EQUALIZER_TRANSFORM_LOCK(eq) \
- g_mutex_lock (GST_BASE_TRANSFORM(eq)->transform_lock)
-
-#define GST_EQUALIZER_TRANSFORM_UNLOCK(eq) \
- g_mutex_unlock (GST_BASE_TRANSFORM(eq)->transform_lock)
-
-
typedef struct _GstIirEqualizer GstIirEqualizer;
typedef struct _GstIirEqualizerClass GstIirEqualizerClass;
typedef struct _GstIirEqualizerBand GstIirEqualizerBand;
@@ -59,7 +51,7 @@ struct _GstIirEqualizer
GstAudioFilter audiofilter;
/*< private >*/
-
+
GstIirEqualizerBand **bands;
/* properties */
diff --git a/gst/equalizer/gstiirequalizernbands.c b/gst/equalizer/gstiirequalizernbands.c
index 939085bb..c03ca01f 100644
--- a/gst/equalizer/gstiirequalizernbands.c
+++ b/gst/equalizer/gstiirequalizernbands.c
@@ -103,7 +103,7 @@ gst_iir_equalizer_nbands_set_property (GObject * object, guint prop_id,
{
GstIirEqualizer *equ = GST_IIR_EQUALIZER (object);
- GST_EQUALIZER_TRANSFORM_LOCK (equ);
+ GST_BASE_TRANSFORM_LOCK (equ);
GST_OBJECT_LOCK (equ);
switch (prop_id) {
case ARG_NUM_BANDS:
@@ -114,7 +114,7 @@ gst_iir_equalizer_nbands_set_property (GObject * object, guint prop_id,
break;
}
GST_OBJECT_UNLOCK (equ);
- GST_EQUALIZER_TRANSFORM_UNLOCK (equ);
+ GST_BASE_TRANSFORM_UNLOCK (equ);
}
static void