Re: [FFmpeg-devel] [PATCH 1/8] avcodec/mpc8: Fix 32bit mask/enum

2019-08-11 Thread Michael Niedermayer
On Sun, Aug 11, 2019 at 11:05:41AM +0200, Paul B Mahol wrote: > LGTM will apply thx [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Frequently ignored answer#1 FFmpeg bugs should be sent to our bugtracker. User questions about the command line tools should be s

Re: [FFmpeg-devel] [PATCH 1/8] avcodec/mpc8: Fix 32bit mask/enum

2019-08-11 Thread Paul B Mahol
LGTM On Sat, Aug 10, 2019 at 11:18 PM Michael Niedermayer wrote: > Fixes: left shift of 1 by 31 places cannot be represented in type 'int' > Fixes: > 15817/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MPC8_fuzzer-5636626409062400 > > Found-by: continuous fuzzing process > https://github.com

[FFmpeg-devel] [PATCH 1/8] avcodec/mpc8: Fix 32bit mask/enum

2019-08-10 Thread Michael Niedermayer
Fixes: left shift of 1 by 31 places cannot be represented in type 'int' Fixes: 15817/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MPC8_fuzzer-5636626409062400 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermay