mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
modplug: Allow 1-2 channels for 16 and 32 bit depths, not only for 8 bits.
Fixes bug #605721.
This commit is contained in:
parent
212cf43774
commit
f116cb0c19
1 changed files with 2 additions and 2 deletions
|
@ -95,14 +95,14 @@ static GstStaticPadTemplate modplug_src_template_factory =
|
||||||
" width = (int) 32,"
|
" width = (int) 32,"
|
||||||
" depth = (int) 32,"
|
" depth = (int) 32,"
|
||||||
" rate = (int) { 8000, 11025, 22050, 44100 },"
|
" rate = (int) { 8000, 11025, 22050, 44100 },"
|
||||||
" channels = (int) 2; "
|
" channels = (int) [ 1, 2 ]; "
|
||||||
"audio/x-raw-int,"
|
"audio/x-raw-int,"
|
||||||
" endianness = (int) BYTE_ORDER,"
|
" endianness = (int) BYTE_ORDER,"
|
||||||
" signed = (boolean) true,"
|
" signed = (boolean) true,"
|
||||||
" width = (int) 16,"
|
" width = (int) 16,"
|
||||||
" depth = (int) 16,"
|
" depth = (int) 16,"
|
||||||
" rate = (int) { 8000, 11025, 22050, 44100 },"
|
" rate = (int) { 8000, 11025, 22050, 44100 },"
|
||||||
" channels = (int) 2; "
|
" channels = (int) [ 1, 2 ]; "
|
||||||
"audio/x-raw-int,"
|
"audio/x-raw-int,"
|
||||||
" endianness = (int) BYTE_ORDER,"
|
" endianness = (int) BYTE_ORDER,"
|
||||||
" signed = (boolean) false,"
|
" signed = (boolean) false,"
|
||||||
|
|
Loading…
Reference in a new issue