]> git.sesse.net Git - ffmpeg/commitdiff
hdsenc: Avoid integer overflow
authorMichael Niedermayer <michaelni@gmx.at>
Wed, 11 Dec 2013 15:33:26 +0000 (16:33 +0100)
committerMartin Storsjö <martin@martin.st>
Sat, 14 Dec 2013 15:48:28 +0000 (17:48 +0200)
Also remove a silly leftover pair of parentheses.

Signed-off-by: Martin Storsjö <martin@martin.st>
libavformat/hdsenc.c

index 6d5b127a7c01acce9ccd71a2a0c87f7910b0e54d..ea6e77c041f2e0e35af4f919235207adf020e6d5 100644 (file)
@@ -509,7 +509,7 @@ static int hds_write_packet(AVFormatContext *s, AVPacket *pkt)
     HDSContext *c = s->priv_data;
     AVStream *st = s->streams[pkt->stream_index];
     OutputStream *os = &c->streams[s->streams[pkt->stream_index]->id];
-    int64_t end_dts = (os->fragment_index) * c->min_frag_duration;
+    int64_t end_dts = os->fragment_index * (int64_t) c->min_frag_duration;
     int ret;
 
     if (st->first_dts == AV_NOPTS_VALUE)