diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-05-15 17:02:28 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-05-15 17:45:06 +0200 |
commit | e4318f68750275f50474a241ce316f9fe6afb53e (patch) | |
tree | 4988fb423bcf2c154fcbeadbffdd6b311fc9e51f | |
parent | 008c1debb93623fcaf03f7ab0875c2c298f623af (diff) | |
download | ffmpeg-e4318f68750275f50474a241ce316f9fe6afb53e.tar.gz |
avcodec/shorten: More complete pred_order check
Fixes CID1239055
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
(cherry picked from commit 294469416d8193a28710d802bb0c46e5fa09fad7)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/shorten.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/shorten.c b/libavcodec/shorten.c index c7909f2d17..db2e3c5feb 100644 --- a/libavcodec/shorten.c +++ b/libavcodec/shorten.c @@ -277,7 +277,7 @@ static int decode_subframe_lpc(ShortenContext *s, int command, int channel, if (command == FN_QLPC) { /* read/validate prediction order */ 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", pred_order); return AVERROR(EINVAL); |