summaryrefslogtreecommitdiffstats
path: root/gst/level
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2005-09-23 14:20:01 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2005-09-23 14:20:01 +0000
commit23ca6f187624793dbbf86cca94366d5ad4020de3 (patch)
tree3e54b960d9dc5b5c6e107f3d93e9d0307857fd9d /gst/level
parent7593b38a57f55c28cdb4b8c3df27a13c6ce55d99 (diff)
we handle more than two channels
Original commit message from CVS: we handle more than two channels
Diffstat (limited to 'gst/level')
-rw-r--r--gst/level/gstlevel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/level/gstlevel.c b/gst/level/gstlevel.c
index 6feb8b64..4ce1a8be 100644
--- a/gst/level/gstlevel.c
+++ b/gst/level/gstlevel.c
@@ -74,7 +74,7 @@ GST_STATIC_PAD_TEMPLATE ("sink",
GST_PAD_ALWAYS,
GST_STATIC_CAPS ("audio/x-raw-int, "
"rate = (int) [ 1, MAX ], "
- "channels = (int) [ 1, 2 ], "
+ "channels = (int) [ 1, 8 ], "
"endianness = (int) BYTE_ORDER, "
"width = (int) { 8, 16 }, "
"depth = (int) { 8, 16 }, " "signed = (boolean) true")
@@ -86,7 +86,7 @@ GST_STATIC_PAD_TEMPLATE ("src",
GST_PAD_ALWAYS,
GST_STATIC_CAPS ("audio/x-raw-int, "
"rate = (int) [ 1, MAX ], "
- "channels = (int) [ 1, 2 ], "
+ "channels = (int) [ 1, 8 ], "
"endianness = (int) BYTE_ORDER, "
"width = (int) { 8, 16 }, "
"depth = (int) { 8, 16 }, " "signed = (boolean) true")