Commit b4384cd2 authored by michael's avatar michael

Do not execute the part of fill_caches() for the loopfilter that overwrites

reference indexes and motion vectors.
Fixes at least:
CVMAQP2_Sony_G


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14678 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 6496b025
...@@ -391,7 +391,7 @@ static void fill_caches(H264Context *h, int mb_type, int for_deblock){ ...@@ -391,7 +391,7 @@ static void fill_caches(H264Context *h, int mb_type, int for_deblock){
} }
} }
if((for_deblock || (IS_DIRECT(mb_type) && !h->direct_spatial_mv_pred)) && !FRAME_MBAFF) if(for_deblock || ((IS_DIRECT(mb_type) && !h->direct_spatial_mv_pred) && !FRAME_MBAFF))
continue; continue;
if(USES_LIST(topleft_type, list)){ if(USES_LIST(topleft_type, list)){
......
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