[SCM] libav/experimental: 100l typo fix, mixed up +-1 forcing the loop filter skip to never skip.

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:58:40 UTC 2013


The following commit has been merged in the experimental branch:
commit aaa995d7f29cba39b1fe05b6f0a807bfc7a09f43
Author: Michael Niedermayer <michaelni at gmx.at>
Date:   Tue Jan 26 13:30:33 2010 +0000

    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

diff --git a/libavcodec/h264.c b/libavcodec/h264.c
index 2de6f6c..e4a47cf 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]);

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list