mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-01 05:39:51 +00:00
gst/wavenc/gstwavenc.c: Remove depth ranges and replace with sane values. Fixes #548530.
Original commit message from CVS: * gst/wavenc/gstwavenc.c: Remove depth ranges and replace with sane values. Fixes #548530.
This commit is contained in:
parent
cfc5ea685a
commit
de44b9743b
2 changed files with 9 additions and 4 deletions
|
@ -1,3 +1,8 @@
|
|||
2008-08-19 David Schleef <ds@schleef.org>
|
||||
|
||||
* gst/wavenc/gstwavenc.c: Remove depth ranges and replace
|
||||
with sane values. Fixes #548530.
|
||||
|
||||
2008-08-18 Sebastian Dröge <sebastian.droege@collabora.co.uk>
|
||||
|
||||
* ext/pulse/pulsesink.c: (gst_pulsesink_prepare):
|
||||
|
|
|
@ -79,7 +79,7 @@ GST_ELEMENT_DETAILS ("WAV audio muxer",
|
|||
"channels = (int) [ 1, 2 ], " \
|
||||
"endianness = (int) LITTLE_ENDIAN, " \
|
||||
"width = (int) 32, " \
|
||||
"depth = (int) [ 25, 32 ], " \
|
||||
"depth = (int) { 24, 32 }, " \
|
||||
"signed = (boolean) true" \
|
||||
"; " \
|
||||
"audio/x-raw-int, " \
|
||||
|
@ -87,7 +87,7 @@ GST_ELEMENT_DETAILS ("WAV audio muxer",
|
|||
"channels = (int) [ 1, 2 ], " \
|
||||
"endianness = (int) LITTLE_ENDIAN, " \
|
||||
"width = (int) 24, " \
|
||||
"depth = (int) [ 17, 24 ], " \
|
||||
"depth = (int) 24, " \
|
||||
"signed = (boolean) true" \
|
||||
"; " \
|
||||
"audio/x-raw-int, " \
|
||||
|
@ -95,14 +95,14 @@ GST_ELEMENT_DETAILS ("WAV audio muxer",
|
|||
"channels = (int) [ 1, 2 ], " \
|
||||
"endianness = (int) LITTLE_ENDIAN, " \
|
||||
"width = (int) 16, " \
|
||||
"depth = (int) [ 9, 16 ], " \
|
||||
"depth = (int) 16, " \
|
||||
"signed = (boolean) true" \
|
||||
"; " \
|
||||
"audio/x-raw-int, " \
|
||||
"rate = (int) [ 1, MAX ], " \
|
||||
"channels = (int) [ 1, 2 ], " \
|
||||
"width = (int) 8, " \
|
||||
"depth = (int) [ 1, 8 ], " \
|
||||
"depth = (int) 8, " \
|
||||
"signed = (boolean) false"
|
||||
|
||||
static GstStaticPadTemplate sink_factory = GST_STATIC_PAD_TEMPLATE ("sink",
|
||||
|
|
Loading…
Reference in a new issue