mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-30 04:00:37 +00:00
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:
parent
4718f83e7c
commit
a3a7c36ac1
1 changed files with 5 additions and 5 deletions
|
@ -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 ]"
|
||||
)
|
||||
);
|
||||
|
||||
|
|
Loading…
Reference in a new issue