diff options
author | Benjamin Otte <otte@gnome.org> | 2003-12-22 07:15:19 +0000 |
---|---|---|
committer | Benjamin Otte <otte@gnome.org> | 2003-12-22 07:15:19 +0000 |
commit | a3a7c36ac1f632ef26dc5446e8ef061eb2868f55 (patch) | |
tree | 920d9dd6512e110e4d46096567a40576ca15f7c0 | |
parent | 4718f83e7c91f4810880a52a58331e47a00e06a5 (diff) | |
download | gst-plugins-bad-a3a7c36ac1f632ef26dc5446e8ef061eb2868f55.tar.gz gst-plugins-bad-a3a7c36ac1f632ef26dc5446e8ef061eb2868f55.tar.bz2 gst-plugins-bad-a3a7c36ac1f632ef26dc5446e8ef061eb2868f55.zip |
messed up the template caps on first try
Original commit message from CVS:
messed up the template caps on first try
-rw-r--r-- | ext/faad/gstfaad.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/faad/gstfaad.c b/ext/faad/gstfaad.c index 56879070..23c2f156 100644 --- a/ext/faad/gstfaad.c +++ b/ext/faad/gstfaad.c @@ -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 ]" ) ); |