Commit 2cf24f98 authored by michael's avatar michael

Another 3 useless zeroing instructions.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@22162 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 43825829
...@@ -1077,9 +1077,6 @@ static void fill_decode_caches(H264Context *h, int mb_type){ ...@@ -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 + 2*8]);
AV_ZERO16(h->mvd_cache [list][scan8[0] - 1 + 3*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[4 ]]);
AV_ZERO16(h->mvd_cache [list][scan8[12]]); AV_ZERO16(h->mvd_cache [list][scan8[12]]);
if(h->slice_type_nos == FF_B_TYPE){ if(h->slice_type_nos == FF_B_TYPE){
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment