From 83d613bde7fbd6f5d5da82664b2bb826294caedc Mon Sep 17 00:00:00 2001 From: John Stebbins Date: Tue, 12 Mar 2019 11:29:24 -0600 Subject: [PATCH] sync: imporve accuracy of logged min/max fps --- libhb/sync.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.40.0