diff options
Diffstat (limited to 'libhb/muxcommon.c')
-rw-r--r-- | libhb/muxcommon.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libhb/muxcommon.c b/libhb/muxcommon.c index da390c500..4c2c68009 100644 --- a/libhb/muxcommon.c +++ b/libhb/muxcommon.c @@ -355,8 +355,7 @@ finished: { /* Video */ hb_deep_log( 2, "mux: video bitrate error, %+lld bytes", - track->bytes - mux->pts * job->vbitrate * - 125 / 90000 ); + (int64_t)(track->bytes - mux->pts * job->vbitrate * 125 / 90000) ); } bytes_total += track->bytes; frames_total += track->frames; |