diff options
author | John Stebbins <[email protected]> | 2019-03-12 11:29:24 -0600 |
---|---|---|
committer | John Stebbins <[email protected]> | 2019-03-12 11:29:24 -0600 |
commit | 83d613bde7fbd6f5d5da82664b2bb826294caedc (patch) | |
tree | 67debb834d7554bac340dde208ac913a82c605d2 | |
parent | b2da61acec2b987a9f58559f8afef606ebda3ff5 (diff) |
sync: imporve accuracy of logged min/max fps
-rw-r--r-- | libhb/sync.c | 4 |
1 files 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; |