changeset 36453:e626f90df47e

Switch from deprecated intfloat_readwrite.h to intfloat.h
author reimar
date Tue, 17 Dec 2013 18:46:48 +0000
parents ead03d1b8ea2
children 9a28d5c4320a
files libmpdemux/ebml.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/libmpdemux/ebml.c	Tue Dec 17 16:00:57 2013 +0000
+++ b/libmpdemux/ebml.c	Tue Dec 17 18:46:48 2013 +0000
@@ -28,7 +28,7 @@
 #include "ebml.h"
 #include "libavutil/common.h"
 #include "mpbswap.h"
-#include "libavutil/intfloat_readwrite.h"
+#include "libavutil/intfloat.h"
 
 
 #ifndef SIZE_MAX
@@ -185,11 +185,11 @@
     len = ebml_read_length(s, &l);
     switch (len) {
     case 4:
-        value = av_int2flt(stream_read_dword(s));
+        value = av_int2float(stream_read_dword(s));
         break;
 
     case 8:
-        value = av_int2dbl(stream_read_qword(s));
+        value = av_int2double(stream_read_qword(s));
         break;
 
     default: