From 852d9f5576765e56a8e2f5cc1c4d617c296370a2 Mon Sep 17 00:00:00 2001 From: jbrjake Date: Mon, 2 Jun 2008 15:50:34 +0000 Subject: [PATCH] Use index+1 for numbering interlaced previews, so realityking doesn't get confused. git-svn-id: svn://localhost/HandBrake/trunk@1487 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- libhb/scan.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libhb/scan.c b/libhb/scan.c index 6834d461..2a8d4437 100644 --- a/libhb/scan.c +++ b/libhb/scan.c @@ -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++; } -- 2.11.0