--- a/ebml.c 2013-07-04 21:01:44.000000000 +0700 +++ a/ebml.c 2014-10-11 17:32:24.000000000 +0700 @@ -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: