diff options
| author | Sebastian Dröge <slomo@circular-chaos.org> | 2007-03-28 22:27:36 +0000 | 
|---|---|---|
| committer | Sebastian Dröge <slomo@circular-chaos.org> | 2007-03-28 22:27:36 +0000 | 
| commit | c76eea67cc962595362c8bf4c7650a76452e7b03 (patch) | |
| tree | 0b0cd953e8577abada78426c666cf860bdd83278 | |
| parent | 7add372a7a8a9ab443947dcc64430bdc1c483fed (diff) | |
gst/wavparse/gstwavparse.c: Actually support depths from 1 to 32, not only 8 to 32.
Original commit message from CVS:
* gst/wavparse/gstwavparse.c:
Actually support depths from 1 to 32, not only 8 to 32.
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | gst/wavparse/gstwavparse.c | 2 | 
2 files changed, 6 insertions, 1 deletions
@@ -1,6 +1,11 @@  2007-03-29  Sebastian Dröge  <slomo@circular-chaos.org>  	* gst/wavparse/gstwavparse.c: +	Actually support depths from 1 to 32, not only 8 to 32. + +2007-03-29  Sebastian Dröge  <slomo@circular-chaos.org> + +	* gst/wavparse/gstwavparse.c:  	Add support for wav files containing audio/x-raw-int with random  	depths between 1 and 32 bits. diff --git a/gst/wavparse/gstwavparse.c b/gst/wavparse/gstwavparse.c index 0aab1fc5..d3619ae4 100644 --- a/gst/wavparse/gstwavparse.c +++ b/gst/wavparse/gstwavparse.c @@ -112,7 +112,7 @@ static GstStaticPadTemplate src_template_factory =          "endianness = (int) little_endian, "          "signed = (boolean) { true, false }, "          "width = (int) { 8, 16, 24, 32 }, " -        "depth = (int) [ 8, 32 ], " +        "depth = (int) [ 1, 32 ], "          "rate = (int) [ 8000, 96000 ], "          "channels = (int) [ 1, 8 ]; "          "audio/ms-gsm; "  | 
