[MPlayer-cvslog] r36549 - trunk/libmpdemux/ebml.c

reimar subversion at mplayerhq.hu
Tue Dec 17 19:46:48 CET 2013


Author: reimar
Date: Tue Dec 17 19:46:48 2013
New Revision: 36549

Log:
Switch from deprecated intfloat_readwrite.h to intfloat.h

Modified:
   trunk/libmpdemux/ebml.c

Modified: trunk/libmpdemux/ebml.c
==============================================================================
--- trunk/libmpdemux/ebml.c	Tue Dec 17 17:00:57 2013	(r36548)
+++ trunk/libmpdemux/ebml.c	Tue Dec 17 19:46:48 2013	(r36549)
@@ -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 @@ long double ebml_read_float(stream_t *s,
     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:


More information about the MPlayer-cvslog mailing list