mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
fix pad templates
This commit is contained in:
parent
4b6a410be0
commit
6c800137d8
2 changed files with 3 additions and 3 deletions
|
@ -58,7 +58,7 @@ static GstStaticPadTemplate sink_template = GST_STATIC_PAD_TEMPLATE ("sink",
|
|||
"rate = (int) [ 8000, 192000 ], " \
|
||||
"channels = (int) 2, " \
|
||||
"channel-mask = (bitmask) 0x3," \
|
||||
"layout = (string) interleaved;"
|
||||
"layout = (string) interleaved"
|
||||
|
||||
#define GST_AU_PARSE_ALAW_PAD_TEMPLATE_CAPS \
|
||||
"audio/x-alaw, " \
|
||||
|
|
|
@ -76,14 +76,14 @@ struct wave_header
|
|||
"audio/x-raw, " \
|
||||
"rate = (int) [ 1, MAX ], " \
|
||||
"channels = (int) 1, " \
|
||||
"format = (string) { S32LE, S24LE, S16LE, U8, F32LE, F64LE } " \
|
||||
"format = (string) { S32LE, S24LE, S16LE, U8, F32LE, F64LE }, " \
|
||||
"layout = (string) interleaved" \
|
||||
"; " \
|
||||
"audio/x-raw, " \
|
||||
"rate = (int) [ 1, MAX ], " \
|
||||
"channels = (int) 2, " \
|
||||
"channel-mask = (bitmask) 0x3, " \
|
||||
"format = (string) { S32LE, S24LE, S16LE, U8, F32LE, F64LE } " \
|
||||
"format = (string) { S32LE, S24LE, S16LE, U8, F32LE, F64LE }, " \
|
||||
"layout = (string) interleaved" \
|
||||
"; " \
|
||||
"audio/x-alaw, " \
|
||||
|
|
Loading…
Reference in a new issue