summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Sauer <ensonic@users.sf.net>2013-02-03 22:45:52 +0100
committerStefan Sauer <ensonic@users.sf.net>2013-02-03 22:45:52 +0100
commitd187b96ee2274378bfeb4f9638272821a2d2c833 (patch)
treeaef3995e1acaadd29dd89022f23de09ed0cc65c7
parentfe3e53585370928c3a780975108d448e33280241 (diff)
audiopanorama: fix caps
We don't turn float into 32bit pcm. Looks like a typo from updating the caps.
-rw-r--r--gst/audiofx/audiopanorama.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/audiofx/audiopanorama.c b/gst/audiofx/audiopanorama.c
index 129953e02..3c41b7efa 100644
--- a/gst/audiofx/audiopanorama.c
+++ b/gst/audiofx/audiopanorama.c
@@ -107,7 +107,7 @@ static GstStaticPadTemplate src_template = GST_STATIC_PAD_TEMPLATE ("src",
GST_PAD_SRC,
GST_PAD_ALWAYS,
GST_STATIC_CAPS ("audio/x-raw, "
- "format = (string) { " GST_AUDIO_NE (S32) ", " GST_AUDIO_NE (S16) "}, "
+ "format = (string) { " GST_AUDIO_NE (F32) ", " GST_AUDIO_NE (S16) "}, "
"rate = (int) [ 1, MAX ], " "channels = (int) 2, "
"layout = (string) interleaved, " "channel-mask = (bitmask)0x3")
);