diff options
author | John Stebbins <[email protected]> | 2016-09-20 13:51:26 -0700 |
---|---|---|
committer | John Stebbins <[email protected]> | 2016-09-20 13:58:08 -0700 |
commit | 4916e2e73090718af63af97382e1cea9708161c8 (patch) | |
tree | 8cde19b75d936fd2aa38c3d3785ba54190270da4 | |
parent | 09f73f71e03cbdb7e0fd8764fdff771e022c9731 (diff) |
vfr: fix log messages
-rw-r--r-- | libhb/vfr.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libhb/vfr.c b/libhb/vfr.c index d097a7ab1..2de290bd6 100644 --- a/libhb/vfr.c +++ b/libhb/vfr.c @@ -420,7 +420,7 @@ static void hb_vfr_close( hb_filter_object_t * filter ) if ( pv->cfr ) { - hb_log("render: %d frames output, %d dropped and %d duped for CFR/PFR", + hb_log("vfr: %d frames output, %d dropped and %d duped for CFR/PFR", pv->count_frames, pv->drops, pv->dups ); } @@ -435,15 +435,15 @@ static void hb_vfr_close( hb_filter_object_t * filter ) interjob->total_time = pv->out_last_stop; } - hb_log("render: lost time: %"PRId64" (%i frames)", + hb_log("vfr: lost time: %"PRId64" (%i frames)", pv->total_lost_time, pv->dropped_frames); - hb_log("render: gained time: %"PRId64" (%i frames) (%"PRId64" not accounted for)", + hb_log("vfr: gained time: %"PRId64" (%i frames) (%"PRId64" not accounted for)", pv->total_gained_time, pv->extended_frames, pv->total_lost_time - pv->total_gained_time); if (pv->dropped_frames) { - hb_log("render: average dropped frame duration: %"PRId64, + hb_log("vfr: average dropped frame duration: %"PRId64, (pv->total_lost_time / pv->dropped_frames) ); } |