# HG changeset patch # User michael # Date 1264903526 0 # Node ID 86ec27e828b5886cf0a99175fc1352652835cd8b # Parent 8327c5b4df9b428f8d5743e4f9e347cc2cef0389 Get rid of a check in one direction that cant be true in it in that part of the code. No meassureable speed change. diff -r 8327c5b4df9b -r 86ec27e828b5 h264_loopfilter.c --- 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; }