X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavformat%2Fircamdec.c;h=db09f606c6f7523c0ce7218ff56d9bd1809b17b6;hb=e625ae609206e0550ff733965c6f5447579320aa;hp=d376ffef63fe2d726ceed4aba5ab2917a5cb0165;hpb=44085b9951b06df1cab4105dcda004213988d84f;p=ffmpeg diff --git a/libavformat/ircamdec.c b/libavformat/ircamdec.c index d376ffef63f..db09f606c6f 100644 --- a/libavformat/ircamdec.c +++ b/libavformat/ircamdec.c @@ -26,7 +26,7 @@ #include "pcm.h" #include "ircam.h" -static int ircam_probe(AVProbeData *p) +static int ircam_probe(const AVProbeData *p) { if ((p->buf[0] == 0x64 && p->buf[1] == 0xA3 && p->buf[3] == 0x00 && p->buf[2] >= 1 && p->buf[2] <= 4) || @@ -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;