Mercurial > libavcodec.hg
changeset 11297:b5836ef8e74e libavcodec
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.
author | michael |
---|---|
date | Fri, 26 Feb 2010 02:54:03 +0000 |
parents | 4709312b48d5 |
children | b79f22337b6f |
files | h264.h |
diffstat | 1 files changed, 0 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- 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]]);