avcodec/bonk: increase level limit as joint encodings needs more

This commit is contained in:
Paul B Mahol 2023-01-02 18:41:37 +01:00
parent 3879555cd5
commit 5852682dbd
1 changed files with 1 additions and 1 deletions

View File

@ -217,7 +217,7 @@ static int intlist_read(BonkContext *s, int *buf, int entries, int base_2_part)
level += 1 << low_bits;
}
if (level > 1 << 15)
if (level > 1 << 16)
return AVERROR_INVALIDDATA;
if (x >= max_x)