mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-04 15:19:57 +00:00
goom: Port to the new multichannel caps and update for the new raw audio layout field
This commit is contained in:
parent
80dcefc702
commit
720a49b86c
1 changed files with 8 additions and 1 deletions
|
@ -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")
|
||||
);
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue