From: Sebastian Dröge Date: Wed, 4 Jan 2012 09:26:47 +0000 (+0100) Subject: audiotestsrc: Fix channel-mask handling X-Git-Tag: RELEASE-0.11.2~189 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2db0238450bbde4b994675310f7a7f254f8609b9;p=platform%2Fupstream%2Fgst-plugins-base.git audiotestsrc: Fix channel-mask handling --- diff --git a/gst/audiotestsrc/gstaudiotestsrc.c b/gst/audiotestsrc/gstaudiotestsrc.c index 2a5a474..5588540 100644 --- a/gst/audiotestsrc/gstaudiotestsrc.c +++ b/gst/audiotestsrc/gstaudiotestsrc.c @@ -84,13 +84,19 @@ enum #endif static GstStaticPadTemplate gst_audio_test_src_src_template = -GST_STATIC_PAD_TEMPLATE ("src", + GST_STATIC_PAD_TEMPLATE ("src", GST_PAD_SRC, GST_PAD_ALWAYS, GST_STATIC_CAPS ("audio/x-raw, " "format = (string) " FORMAT_STR ", " "layout = (string) interleaved, " - "rate = (int) [ 1, MAX ], " "channels = (int) [ 1, 2 ]") + "rate = (int) [ 1, MAX ], " + "channels = (int) 1; " + "audio/x-raw, " + "format = (string) " FORMAT_STR ", " + "layout = (string) interleaved, " + "rate = (int) [ 1, MAX ], " + "channels = (int) 2, " "channel-mask = (bitmask) 0x3") ); #define gst_audio_test_src_parent_class parent_class