summaryrefslogtreecommitdiffstats
path: root/libhb/stream.c
diff options
context:
space:
mode:
authorJohn Stebbins <[email protected]>2015-12-26 17:45:37 -0700
committerJohn Stebbins <[email protected]>2015-12-26 17:46:15 -0700
commit4e396c75f8e310a90c86d7f540d33261e70cb7c1 (patch)
tree84d9184a55d9b835dda3c46dfe80cd3102f604db /libhb/stream.c
parent62fba0145cf1e1f4167ab713632c85815911cb59 (diff)
libhb: use LL for int64 constants to make mingw happy
Diffstat (limited to 'libhb/stream.c')
-rw-r--r--libhb/stream.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/stream.c b/libhb/stream.c
index 57fd74f94..f076541d7 100644
--- a/libhb/stream.c
+++ b/libhb/stream.c
@@ -5735,7 +5735,7 @@ hb_buffer_t * hb_ffmpeg_read( hb_stream_t *stream )
// timebase for the stream to HB's 90kHz timebase.
AVStream *s = stream->ffmpeg_ic->streams[stream->ffmpeg_pkt->stream_index];
double tsconv = (double)90000. * s->time_base.num / s->time_base.den;
- int64_t offset = 90000L * ffmpeg_initial_timestamp(stream) / AV_TIME_BASE;
+ int64_t offset = 90000LL * ffmpeg_initial_timestamp(stream) / AV_TIME_BASE;
buf->s.start = av_to_hb_pts(stream->ffmpeg_pkt->pts, tsconv, offset);
buf->s.renderOffset = av_to_hb_pts(stream->ffmpeg_pkt->dts, tsconv, offset);