Browse Source

Remove an apparently unneeded && !FRAME_MBAFF.

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

Originally committed as revision 21686 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Michael Niedermayer 16 years ago
parent
commit
8a3b90686d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/h264.h

+ 1
- 1
libavcodec/h264.h View File

@@ -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)){


Loading…
Cancel
Save