mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-25 04:09:57 +00:00
Remove another 2 incorrect checks.
These would ignore fields of different parity. Originally committed as revision 14404 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
79b5c77692
commit
d9022d38fb
@ -2954,8 +2954,7 @@ static int decode_ref_pic_list_reordering(H264Context *h){
|
||||
assert(ref->reference);
|
||||
assert(!ref->long_ref);
|
||||
if(
|
||||
ref->frame_num == frame_num &&
|
||||
(ref->reference & pic_structure)
|
||||
ref->frame_num == frame_num
|
||||
)
|
||||
break;
|
||||
}
|
||||
@ -2973,7 +2972,7 @@ static int decode_ref_pic_list_reordering(H264Context *h){
|
||||
}
|
||||
ref = h->long_ref[long_idx];
|
||||
assert(!(ref && !ref->reference));
|
||||
if(ref && (ref->reference & pic_structure)){
|
||||
if(ref){
|
||||
ref->pic_id= pic_id;
|
||||
assert(ref->long_ref);
|
||||
i=0;
|
||||
|
Loading…
Reference in New Issue
Block a user