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-24avcodec/ylc: Fix shift overflowMichael Niedermayer
Fixes: runtime error: shift exponent 32 is too large for 32-bit type 'unsigned int' Fixes: 2698/clusterfuzz-testcase-minimized-4713541443518464 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2017-07-09avcodec/ylc: Fix vlc of 31 bitsMichael Niedermayer
Fixes: runtime error: left shift of 1 by 31 places cannot be represented in type 'int' Fixes: 2515/clusterfuzz-testcase-minimized-6197200012967936 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>
2017-05-28avcodec/ylc: Check count in build_vlc()Michael Niedermayer
Fixes: runtime error: signed integer overflow: 211633430 + 2147483647 cannot be represented in type 'int' Fixes: 1874/clusterfuzz-testcase-minimized-5037763613163520 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-12-26avcodec/ylc: thread safe initialization is possible with this codecPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2016-12-26avcodec/ylc: add frame threading supportPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2016-12-26avcodec/ylc: do not leak memory at uninitPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2016-06-26avcodec: add YUY2 Lossless Codec decoderPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>