mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-24 03:39:45 +00:00
avcodec/flacdec: Check for invalid vlcs
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
8addd56554
commit
fd00203554
@ -259,7 +259,13 @@ static int decode_residuals(FLACContext *s, int32_t *decoded, int pred_order)
|
||||
*decoded++ = get_sbits_long(&s->gb, tmp);
|
||||
} else {
|
||||
for (; i < samples; i++) {
|
||||
*decoded++ = get_sr_golomb_flac(&s->gb, tmp, INT_MAX, 0);
|
||||
int v = get_sr_golomb_flac(&s->gb, tmp, INT_MAX, 0);
|
||||
if (v == 0x80000000){
|
||||
av_log(s->avctx, AV_LOG_ERROR, "invalid residual\n");
|
||||
return AVERROR_INVALIDDATA;
|
||||
}
|
||||
|
||||
*decoded++ = v;
|
||||
}
|
||||
}
|
||||
i= 0;
|
||||
|
Loading…
Reference in New Issue
Block a user