From 4cb8574dc838e5b8adddf3f6ee18ccf8ece4483b Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Mon, 13 Mar 2006 23:46:47 +0000 Subject: [PATCH] fixing coverity warnig CID: 253 (reading over the end of the aspect_ratio array for illegal aspect ratios) Originally committed as revision 5163 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/h264.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/h264.c b/libavcodec/h264.c index b923d50c36..f120858268 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -7104,7 +7104,7 @@ static inline int decode_vui_parameters(H264Context *h, SPS *sps){ if( aspect_ratio_idc == EXTENDED_SAR ) { sps->sar.num= get_bits(&s->gb, 16); sps->sar.den= get_bits(&s->gb, 16); - }else if(aspect_ratio_idc < 16){ + }else if(aspect_ratio_idc < 14){ sps->sar= pixel_aspect[aspect_ratio_idc]; }else{ av_log(h->s.avctx, AV_LOG_ERROR, "illegal aspect ratio\n");