From aaa995d7f29cba39b1fe05b6f0a807bfc7a09f43 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Tue, 26 Jan 2010 13:30:33 +0000 Subject: [PATCH] 100l typo fix, mixed up +-1 forcing the loop filter skip to never skip. Originally committed as revision 21455 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/h264.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/h264.c b/libavcodec/h264.c index 2de6f6ccc4..e4a47cf0d6 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -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]);