Commit 8c3fd0e7 authored by mru's avatar mru

Workaround for missing llrintf()

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@22954 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent d5e541f7
......@@ -1052,6 +1052,7 @@ HAVE_LIST="
libdc1394_1
libdc1394_2
llrint
llrintf
local_aligned_16
local_aligned_8
log2
......@@ -2585,6 +2586,7 @@ check_lib va/va.h vaInitialize -lva
check_mathfunc exp2
check_mathfunc exp2f
check_mathfunc llrint
check_mathfunc llrintf
check_mathfunc log2
check_mathfunc log2f
check_mathfunc lrint
......
......@@ -26,6 +26,7 @@
*/
#include "libavutil/avstring.h"
#include "libavutil/libm.h"
#include "avcodec.h"
#include "audioconvert.h"
......
......@@ -43,6 +43,11 @@
#define llrint(x) ((long long)rint(x))
#endif /* HAVE_LLRINT */
#if !HAVE_LLRINTF
#undef llrintf
#define llrintf(x) ((long long)rint(x))
#endif /* HAVE_LLRINT */
#if !HAVE_LOG2
#undef log2
#define log2(x) (log(x) * 1.44269504088896340736)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment