diff h264_loopfilter.c @ 11064:86ec27e828b5 libavcodec

Get rid of a check in one direction that cant be true in it in that part of the code. No meassureable speed change.
author michael
date Sun, 31 Jan 2010 02:05:26 +0000
parents 40b84645b089
children 1b8e11679883
line wrap: on
line diff
--- a/h264_loopfilter.c	Sun Jan 31 00:20:30 2010 +0000
+++ b/h264_loopfilter.c	Sun Jan 31 02:05:26 2010 +0000
@@ -510,7 +510,7 @@
                 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;
                 }