From d3a87d0633acb48bdd6a4b7709678459068332c1 Mon Sep 17 00:00:00 2001 From: John Stebbins Date: Fri, 11 Nov 2016 08:03:48 -0800 Subject: fix logging of of PtoP frame range in job --- libhb/work.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/libhb/work.c b/libhb/work.c index a2290cc8b..6b2452d19 100644 --- a/libhb/work.c +++ b/libhb/work.c @@ -313,8 +313,9 @@ void hb_display_job_info(hb_job_t *job) } else if( job->frame_to_start || job->frame_to_stop ) { - hb_log( " + title %d, frames %d to %d", title->index, - job->frame_to_start, job->frame_to_start + job->frame_to_stop ); + hb_log(" + title %d, frames %d to %d", title->index, + job->frame_to_start, job->frame_to_start + + job->frame_to_stop - 1); } else { -- cgit v1.2.3