Commit 7010aba7 authored by michael's avatar michael

Merge (IS_SKIP(mb_type) || IS_DIRECT(mb_type)


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@21812 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 247de20c
...@@ -1014,7 +1014,7 @@ static void fill_decode_caches(H264Context *h, int mb_type){ ...@@ -1014,7 +1014,7 @@ static void fill_decode_caches(H264Context *h, int mb_type){
h->ref_cache[list][scan8[0] + 4 - 1*8]= topright_type ? LIST_NOT_USED : PART_NOT_AVAILABLE; h->ref_cache[list][scan8[0] + 4 - 1*8]= topright_type ? LIST_NOT_USED : PART_NOT_AVAILABLE;
} }
if((IS_SKIP(mb_type) || IS_DIRECT(mb_type)) && !FRAME_MBAFF) if((mb_type&(MB_TYPE_SKIP|MB_TYPE_DIRECT2)) && !FRAME_MBAFF)
continue; continue;
if(!(mb_type&(MB_TYPE_SKIP|MB_TYPE_DIRECT2))) { if(!(mb_type&(MB_TYPE_SKIP|MB_TYPE_DIRECT2))) {
......
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