]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/4xm.c
build: fix standalone compilation of OMA muxer
[ffmpeg] / libavformat / 4xm.c
index 6dc919e1bf76d9bc4a4dc788a98fec38730757e1..ccbe3add3f497f2efd89cb0e3e91a3afeb1405b6 100644 (file)
@@ -28,7 +28,7 @@
  */
 
 #include "libavutil/intreadwrite.h"
-#include "libavutil/intfloat_readwrite.h"
+#include "libavutil/intfloat.h"
 #include "avformat.h"
 #include "internal.h"
 
@@ -131,7 +131,7 @@ static int fourxm_read_header(AVFormatContext *s,
         size = AV_RL32(&header[i + 4]);
 
         if (fourcc_tag == std__TAG) {
-            fourxm->fps = av_int2flt(AV_RL32(&header[i + 12]));
+            fourxm->fps = av_int2float(AV_RL32(&header[i + 12]));
         } else if (fourcc_tag == vtrk_TAG) {
             /* check that there is enough data */
             if (size != vtrk_SIZE) {