OSDN Git Service

Use index+1 for numbering interlaced previews, so realityking doesn't get confused.
authorjbrjake <jbrjake@b64f7644-9d1e-0410-96f1-a4d463321fa5>
Mon, 2 Jun 2008 15:50:34 +0000 (15:50 +0000)
committerjbrjake <jbrjake@b64f7644-9d1e-0410-96f1-a4d463321fa5>
Mon, 2 Jun 2008 15:50:34 +0000 (15:50 +0000)
git-svn-id: svn://localhost/HandBrake/trunk@1487 b64f7644-9d1e-0410-96f1-a4d463321fa5

libhb/scan.c

index 6834d46..2a8d443 100644 (file)
@@ -427,7 +427,7 @@ static int DecodePreviews( hb_scan_t * data, hb_title_t * title )
         /* Check preview for interlacing artifacts */
         if( hb_detect_comb( vid_buf, title->width, title->height, 10, 30, 9, 10, 30, 9 ) )
         {
-            hb_log("Interlacing detected in preview frame %i", i);
+            hb_log("Interlacing detected in preview frame %i", i+1);
             interlaced_preview_count++;
         }