[FFmpeg-cvslog] r21686 - trunk/libavcodec/h264.h
michael
subversion
Mon Feb 8 05:24:50 CET 2010
Author: michael
Date: Mon Feb 8 05:24:50 2010
New Revision: 21686
Log:
Remove an apparently unneeded && !FRAME_MBAFF.
This should speed the affected cases (MBAFF temporal direct MBs) up.
Modified:
trunk/libavcodec/h264.h
Modified: trunk/libavcodec/h264.h
==============================================================================
--- trunk/libavcodec/h264.h Mon Feb 8 04:22:17 2010 (r21685)
+++ trunk/libavcodec/h264.h Mon Feb 8 05:24:50 2010 (r21686)
@@ -990,7 +990,7 @@ static void fill_decode_caches(H264Conte
}
}
- 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)){
More information about the ffmpeg-cvslog
mailing list