# HG changeset patch # User michael # Date 1267152843 0 # Node ID b5836ef8e74e6610abad7e022cf6008629b9a579 # Parent 4709312b48d50ce746b5eed421b600b3f29292c2 Remove 3 mv_cache zeroing instructions that zeroed the right side. This seems unneeded as nothing seems to ever set it to non zero values. diff -r 4709312b48d5 -r b5836ef8e74e h264.h --- a/h264.h Fri Feb 26 01:38:12 2010 +0000 +++ b/h264.h Fri Feb 26 02:54:03 2010 +0000 @@ -1042,9 +1042,6 @@ h->ref_cache[list][scan8[13]+1] = //FIXME remove past 3 (init somewhere else) h->ref_cache[list][scan8[4 ]] = h->ref_cache[list][scan8[12]] = PART_NOT_AVAILABLE; - AV_ZERO32(h->mv_cache [list][scan8[5 ]+1]); - AV_ZERO32(h->mv_cache [list][scan8[7 ]+1]); - AV_ZERO32(h->mv_cache [list][scan8[13]+1]); //FIXME remove past 3 (init somewhere else) AV_ZERO32(h->mv_cache [list][scan8[4 ]]); AV_ZERO32(h->mv_cache [list][scan8[12]]);