mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-03 04:52:28 +00:00
gst/auparse/gstauparse.c: eee (32, 64) only unsupported formats are ADPCM/CCITT G.72x
Original commit message from CVS: * gst/auparse/gstauparse.c: fixes a-law, adds mu-law, linear pcm (8,16,24,32), ieee (32, 64) only unsupported formats are ADPCM/CCITT G.72x reviewed by Ronald * gst-libs/gst/audio/audio.h: adds 24bit depth to PCM (x-raw-int)
This commit is contained in:
parent
5ac4f86841
commit
c80b5ca1a0
2 changed files with 9 additions and 1 deletions
|
@ -1,3 +1,11 @@
|
||||||
|
2004-05-11 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
|
||||||
|
|
||||||
|
* gst/auparse/gstauparse.c:
|
||||||
|
fixes a-law, adds mu-law, linear pcm (8,16,24,32), ieee (32, 64)
|
||||||
|
only unsupported formats are ADPCM/CCITT G.72x
|
||||||
|
reviewed by Ronald
|
||||||
|
* gst-libs/gst/audio/audio.h: adds 24bit depth to PCM (x-raw-int)
|
||||||
|
|
||||||
2004-05-10 Wim Taymans <wim@fluendo.com>
|
2004-05-10 Wim Taymans <wim@fluendo.com>
|
||||||
|
|
||||||
* ext/vorbis/Makefile.am:
|
* ext/vorbis/Makefile.am:
|
||||||
|
|
|
@ -58,7 +58,7 @@ G_BEGIN_DECLS
|
||||||
"rate = (int) [ 1, MAX ], " \
|
"rate = (int) [ 1, MAX ], " \
|
||||||
"channels = (int) [ 1, MAX ], " \
|
"channels = (int) [ 1, MAX ], " \
|
||||||
"endianness = (int) { LITTLE_ENDIAN, BIG_ENDIAN }, " \
|
"endianness = (int) { LITTLE_ENDIAN, BIG_ENDIAN }, " \
|
||||||
"width = (int) { 8, 16, 32 }, " \
|
"width = (int) { 8, 16, 24, 32 }, " \
|
||||||
"depth = (int) [ 1, 32 ], " \
|
"depth = (int) [ 1, 32 ], " \
|
||||||
"signed = (boolean) { true, false }"
|
"signed = (boolean) { true, false }"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue