mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 01:30:38 +00:00
disable 24 bit until it gets fixed
Original commit message from CVS: disable 24 bit until it gets fixed
This commit is contained in:
parent
60d0106d69
commit
a23795d4d3
1 changed files with 9 additions and 7 deletions
|
@ -111,13 +111,6 @@ GST_STATIC_CAPS ( \
|
|||
"width = (int) 32, " \
|
||||
"depth = (int) [ 1, 32 ], " \
|
||||
"signed = (boolean) { true, false }; " \
|
||||
"audio/x-raw-int, " \
|
||||
"rate = (int) [ 1, MAX ], " \
|
||||
"channels = (int) [ 1, 8 ], " \
|
||||
"endianness = (int) { LITTLE_ENDIAN, BIG_ENDIAN }, " \
|
||||
"width = (int) 24, " \
|
||||
"depth = (int) [ 1, 24 ], " \
|
||||
"signed = (boolean) { true, false }; " \
|
||||
"audio/x-raw-int, " \
|
||||
"rate = (int) [ 1, MAX ], " \
|
||||
"channels = (int) [ 1, 8 ], " \
|
||||
|
@ -134,6 +127,15 @@ GST_STATIC_CAPS ( \
|
|||
"signed = (boolean) { true, false } " \
|
||||
)
|
||||
|
||||
/* FIXME: put back 24 bit audio */
|
||||
#if 0
|
||||
"audio/x-raw-int, "
|
||||
"rate = (int) [ 1, MAX ], "
|
||||
"channels = (int) [ 1, 8 ], "
|
||||
"endianness = (int) { LITTLE_ENDIAN, BIG_ENDIAN }, "
|
||||
"width = (int) 24, "
|
||||
"depth = (int) [ 1, 24 ], " "signed = (boolean) { true, false }; "
|
||||
#endif
|
||||
static GstAudioChannelPosition *supported_positions;
|
||||
|
||||
static GstStaticCaps gst_audio_convert_static_caps = STATIC_CAPS;
|
||||
|
|
Loading…
Reference in a new issue