Commit b7ab5653 authored by michael's avatar michael

Remove an apparently unneeded && !FRAME_MBAFF.

This should speed the affected cases (MBAFF temporal direct MBs) up.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@21686 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 211ff5d3
......@@ -990,7 +990,7 @@ static void fill_decode_caches(H264Context *h, int mb_type){
}
}
if((IS_DIRECT(mb_type) && !h->direct_spatial_mv_pred) && !FRAME_MBAFF)
if((IS_DIRECT(mb_type) && !h->direct_spatial_mv_pred))
continue;
if(USES_LIST(topleft_type, list)){
......
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