From: Stefan Sauer Date: Sun, 3 Feb 2013 21:45:52 +0000 (+0100) Subject: audiopanorama: fix caps X-Git-Tag: 1.1.1~358 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d187b96ee2274378bfeb4f9638272821a2d2c833;p=platform%2Fupstream%2Fgst-plugins-good.git audiopanorama: fix caps We don't turn float into 32bit pcm. Looks like a typo from updating the caps. --- diff --git a/gst/audiofx/audiopanorama.c b/gst/audiofx/audiopanorama.c index 129953e..3c41b7e 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") );