diff options
author | jbrjake <[email protected]> | 2008-06-02 15:50:34 +0000 |
---|---|---|
committer | jbrjake <[email protected]> | 2008-06-02 15:50:34 +0000 |
commit | a7b844213c522cbde2fafde8ba295606ef37a1c6 (patch) | |
tree | f3ccea00ca49373e63d5cceadac8805d0e880932 /libhb/scan.c | |
parent | 953ff6bf57ef946e8d70c4b717ec53aa6885f371 (diff) |
Use index+1 for numbering interlaced previews, so realityking doesn't get confused.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1487 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/scan.c')
-rw-r--r-- | libhb/scan.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/scan.c b/libhb/scan.c index 6834d4614..2a8d4437d 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++; } |