summaryrefslogtreecommitdiff
path: root/libavformat/ircamdec.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2021-02-16 23:35:11 +0100
committerPaul B Mahol <onemda@gmail.com>2021-02-16 23:45:01 +0100
commit8331eb058d884897aca2ef62ac9b98b536caec6e (patch)
tree95054a1e8fb6ec0d8900e1c741de22a8c23fd178 /libavformat/ircamdec.c
parentfbe9b0c8f3ee1ff1d36c6a6cd7fe6fc0c6a9e80d (diff)
avformat/ircamdec: use lrintf() for rounding
Diffstat (limited to 'libavformat/ircamdec.c')
-rw-r--r--libavformat/ircamdec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/ircamdec.c b/libavformat/ircamdec.c
index 17bfb4ed10..db09f606c6 100644
--- a/libavformat/ircamdec.c
+++ b/libavformat/ircamdec.c
@@ -66,12 +66,12 @@ static int ircam_read_header(AVFormatContext *s)
}
if (le == 1) {
- sample_rate = av_int2float(avio_rl32(s->pb));
+ sample_rate = lrintf(av_int2float(avio_rl32(s->pb)));
channels = avio_rl32(s->pb);
tag = avio_rl32(s->pb);
tags = ff_codec_ircam_le_tags;
} else if (le == 0) {
- sample_rate = av_int2float(avio_rb32(s->pb));
+ sample_rate = lrintf(av_int2float(avio_rb32(s->pb)));
channels = avio_rb32(s->pb);
tag = avio_rb32(s->pb);
tags = ff_codec_ircam_be_tags;