Commit 28134d6a authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/swfenc: Remove another unneeded float computation

fewer chances for rounding differences between platforms is better
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 5d4ff4a3
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment