提交 8e05f069 编写于 作者: M Måns Rullgård

Define missing llrint() as macro instead of inline function

This fixes building on some broken systems.

Originally committed as revision 21735 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 645d2652
......@@ -225,10 +225,8 @@ static inline av_const unsigned int ff_sqrt(unsigned int a)
#endif /* HAVE_EXP2F */
#if !HAVE_LLRINT
static av_always_inline av_const long long llrint(double x)
{
return rint(x);
}
#undef llrint
#define llrint(x) rint(x)
#endif /* HAVE_LLRINT */
#if !HAVE_LOG2
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册