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
2017-07-19avcodec/dca: move some enumeration typedefs into headersfoo86
These values will be used by the parser. Prefix them with DCA_ appropriately. Signed-off-by: James Almer <jamrial@gmail.com>
2017-02-02avcodec/dca_lbr: Fix off by 1 error in freq checkMichael Niedermayer
Fixes out of array read Fixes: 510/clusterfuzz-testcase-5737865715646464 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
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-21avcodec/dca: use LUT for LBR frequency rangesfoo86
Values for unsupported frequencies > 48000 Hz are still included (parser will make use of them). Also convert sampling frequencies array to unsigned. Signed-off-by: James Almer <jamrial@gmail.com>
2016-05-11avcodec/dca_lbr: Fix "warning: missing braces around initializer"Michael Niedermayer
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-05-11avcodec/dca_lbr: explicitly initialize structs with zeroHendrik Leppkes
This fixes build on MSVC and conforms to the usual init style used.
2016-05-11avcodec/dca: add DTS Express (LBR) decoderfoo86
Signed-off-by: James Almer <jamrial@gmail.com>