Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/GStreamer/gst-plugins-good.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@collabora.co.uk>2012-02-06 18:20:55 +0400
committerWim Taymans <wim.taymans@collabora.co.uk>2012-02-06 18:20:55 +0400
commitdd26b14930c07e347173e86f93ece0eb54a19aa4 (patch)
tree4326dc9563bf467b6af0b93adf38b5c1d6e2970c /tests/check/elements/equalizer.c
parent41648135b29289131994c331ad15eaf75b63808a (diff)
iirequalizer: fix equalizer and unit test
Diffstat (limited to 'tests/check/elements/equalizer.c')
-rw-r--r--tests/check/elements/equalizer.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/check/elements/equalizer.c b/tests/check/elements/equalizer.c
index 5fb290abb..6e96428f1 100644
--- a/tests/check/elements/equalizer.c
+++ b/tests/check/elements/equalizer.c
@@ -35,6 +35,7 @@ GstPad *mysrcpad, *mysinkpad;
#define EQUALIZER_CAPS_STRING \
"audio/x-raw, " \
"format = (string) "GST_AUDIO_NE (F64) ", " \
+ "layout = (string) interleaved, " \
"channels = (int) 1, " \
"rate = (int) 48000"
@@ -43,6 +44,7 @@ static GstStaticPadTemplate sinktemplate = GST_STATIC_PAD_TEMPLATE ("sink",
GST_PAD_ALWAYS,
GST_STATIC_CAPS ("audio/x-raw, "
"format = (string) " GST_AUDIO_NE (F64) ", "
+ "layout = (string) interleaved, "
"channels = (int) 1, " "rate = (int) 48000")
);
static GstStaticPadTemplate srctemplate = GST_STATIC_PAD_TEMPLATE ("src",
@@ -50,6 +52,7 @@ static GstStaticPadTemplate srctemplate = GST_STATIC_PAD_TEMPLATE ("src",
GST_PAD_ALWAYS,
GST_STATIC_CAPS ("audio/x-raw, "
"format = (string) " GST_AUDIO_NE (F64) ", "
+ "layout = (string) interleaved, "
"channels = (int) 1, " "rate = (int) 48000")
);