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
2016-05-31avcodec/dca: require checked bitstream readerfoo86
Remove half-working attempt at supporting unchecked bitstream reader by always copying input data into intermediate buffer with large amount of padding at the end. Convert LBR decoder to checked bitstream reader. Convert dcadec_decode_frame() to parse input data directly if possible. Signed-off-by: James Almer <jamrial@gmail.com>
2016-05-20avcodec/dca: remove Rice code length limitfoo86
Signed-off-by: James Almer <jamrial@gmail.com>
2016-05-03avcodec/dca: convert to AVCRCfoo86
Signed-off-by: James Almer <jamrial@gmail.com>
2016-03-03avcodec/dca: simplify conditionfoo86
Reviewed-by: Hendrik Leppkes <h.leppkes@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-03-03avcodec/dca: fix av_cold placement in declarationsfoo86
Reviewed-by: Hendrik Leppkes <h.leppkes@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-01-31avcodec/dca: add new decoder based on libdcadecfoo86
2016-01-31avcodec/dca: remove old decoderfoo86
Remove all files and functions which are not going to be reused, and disable all functions and FATE tests temporarily which will be.
2015-04-18dca_xll: use av_clip_intp2()James Almer
Reviewed-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: James Almer <jamrial@gmail.com>
2015-03-17Merge commit 'c9ed48e80ef807ab0c1bb946ac8db5f34d83d9c9'Michael Niedermayer
* commit 'c9ed48e80ef807ab0c1bb946ac8db5f34d83d9c9': dca: Read params->pancABIT0[param_index] only if part0 is set Merged-by: Michael Niedermayer <michaelni@gmx.at>
2015-03-17dca: Read params->pancABIT0[param_index] only if part0 is setNiels Möller
Prevent a spurious read from uninitialized memory.
2015-03-16Merge commit '217e4ff4d1f845b76e44634e29371cd09313d1c2'Michael Niedermayer
* commit '217e4ff4d1f845b76e44634e29371cd09313d1c2': dca: Support for XLL (lossless extension) Conflicts: Changelog doc/general.texi libavcodec/Makefile libavcodec/dca.h libavcodec/dca_exss.c libavcodec/dcadata.h libavcodec/dcadec.c libavcodec/version.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
2015-03-15dca: Support for XLL (lossless extension)Niels Möller
Cleanup and integration by Diego Biurrun. Signed-off-by: Diego Biurrun <diego@biurrun.de>