diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2010-03-03 02:20:48 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2010-03-03 02:20:48 +0000 |
commit | f57880d2445ef5ba39252d663e200b691dbe064f (patch) | |
tree | 208346000ff87d570c3986d693c1e8b5cc360ed7 /libavcodec/h264.h | |
parent | 16b802fe934d5af0d2d388bcf0796dded80a00ed (diff) | |
download | ffmpeg-f57880d2445ef5ba39252d663e200b691dbe064f.tar.gz |
Another 3 useless zeroing instructions.
Originally committed as revision 22162 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264.h')
-rw-r--r-- | libavcodec/h264.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h index 8383c20b1f..2144e942d5 100644 --- a/libavcodec/h264.h +++ b/libavcodec/h264.h @@ -1077,9 +1077,6 @@ static void fill_decode_caches(H264Context *h, int mb_type){ AV_ZERO16(h->mvd_cache [list][scan8[0] - 1 + 2*8]); AV_ZERO16(h->mvd_cache [list][scan8[0] - 1 + 3*8]); } - AV_ZERO16(h->mvd_cache [list][scan8[5 ]+1]); - AV_ZERO16(h->mvd_cache [list][scan8[7 ]+1]); - AV_ZERO16(h->mvd_cache [list][scan8[13]+1]); //FIXME remove past 3 (init somewhere else) AV_ZERO16(h->mvd_cache [list][scan8[4 ]]); AV_ZERO16(h->mvd_cache [list][scan8[12]]); if(h->slice_type_nos == FF_B_TYPE){ |