diff options
author | David Schleef <ds@schleef.org> | 2008-08-19 21:03:22 +0000 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2008-08-19 21:03:22 +0000 |
commit | de44b9743bd584fe1c0ba357edcebd452b7736a2 (patch) | |
tree | b4a88922a519ba9143256ca4aae511630e73dc02 /gst/wavenc | |
parent | cfc5ea685a0b487fab4cea62eeea90aa9e58e0e0 (diff) |
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.
Diffstat (limited to 'gst/wavenc')
-rw-r--r-- | gst/wavenc/gstwavenc.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gst/wavenc/gstwavenc.c b/gst/wavenc/gstwavenc.c index 9b27bcea..0d106dbd 100644 --- a/gst/wavenc/gstwavenc.c +++ b/gst/wavenc/gstwavenc.c @@ -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", |