modplug: Allow 1-2 channels for 16 and 32 bit depths, not only for 8 bits.

Fixes bug #605721.
This commit is contained in:
Kaj-Michael Lang 2009-12-29 17:28:06 +02:00 committed by Sebastian Dröge
parent 212cf43774
commit f116cb0c19

View file

@ -95,14 +95,14 @@ static GstStaticPadTemplate modplug_src_template_factory =
" width = (int) 32,"
" depth = (int) 32,"
" rate = (int) { 8000, 11025, 22050, 44100 },"
" channels = (int) 2; "
" channels = (int) [ 1, 2 ]; "
"audio/x-raw-int,"
" endianness = (int) BYTE_ORDER,"
" signed = (boolean) true,"
" width = (int) 16,"
" depth = (int) 16,"
" rate = (int) { 8000, 11025, 22050, 44100 },"
" channels = (int) 2; "
" channels = (int) [ 1, 2 ]; "
"audio/x-raw-int,"
" endianness = (int) BYTE_ORDER,"
" signed = (boolean) false,"