avcodec/cbs_h266_syntax_template: Check bit depth with range extension
Fixes: shift exponent 62 is too large for 32-bit type 'int' Fixes: 71020/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_VVC_fuzzer-6444916325023744 Fixes: 71285/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_VVC_fuzzer-4761971281428480 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
e9f588af95
commit
9d25b9665e
@ -1645,6 +1645,8 @@ static int FUNC(sps)(CodedBitstreamContext *ctx, RWContext *rw,
|
|||||||
ub(7, sps_extension_7bits);
|
ub(7, sps_extension_7bits);
|
||||||
|
|
||||||
if (current->sps_range_extension_flag) {
|
if (current->sps_range_extension_flag) {
|
||||||
|
if (current->sps_bitdepth_minus8 <= 10 - 8)
|
||||||
|
return AVERROR_INVALIDDATA;
|
||||||
CHECK(FUNC(sps_range_extension)(ctx, rw, current));
|
CHECK(FUNC(sps_range_extension)(ctx, rw, current));
|
||||||
} else {
|
} else {
|
||||||
infer(sps_extended_precision_flag, 0);
|
infer(sps_extended_precision_flag, 0);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user