messed up the template caps on first try

Original commit message from CVS:
messed up the template caps on first try
This commit is contained in:
Benjamin Otte 2003-12-22 07:15:19 +00:00
parent 4718f83e7c
commit a3a7c36ac1

View file

@ -42,15 +42,15 @@ GstStaticPadTemplate src_template = GST_STATIC_PAD_TEMPLATE (
GST_STATIC_CAPS ("audio/x-raw-int, "
"endianness = (int) BYTE_ORDER, "
"signed = (bool) TRUE, "
"width = { (int) 16, (int) 24, (int) 32 }, "
"depth = { (int) 16, (int) 24, (int) 32 }, "
"width = (int) { 16, 24, 32 }, "
"depth = (int) { 16, 24, 32 }, "
"rate = (int) [ 8000, 96000 ], "
"channels = (int) [ 1, 6 ];"
"channels = (int) [ 1, 6 ]; "
"audio/x-raw-float, "
"endianness = (int) BYTE_ORDER, "
"depth = { (int) 32, (int) 64 }, "
"depth = (int) { 32, 64 }, "
"rate = (int) [ 8000, 96000 ], "
"channels = (int) [ 1, 6 ];"
"channels = (int) [ 1, 6 ]"
)
);