diff --git a/libavformat/rmenc.c b/libavformat/rmenc.c index 73d175d6e7eb35af0c47c23c661eb737a7deeb8e..7e4345bac7d9aa34b309efbe0088bd6a131a8f7b 100644 --- a/libavformat/rmenc.c +++ b/libavformat/rmenc.c @@ -102,7 +102,7 @@ static int rv10_write_header(AVFormatContext *ctx, nb_packets += stream->nb_packets; packet_total_size += stream->packet_total_size; /* select maximum duration */ - v = (int) (1000.0 * (float)stream->total_frames / stream->frame_rate); + v = 1000LL * stream->total_frames / stream->frame_rate; if (v > duration) duration = v; }