diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2010-02-08 04:24:50 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2010-02-08 04:24:50 +0000 |
commit | 8a3b90686d451e9ed67794e14be42eba47a0b160 (patch) | |
tree | e6d709baef5a8097e34d045300b1f33477e868ae | |
parent | 542d4a756a260f86eedba1df225ed0b24ab55007 (diff) | |
download | ffmpeg-8a3b90686d451e9ed67794e14be42eba47a0b160.tar.gz |
Remove an apparently unneeded && !FRAME_MBAFF.
This should speed the affected cases (MBAFF temporal direct MBs) up.
Originally committed as revision 21686 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/h264.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h index f360c3cf15..d0f555313f 100644 --- a/libavcodec/h264.h +++ b/libavcodec/h264.h @@ -990,7 +990,7 @@ static void fill_decode_caches(H264Context *h, int mb_type){ } } - 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)){ |