Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-02-23wavpack: Don't shift minclip/maxclipDerek Buitenhuis
Since we are clipping before we shift the values to 16 or 32 bits, we should not shift the min/max clip values to compensate. Fixes 8 and 24 bit lossy decoding. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com> Signed-off-by: Anton Khirnov <anton@khirnov.net>
2012-02-11wavpack: add needed braces for 2 statements inside an if blockJustin Ruggles
2012-02-11wavpack: allow user to disable CRC checkingPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
2012-01-15wavpack: fix clipping for 32-bit lossy modeKostya Shishkov
Reference decoder clips data before shifting it to final range and also forces 32-bit lossy mode to be actually 24-bit lossy mode in order to be able to perform proper clipping.
2012-01-02wavpack: fix typos in previous cosmetic clean-up commitJustin Ruggles
2012-01-02wavpack: cosmetics: K&R pretty-printingJustin Ruggles
2012-01-02wavpack: determine sample_fmt before requesting a bufferHendrik Leppkes
Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
2011-12-22Drop ALT_ prefix from BITSTREAM_READER_LE name.Diego Biurrun
The prefix is a historic remnant that probably meant "alternative". Now that the A32 bitstream reader has been dropped it makes no sense anymore.
2011-12-16wavpack: Fix 32-bit clippingDerek Buitenhuis
In the case that (frame_flags & 0x03) == 3, hybrid_maxclip may have had a signed integer overflow. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com> Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-12-16wavpack: Clip samples after shiftingDerek Buitenhuis
It doesn't make much sense to clip pre-shift, nor is it correct for proper decoding. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com> Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-12-04wavpack: Properly clip samples during lossy decodeDerek Buitenhuis
When decoding lossy WavPack samples, they are supposed to be clipped, in order to be decoded correctly. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com> Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-12-03Add avcodec_decode_audio4().Justin Ruggles
Deprecate avcodec_decode_audio3(). Implement audio support in avcodec_default_get_buffer(). Implement the new audio decoder API in all audio decoders.
2011-10-23wavpack: calculate bpp using av_get_bytes_per_sample()Justin Ruggles
2011-10-07wavpack: Reset internal state on corrupted blocksLaurent Aimar
wavpack_decode_block() supposes that it is called back with the exact same buffer unless it has returned with an error. With multi-channels files, wavpack_decode_frame() was breaking this assumption. Signed-off-by: Janne Grunau <janne-libav@jannau.net>
2011-09-10Fixed segfault with wavpack decoder on corrupted decorrelation terms sub-blocks.Laurent Aimar
Signed-off-by: Martin Storsjö <martin@martin.st>
2011-09-08wavpack: Check error codes rather than working around error conditions.Alex Converse
2011-09-08Fixed invalid access in wavpack decoder on corrupted bitstream.Laurent Aimar
Signed-off-by: Martin Storsjö <martin@martin.st>
2011-09-08Fixed invalid writes in wavpack decoder on corrupted bitstreams.Laurent Aimar
Signed-off-by: Martin Storsjö <martin@martin.st>
2011-09-08Fixed invalid access in wavpack decoder on corrupted extra bits sub-blocks.Laurent Aimar
Signed-off-by: Martin Storsjö <martin@martin.st>
2011-09-05wavpack: fix wrong return value in wavpack_decode_block()Kostya Shishkov
This function should return number of samples decoded, not number of bytes decoded. Spotted by Uoti Urpala. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2011-09-05wavpack: use context reset in appropriate placesKostya Shishkov
This fixes improper flushing in the cases when the same frame is decoded in several iterations (for being too large to fit into output buffer) and flush is called mid-decoding and it also resets context in case of decoding errors. Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-08-21WavPack decoder: implement flush functionKostya Shishkov
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2011-07-29lavc: use designated initialisers for all codecs.Anton Khirnov
It's more readable and less prone to breakage.
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-02-15Merge libavcore into libavutilReinhard Tartler
It is pretty hopeless that other considerable projects will adopt libavutil alone in other projects. Projects that need small footprint are better off with more specialized libraries such as gnulib or rather just copy the necessary parts that they need. With this in mind, nobody is helped by having libavutil and libavcore split. In order to ease maintenance inside and around FFmpeg and to reduce confusion where to put common code, avcore's functionality is merged (back) to avutil. Signed-off-by: Reinhard Tartler <siretart@tauware.de>
2011-02-06Replace remaining occurrences of deprecated CH_* with AV_CH_*Anton Khirnov
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-01-26Add ff_ prefix to data symbols of encoders, decoders, hwaccel, parsers, bsf.Diego Elio Pettenò
None of these symbols should be accessed directly, so declare them as hidden. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-01-24reindent after last commitKostya
Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
2011-01-24Extend WavPack demuxer and decoder to support >2 channel audioKostya
Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
2011-01-08Limit number of samples decoded for WavPack mono mode, so decoded samples willKostya Shishkov
fit into output buffer. Originally committed as revision 26269 to svn://svn.ffmpeg.org/ffmpeg/trunk
2011-01-07Fail more gracefully for multichannel wavpack in another container.Carl Eugen Hoyos
Originally committed as revision 26253 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-11-12Replace deprecated symbols SAMPLE_FMT_* with AV_SAMPLE_FMT_*, and enumStefano Sabatini
SampleFormat with AVSampleFormat. Originally committed as revision 25730 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-20Remove explicit filename from Doxygen @file commands.Diego Biurrun
Passing an explicit filename to this command is only necessary if the documentation in the @file block refers to a file different from the one the block resides in. Originally committed as revision 22921 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-31Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini
is deprecated and will be dropped at the next major bump. Originally committed as revision 22735 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-19cosmetics: reindent after last commitKostya Shishkov
Originally committed as revision 21895 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-19Since WavPack chunk can contain more samples than FFmpeg is guaranteed toKostya Shishkov
hold, decode it in several iterations outputting as many samples as possible. Originally committed as revision 21894 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-11-16Use get_bits_left() instead of size_in_bits - get_bits_count().Ronald S. Bultje
Originally committed as revision 20543 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-16Add CODEC_CAP_SUBFRAMES for codecs that output multiple subframesSascha Sommer
per AVPacket No longer print "Multiple frames in a packet" error message when CODEC_CAP_SUBFRAMES is set (wmapro, wavpack) Originally committed as revision 19881 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-06Add floating point audio decoding to WavPack decoder.Laurent Aimar
Patch by Laurent Aimar (fenrir at `antonym of 'audio'+antonym of 'WAN'` dot org) Originally committed as revision 18754 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-06Prepare WavPack decoder to support floating point output.Laurent Aimar
Patch by Laurent Aimar (f-e-n-r-i-r .@.t. v=i=d=e=o=l=a=n .d.o.t. o=r=g) Originally committed as revision 18753 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-05Factorize out integer sample value decoding for WavPack.Laurent Aimar
This is slightly modified patch by Laurent Aimar. Originally committed as revision 18740 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-03Check whether extra bits block has enough data.Laurent Aimar
Patch by Laurent Aimar "f\145nr\151r >at< vide\157lan <dot> o\162g" Originally committed as revision 18732 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-02Remove dead assignments found by CSABenjamin Larsson
Originally committed as revision 18730 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-02Decode extended bitstream for high-precision WavPack files.Laurent Aimar
Patch by Laurent Aimar [(wolf, son of Loki) <at> (videolan) <dot> (org)] Originally committed as revision 18729 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-26Correctly update output sample format in wavpack decoder.Laurent Aimar
Patch by Laurent Aimar (at 'fenrir (cons 'videolan 'org)) Originally committed as revision 18694 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-24Merge decoding functions for all bitdepths in WavPack decoderKostya Shishkov
Originally committed as revision 18675 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-23Handle WavPack INT32INFO chunks with nonzero post shiftKostya Shishkov
Originally committed as revision 18668 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-23Add functions for decoding >16 bits WavPack files.Kostya Shishkov
Based on patches by Laurent Aimar (fenrir >whirlpool< videolan >dit< org) Originally committed as revision 18667 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-23Shift 9-15 bit samples to use full 16-bit range.Laurent Aimar
Patch by Laurent Aimar <fenrir at VLCsite> Thread: [PATCH] Fixed wavpack 9-15 bits support Originally committed as revision 18666 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-13Rename bitstream.h to get_bits.h.Stefano Sabatini
Originally committed as revision 18494 to svn://svn.ffmpeg.org/ffmpeg/trunk