diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-12-11 16:33:26 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-12-11 16:33:26 +0100 |
commit | 572965c9a6b8173d918dea392aadfee1d44d7f47 (patch) | |
tree | 51bd472ab1ae89bfeddff355f140e87df94412cf /libavformat/hdsenc.c | |
parent | 95d2fc6a76f3e0a98329f1ca70f98e7c085f0abf (diff) | |
download | ffmpeg-572965c9a6b8173d918dea392aadfee1d44d7f47.tar.gz |
avformat/hdsenc: fix unintentional integer overflow in hds_write_packet()
Fixes CID1135762
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/hdsenc.c')
-rw-r--r-- | libavformat/hdsenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/hdsenc.c b/libavformat/hdsenc.c index c9b7bcdf98..7569b8f39c 100644 --- a/libavformat/hdsenc.c +++ b/libavformat/hdsenc.c @@ -518,7 +518,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) |