Skip to content
Snippets Groups Projects
Commit e73d26bb authored by Vittorio Giovara's avatar Vittorio Giovara
Browse files

smoothstreamingenc: explict cast to avoid overflow

CC: libav-stable@libav.org
Bug-Id: CID 732248
parent 04d8af5f
No related branches found
No related tags found
No related merge requests found
...@@ -576,7 +576,7 @@ static int ism_write_packet(AVFormatContext *s, AVPacket *pkt) ...@@ -576,7 +576,7 @@ static int ism_write_packet(AVFormatContext *s, AVPacket *pkt)
SmoothStreamingContext *c = s->priv_data; SmoothStreamingContext *c = s->priv_data;
AVStream *st = s->streams[pkt->stream_index]; AVStream *st = s->streams[pkt->stream_index];
OutputStream *os = &c->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; int ret;
if (st->first_dts == AV_NOPTS_VALUE) if (st->first_dts == AV_NOPTS_VALUE)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment