mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-26 02:00:33 +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, " \
|
"width = (int) 32, " \
|
||||||
"depth = (int) [ 1, 32 ], " \
|
"depth = (int) [ 1, 32 ], " \
|
||||||
"signed = (boolean) { true, false }; " \
|
"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, " \
|
"audio/x-raw-int, " \
|
||||||
"rate = (int) [ 1, MAX ], " \
|
"rate = (int) [ 1, MAX ], " \
|
||||||
"channels = (int) [ 1, 8 ], " \
|
"channels = (int) [ 1, 8 ], " \
|
||||||
|
@ -134,6 +127,15 @@ GST_STATIC_CAPS ( \
|
||||||
"signed = (boolean) { true, false } " \
|
"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 GstAudioChannelPosition *supported_positions;
|
||||||
|
|
||||||
static GstStaticCaps gst_audio_convert_static_caps = STATIC_CAPS;
|
static GstStaticCaps gst_audio_convert_static_caps = STATIC_CAPS;
|
||||||
|
|
Loading…
Reference in a new issue