Commit 63bd2987 authored by michael's avatar michael

100l typo fix, mixed up +-1 forcing the loop filter skip to never skip.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@21455 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent da05f56f
......@@ -2201,7 +2201,7 @@ static void loop_filter(H264Context *h){
uvlinesize = h->mb_uvlinesize = s->uvlinesize;
}
backup_mb_border(h, dest_y, dest_cb, dest_cr, linesize, uvlinesize, 0);
if(fill_filter_caches(h, mb_type) < 0)
if(fill_filter_caches(h, mb_type))
continue;
h->chroma_qp[0] = get_chroma_qp(h, 0, s->current_picture.qscale_table[mb_xy]);
h->chroma_qp[1] = get_chroma_qp(h, 1, s->current_picture.qscale_table[mb_xy]);
......
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