Mercurial > libavcodec.hg
changeset 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 | cf9dd5b2cc30 |
children | b2fd83b26dd9 |
files | h264.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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]);