[FFmpeg-cvslog] r21455 - trunk/libavcodec/h264.c

michael subversion
Tue Jan 26 14:30:33 CET 2010


Author: michael
Date: Tue Jan 26 14:30:33 2010
New Revision: 21455

Log:
100l typo fix, mixed up +-1 forcing the loop filter skip to never skip.

Modified:
   trunk/libavcodec/h264.c

Modified: trunk/libavcodec/h264.c
==============================================================================
--- trunk/libavcodec/h264.c	Tue Jan 26 14:28:55 2010	(r21454)
+++ trunk/libavcodec/h264.c	Tue Jan 26 14:30:33 2010	(r21455)
@@ -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]);



More information about the ffmpeg-cvslog mailing list