From: John Stebbins Date: Tue, 12 Mar 2019 17:29:24 +0000 (-0600) Subject: sync: imporve accuracy of logged min/max fps X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=83d613bde7fbd6f5d5da82664b2bb826294caedc;p=handbrake sync: imporve accuracy of logged min/max fps --- diff --git a/libhb/sync.c b/libhb/sync.c index 17a0e73bd..4969b2268 100644 --- a/libhb/sync.c +++ b/libhb/sync.c @@ -93,8 +93,8 @@ typedef struct // frame statistics int64_t first_pts; - int64_t min_frame_duration; - int64_t max_frame_duration; + double min_frame_duration; + double max_frame_duration; int64_t current_duration; int frame_count;