goom: Port to the new multichannel caps and update for the new raw audio layout field

This commit is contained in:
Sebastian Dröge 2012-01-04 11:09:32 +01:00
parent 80dcefc702
commit 720a49b86c

View file

@ -85,7 +85,14 @@ static GstStaticPadTemplate sink_template = GST_STATIC_PAD_TEMPLATE ("sink",
GST_PAD_ALWAYS, /* ALWAYS/SOMETIMES */
GST_STATIC_CAPS ("audio/x-raw, "
"format = (string) " GST_AUDIO_NE (S16) ", "
"rate = (int) [ 8000, 96000 ], " "channels = (int) { 1, 2 }")
"rate = (int) [ 8000, 96000 ], "
"channels = (int) 1, "
"layout = (string) interleaved; "
"audio/x-raw, "
"format = (string) " GST_AUDIO_NE (S16) ", "
"rate = (int) [ 8000, 96000 ], "
"channels = (int) 2, "
"channel-mask = (bitmask) 0x3, " "layout = (string) interleaved")
);