Commit af963e84 authored by michael's avatar michael

Get rid of a check in one direction that cant be true in it in that part

of the code.
No meassureable speed change.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@21566 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 2881f3ae
......@@ -510,7 +510,7 @@ static av_always_inline void filter_mb_dir(H264Context *h, int mb_x, int mb_y, u
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;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment