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
2019-11-09avcodec/atrac3plus: Check split point in fill mode 3Michael Niedermayer
Fixes: index 32 out of bounds for type 'int [32]' Fixes: 18350/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_ATRAC3P_fuzzer-5643794862571520 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2019-06-20libavcodec: Reduce the size of some arraysAndreas Rheinhardt
This commit uses smaller types for some static const arrays to reduce their size in case the entries can be represented in the smaller type. The biggest savings came from inv_map_table in vp9.c. Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com> Signed-off-by: James Almer <jamrial@gmail.com>
2017-09-26Merge commit 'fd9212f2edfe9b107c3c08ba2df5fd2cba5ab9e3'James Almer
* commit 'fd9212f2edfe9b107c3c08ba2df5fd2cba5ab9e3': Mark some arrays that never change as const. Merged-by: James Almer <jamrial@gmail.com>
2017-02-01Mark some arrays that never change as const.Anton Khirnov
2016-11-18atrac3plus: Convert to the new bitstream readerAlexandra Hájková
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2016-01-11lavc: Use get_bitsz where neededAndreas Cadhalpun
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2016-01-03lavc: use get_bitsz to simplify the codeAndreas Cadhalpun
Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
2015-06-08atrac3plus: give the phase_shift flag a better name.Max Poliakovski
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-08atrac3plus: add support for GHA phase inversion.Max Poliakovski
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-04-22avcodec: use av_mod_uintp2() where usefulJames Almer
Reviewed-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: James Almer <jamrial@gmail.com>
2014-11-15Merge commit 'd16ec1b6db25bc348b0d4800c9a0c9b7070e3710'Michael Niedermayer
* commit 'd16ec1b6db25bc348b0d4800c9a0c9b7070e3710': atrac3plus: always initialize refwaves The initialization is not needed, the array is never read before being written to. Its merged anyway for robustness in respect to future changes Merged-by: Michael Niedermayer <michaelni@gmx.at>
2014-11-14atrac3plus: always initialize refwavesVittorio Giovara
CC: libav-stable@libav.org Bug-Id: CID 1163851
2014-08-29Add missing "const" all over the place.Reimar Döffinger
Only "./configure --enable-gpl" on x86 was tested. Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
2014-01-09Merge remote-tracking branch 'qatar/master'Michael Niedermayer
* qatar/master: ATRAC3+ decoder Conflicts: Changelog configure libavcodec/atrac3plus.c libavcodec/atrac3plus.h libavcodec/atrac3plus_data.h libavcodec/atrac3plusdec.c libavcodec/atrac3plusdsp.c libavcodec/version.h See: 2e1fb96af36348479e14aa85f445915ea09e70fa Merged-by: Michael Niedermayer <michaelni@gmx.at>
2014-01-09ATRAC3+ decoderMaxim Polijakowski
Cleanup by Diego Biurrun. Signed-off-by: Kostya Shishkov <kostya.shishkov@gmail.com>
2014-01-02atrac3plus: Add forgotten initialization of an internal structMaxim Poliakovski
This patch also fixes trac ticket 3254. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-12-29ATRAC+ decoderMaxim Poliakovski
Cleanup by Diego Biurrun. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>