# HG changeset patch # User michael # Date 1264512633 0 # Node ID aa5bcf07731ad2cef0b23c9d7bcec62733b16990 # Parent cf9dd5b2cc30561d7c5a02a1d6bbea2a74d48d70 100l typo fix, mixed up +-1 forcing the loop filter skip to never skip. diff -r cf9dd5b2cc30 -r aa5bcf07731a h264.c --- a/h264.c Tue Jan 26 13:28:55 2010 +0000 +++ b/h264.c Tue Jan 26 13:30:33 2010 +0000 @@ -2201,7 +2201,7 @@ 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]);