diff options
author | John Stebbins <[email protected]> | 2015-12-26 17:45:37 -0700 |
---|---|---|
committer | John Stebbins <[email protected]> | 2015-12-26 17:46:15 -0700 |
commit | 4e396c75f8e310a90c86d7f540d33261e70cb7c1 (patch) | |
tree | 84d9184a55d9b835dda3c46dfe80cd3102f604db /libhb/work.c | |
parent | 62fba0145cf1e1f4167ab713632c85815911cb59 (diff) |
libhb: use LL for int64 constants to make mingw happy
Diffstat (limited to 'libhb/work.c')
-rw-r--r-- | libhb/work.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/work.c b/libhb/work.c index 7de0c0247..e2b3b095a 100644 --- a/libhb/work.c +++ b/libhb/work.c @@ -647,7 +647,7 @@ void correct_framerate( hb_interjob_t * interjob, hb_job_t * job ) // compute actual output vrate from first pass int64_t num, den; - num = interjob->out_frame_count * 90000L; + num = interjob->out_frame_count * 90000LL; den = interjob->total_time; hb_limit_rational64(&num, &den, num, den, INT_MAX); |