# HG changeset patch # User reimar # Date 1387306008 0 # Node ID e626f90df47e5b9648b3512f6c7341a5028b3d1f # Parent ead03d1b8ea2eff6075f6c0889c51633e598ff99 Switch from deprecated intfloat_readwrite.h to intfloat.h diff -r ead03d1b8ea2 -r e626f90df47e libmpdemux/ebml.c --- 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: