[FFmpeg-cvslog] r21566 - trunk/libavcodec/h264_loopfilter.c
michael
subversion
Sun Jan 31 03:05:26 CET 2010
Author: michael
Date: Sun Jan 31 03:05:26 2010
New Revision: 21566
Log:
Get rid of a check in one direction that cant be true in it in that part
of the code.
No meassureable speed change.
Modified:
trunk/libavcodec/h264_loopfilter.c
Modified: trunk/libavcodec/h264_loopfilter.c
==============================================================================
--- trunk/libavcodec/h264_loopfilter.c Sun Jan 31 01:20:30 2010 (r21565)
+++ trunk/libavcodec/h264_loopfilter.c Sun Jan 31 03:05:26 2010 (r21566)
@@ -510,7 +510,7 @@ static av_always_inline void filter_mb_d
int i, l;
int mv_done;
- if( FRAME_MBAFF && IS_INTERLACED(mb_type ^ mbm_type)) { //FIXME not posible left
+ if( dir && FRAME_MBAFF && IS_INTERLACED(mb_type ^ mbm_type)) {
*(uint64_t*)bS= 0x0001000100010001ULL;
mv_done = 1;
}
More information about the ffmpeg-cvslog
mailing list