comparison h264.c @ 11011:aa5bcf07731a libavcodec

100l typo fix, mixed up +-1 forcing the loop filter skip to never skip.
author michael
date Tue, 26 Jan 2010 13:30:33 +0000
parents 72c026446d67
children b37a53d101c3
comparison
equal deleted inserted replaced
11010:cf9dd5b2cc30 11011:aa5bcf07731a
2199 } else { 2199 } else {
2200 linesize = h->mb_linesize = s->linesize; 2200 linesize = h->mb_linesize = s->linesize;
2201 uvlinesize = h->mb_uvlinesize = s->uvlinesize; 2201 uvlinesize = h->mb_uvlinesize = s->uvlinesize;
2202 } 2202 }
2203 backup_mb_border(h, dest_y, dest_cb, dest_cr, linesize, uvlinesize, 0); 2203 backup_mb_border(h, dest_y, dest_cb, dest_cr, linesize, uvlinesize, 0);
2204 if(fill_filter_caches(h, mb_type) < 0) 2204 if(fill_filter_caches(h, mb_type))
2205 continue; 2205 continue;
2206 h->chroma_qp[0] = get_chroma_qp(h, 0, s->current_picture.qscale_table[mb_xy]); 2206 h->chroma_qp[0] = get_chroma_qp(h, 0, s->current_picture.qscale_table[mb_xy]);
2207 h->chroma_qp[1] = get_chroma_qp(h, 1, s->current_picture.qscale_table[mb_xy]); 2207 h->chroma_qp[1] = get_chroma_qp(h, 1, s->current_picture.qscale_table[mb_xy]);
2208 2208
2209 if (FRAME_MBAFF) { 2209 if (FRAME_MBAFF) {