diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2010-01-26 13:30:33 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2010-01-26 13:30:33 +0000 |
commit | aaa995d7f29cba39b1fe05b6f0a807bfc7a09f43 (patch) | |
tree | 55957eb15a68e15572b709aef7a4bd27c27e2416 /libavcodec/h264.c | |
parent | 66472bcde033128f410768851932c3071297a9d3 (diff) | |
download | ffmpeg-aaa995d7f29cba39b1fe05b6f0a807bfc7a09f43.tar.gz |
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
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r-- | libavcodec/h264.c | 2 |
1 files changed, 1 insertions, 1 deletions
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]); |