Commit 03d3cab8 authored by Jeff Downs's avatar Jeff Downs Committed by Andreas Öman

fix incorrect check for abs_diff_pic_num overflow

patch by Jeff Downs, heydowns a borg d com

Originally committed as revision 10700 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 9ba718e4
......@@ -3076,7 +3076,7 @@ static int decode_ref_pic_list_reordering(H264Context *h){
const unsigned int abs_diff_pic_num= get_ue_golomb(&s->gb) + 1;
int frame_num;
if(abs_diff_pic_num >= h->max_pic_num){
if(abs_diff_pic_num > h->max_pic_num){
av_log(h->s.avctx, AV_LOG_ERROR, "abs_diff_pic_num overflow\n");
return -1;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment