From: Michael Niedermayer Date: Sun, 24 May 2015 10:38:54 +0000 (+0200) Subject: avformat/swfenc: Remove another unneeded float computation X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=28134d6a0e1462c7bc6807284738ed552ef6d2a5;p=ffmpeg avformat/swfenc: Remove another unneeded float computation fewer chances for rounding differences between platforms is better Signed-off-by: Michael Niedermayer --- diff --git a/libavformat/swfenc.c b/libavformat/swfenc.c index 4580651e753..56d98790177 100644 --- a/libavformat/swfenc.c +++ b/libavformat/swfenc.c @@ -236,7 +236,7 @@ static int swf_write_header(AVFormatContext *s) } if (!swf->audio_enc) - swf->samples_per_frame = (44100.0 * rate_base) / rate; + swf->samples_per_frame = (44100LL * rate_base) / rate; else swf->samples_per_frame = (swf->audio_enc->sample_rate * rate_base) / rate;