opusdec: Add support for decoding >8 channels

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/4180>
This commit is contained in:
Sebastian Dröge 2023-03-15 19:36:27 +02:00 committed by GStreamer Marge Bot
parent d78bed99e8
commit b1cb36e74c
2 changed files with 2 additions and 2 deletions

View file

@ -8084,7 +8084,7 @@
"presence": "always"
},
"src": {
"caps": "audio/x-raw:\n format: S16LE\n layout: interleaved\n rate: { (int)48000, (int)24000, (int)16000, (int)12000, (int)8000 }\n channels: [ 1, 8 ]\n",
"caps": "audio/x-raw:\n format: S16LE\n layout: interleaved\n rate: { (int)48000, (int)24000, (int)16000, (int)12000, (int)8000 }\n channels: [ 1, 255 ]\n",
"direction": "src",
"presence": "always"
}

View file

@ -63,7 +63,7 @@ GST_STATIC_PAD_TEMPLATE ("src",
"format = (string) " GST_AUDIO_NE (S16) ", "
"layout = (string) interleaved, "
"rate = (int) { 48000, 24000, 16000, 12000, 8000 }, "
"channels = (int) [ 1, 8 ] ")
"channels = (int) [ 1, 255 ] ")
);
static GstStaticPadTemplate opus_dec_sink_factory =