diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-11-29 00:19:24 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-11-29 00:19:24 +0000 |
commit | 68ca24e6db7b2a4439af091c5b253abccd5ca518 (patch) | |
tree | ba9d319ea637923dd566bb1bd75510587aa65d25 | |
parent | 8fc7c99369e223aa79cc4b5cfdde33d73f088922 (diff) | |
download | ffmpeg-68ca24e6db7b2a4439af091c5b253abccd5ca518.tar.gz |
intra16x16 fix
Originally committed as revision 2539 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/h264.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c index fe49c0fbe7..afd9302ce0 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -3565,7 +3565,7 @@ decode_intra_mb: } } }else{ - memset(&h->non_zero_count_cache[8], 0, 8*4); //FIXME stupid & slow + fill_rectangle(&h->non_zero_count_cache[scan8[0]], 4, 4, 8, 0, 1); } }else{ for(i8x8=0; i8x8<4; i8x8++){ |