mirror of https://git.ffmpeg.org/ffmpeg.git
smoothstreamingenc: fix integer overflow
Fixes CID732248 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
224afddc7c
commit
b399816d9c
|
@ -559,7 +559,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 + 1LL) * c->min_frag_duration;
|
||||
int ret;
|
||||
|
||||
if (st->first_dts == AV_NOPTS_VALUE)
|
||||
|
|
Loading…
Reference in New Issue