audiopanorama: fix caps
authorStefan Sauer <ensonic@users.sf.net>
Sun, 3 Feb 2013 21:45:52 +0000 (22:45 +0100)
committerStefan Sauer <ensonic@users.sf.net>
Sun, 3 Feb 2013 21:45:52 +0000 (22:45 +0100)
We don't turn float into 32bit pcm. Looks like a typo from updating the caps.

gst/audiofx/audiopanorama.c

index 129953e..3c41b7e 100644 (file)
@@ -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")
     );