Commit 0cd8c015 authored by michael's avatar michael

Remove another stupidity, long_ref==0 check 4 lines after assert(long_ref==0).


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14400 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent d63e1f16
......@@ -2956,7 +2956,7 @@ static int decode_ref_pic_list_reordering(H264Context *h){
if(ref->data[0] != NULL &&
ref->frame_num == frame_num &&
(ref->reference & pic_structure) &&
ref->long_ref == 0) // ignore non-existing pictures by testing data[0] pointer
) // ignore non-existing pictures by testing data[0] pointer
break;
}
if(i>=0)
......
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