disable 24 bit until it gets fixed

Original commit message from CVS:
disable 24 bit until it gets fixed
This commit is contained in:
Thomas Vander Stichele 2005-09-02 23:16:15 +00:00
parent 60d0106d69
commit a23795d4d3

View file

@ -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;