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
2020-02-06avcodec/aptx: split decoder and encoder into separate filesJames Almer
Signed-off-by: James Almer <jamrial@gmail.com>
2019-11-01avcodec/aptx: Check the number of channelsMichael Niedermayer
Fixes: store to null pointer of type 'uint32_t' (aka 'unsigned int') Fixes: 18021/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_APTX_HD_fuzzer-5761738313564160 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2019-09-30avcodec/aptx: Fix multiple shift anomaliesMichael Niedermayer
Fixes: left shift of negative value -24576 Fixes: 17719/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_APTX_fuzzer-5710508002377728 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2018-02-10aptx: indentation (cosmetics only)Aurelien Jacobs
2018-02-10aptx: implement the aptX HD bluetooth codecAurelien Jacobs
2018-02-10aptx: do some clipping to match original codec in extreme casesAurelien Jacobs
2018-02-10aptx: factorize FFABS calculationAurelien Jacobs
2018-02-10aptx: simplify by pre-calculating factor_maxAurelien Jacobs
2017-12-18aptx: add codec cap SMALL_LAST_FRAME and INIT_THREADSAFE as appropriateAurelien Jacobs
2017-11-11aptx: implement the aptX bluetooth codecAurelien Jacobs
The encoder was reverse engineered from binary library and from EP0398973B1 patent (long expired). The decoder was simply deduced from the encoder.