diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-09-19 18:53:31 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-09-19 18:53:31 +0000 |
commit | a85d0c84a4ab8ced8f977c9c63d7df0cb188ac4f (patch) | |
tree | 039d2ab3641531b5cb33436fdbcd0cf00b5efadb /libavcodec/h264.c | |
parent | 6a855aae9482a0ce95cb9c428ed39b8af164f6af (diff) | |
download | ffmpeg-a85d0c84a4ab8ced8f977c9c63d7df0cb188ac4f.tar.gz |
Remove fixme that is based on the assumption of !direct_8x8_inference && MBAFF.
Originally committed as revision 15370 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r-- | libavcodec/h264.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c index e2937d6ad3..d701f05f97 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -2452,7 +2452,6 @@ static av_always_inline void hl_decode_mb_internal(H264Context *h, int simple){ fill_rectangle(ref, 4, 4, 8, (16+*ref)^(s->mb_y&1), 1); }else{ for(i=0; i<16; i+=4){ - //FIXME can refs be smaller than 8x8 when !direct_8x8_inference ? int ref = h->ref_cache[list][scan8[i]]; if(ref >= 0) fill_rectangle(&h->ref_cache[list][scan8[i]], 2, 2, 8, (16+ref)^(s->mb_y&1), 1); |