mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/diracdec: check that GetBitContext has not ended in codeblock()
Fixes: Timeout (part 2 of 2) Fixes: 9774/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_DIRAC_fuzzer-5748957085958144 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
7274d849cc
commit
179ed2d2e0
|
@ -548,6 +548,8 @@ static inline int codeblock(DiracContext *s, SubBand *b,
|
|||
}
|
||||
} else {
|
||||
for (y = top; y < bottom; y++) {
|
||||
if (get_bits_left(gb) < 1)
|
||||
return AVERROR_INVALIDDATA;
|
||||
for (x = left; x < right; x++) {
|
||||
int val = coeff_unpack_golomb(gb, qfactor, qoffset);
|
||||
if (b->pshift) {
|
||||
|
|
Loading…
Reference in New Issue