summaryrefslogtreecommitdiff
path: root/libavformat/smoothstreamingenc.c
diff options
context:
space:
mode:
authorVittorio Giovara <vittorio.giovara@gmail.com>2014-10-20 12:56:40 +0100
committerVittorio Giovara <vittorio.giovara@gmail.com>2014-10-21 14:37:48 +0100
commite73d26bbd65f1ac5fc73ef3fd24cab1bed8ba2e2 (patch)
tree87334226eb510101f6262887d9260f163e28786a /libavformat/smoothstreamingenc.c
parent04d8af5f17961b9b7076b8c974e360feb08787c2 (diff)
smoothstreamingenc: explict cast to avoid overflow
CC: libav-stable@libav.org Bug-Id: CID 732248
Diffstat (limited to 'libavformat/smoothstreamingenc.c')
-rw-r--r--libavformat/smoothstreamingenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/smoothstreamingenc.c b/libavformat/smoothstreamingenc.c
index a6d0a36c2e..e3e4abba46 100644
--- a/libavformat/smoothstreamingenc.c
+++ b/libavformat/smoothstreamingenc.c
@@ -576,7 +576,7 @@ static int ism_write_packet(AVFormatContext *s, AVPacket *pkt)
SmoothStreamingContext *c = s->priv_data;
AVStream *st = s->streams[pkt->stream_index];
OutputStream *os = &c->streams[pkt->stream_index];
- int64_t end_dts = (c->nb_fragments + 1) * c->min_frag_duration;
+ int64_t end_dts = (c->nb_fragments + 1) * (int64_t) c->min_frag_duration;
int ret;
if (st->first_dts == AV_NOPTS_VALUE)