You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
avcodec/pixlet: check out of bounds pfx value
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
@@ -267,6 +267,8 @@ static int read_high_coeffs(AVCodecContext *avctx, uint8_t *src, int16_t *dst, i
|
||||
escape = av_mod_uintp2(16383, pfx);
|
||||
cnt1 = get_unary(b, 0, 8);
|
||||
if (cnt1 < 8) {
|
||||
if (pfx < 1 || pfx > 25)
|
||||
return AVERROR_INVALIDDATA;
|
||||
value = show_bits(b, pfx);
|
||||
if (value > 1) {
|
||||
skip_bits(b, pfx);
|
||||
|
Reference in New Issue
Block a user