mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avcodec/shorten: More complete pred_order check
Fixes CID1239055 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
2d15588124
commit
294469416d
@ -277,7 +277,7 @@ static int decode_subframe_lpc(ShortenContext *s, int command, int channel,
|
|||||||
if (command == FN_QLPC) {
|
if (command == FN_QLPC) {
|
||||||
/* read/validate prediction order */
|
/* read/validate prediction order */
|
||||||
pred_order = get_ur_golomb_shorten(&s->gb, LPCQSIZE);
|
pred_order = get_ur_golomb_shorten(&s->gb, LPCQSIZE);
|
||||||
if (pred_order > s->nwrap) {
|
if ((unsigned)pred_order > s->nwrap) {
|
||||||
av_log(s->avctx, AV_LOG_ERROR, "invalid pred_order %d\n",
|
av_log(s->avctx, AV_LOG_ERROR, "invalid pred_order %d\n",
|
||||||
pred_order);
|
pred_order);
|
||||||
return AVERROR(EINVAL);
|
return AVERROR(EINVAL);
|
||||||
|
Loading…
Reference in New Issue
Block a user