diff options
author | John Stebbins <[email protected]> | 2016-11-11 08:03:48 -0800 |
---|---|---|
committer | John Stebbins <[email protected]> | 2016-11-11 08:04:39 -0800 |
commit | d3a87d0633acb48bdd6a4b7709678459068332c1 (patch) | |
tree | d3cbc9382d3e1caf0148ac710eb36973d4f90f2a /libhb | |
parent | 99f7ee176393bb9c178af40ede5042daa2eddb16 (diff) |
fix logging of of PtoP frame range in job
Diffstat (limited to 'libhb')
-rw-r--r-- | libhb/work.c | 5 |
1 files 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 { |