Displaying 3 results from an estimated 3 matches for "op_disable_float_api".
2012 Sep 25
0
[libopusfile PATCH] build: implement autotools build system for libopusfile. (v3)
...nable-fixed-point], [Enable fixed-point calculation]),,
+ enable_fixed_point=no)
+AC_ARG_ENABLE([float],
+ AS_HELP_STRING([--disable-float], [Disable floating-point API]),,
+ enable_float=yes)
+
+AS_IF([test "x$enable_float" = "xno"],
+ [enable_fixed_point=yes
+ AC_DEFINE([OP_DISABLE_FLOAT_API], [1], [Disable floating-point API])
+ ],
+ [dnl This only has to be tested for if float API is enabled
+ AC_SEARCH_LIBS([lrintf], [m], [
+ AC_DEFINE([OP_HAVE_LRINTF], [1], [Enable use of lrintf function])
+ ])
+])
+
+AS_IF([test "x$enable_fixed_point" = "xyes"], [
+...
2012 Sep 25
3
[libopusfile PATCH] build: implement autotools build system for libopusfile. (v2)
...nable-fixed-point], [Enable fixed-point calculation]),,
+ enable_fixed_point=no)
+AC_ARG_ENABLE([float],
+ AS_HELP_STRING([--disable-float], [Disable floating-point API]),,
+ enable_float=yes)
+
+AS_IF([test "x$enable_float" = "xno"],
+ [enable_fixed_point=yes
+ AC_DEFINE([OP_DISABLE_FLOAT_API], [1], [Disable floating-point API])
+ ],
+ [dnl This only has to be tested for if float API is enabled
+ AC_SEARCH_LIBS([lrintf], [m], [
+ AC_DEFINE([OP_HAVE_LRINTF], [1], [Enable use of lrintf function])
+ ])
+])
+
+AS_IF([test "x$enable_fixed_point" = "xyes"], [
+...
2012 Sep 29
2
[libopusfile PATCH] build: implement autotools build system for libopusfile. (v4)
...able-fixed-point], [Enable fixed-point
calculation]),,
+ enable_fixed_point=no)
+AC_ARG_ENABLE([float],
+ AS_HELP_STRING([--disable-float], [Disable floating-point API]),,
+ enable_float=yes)
+
+AS_IF([test "x$enable_float" = "xno"],
+ [enable_fixed_point=yes
+ AC_DEFINE([OP_DISABLE_FLOAT_API], [1], [Disable floating-point API])
+ ]
+)
+
+AS_IF([test "x$enable_fixed_point" = "xyes"],
+ [AC_DEFINE([OP_FIXED_POINT], [1], [Enable fixed-point calculation])],
+ [dnl This only has to be tested for if float->fixed conversions are
required
+ AC_SEARCH_LIBS([lrintf],...