We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 818b4df + d5b4f57 commit 64d9594Copy full SHA for 64d9594
2 files changed
configure.ac
@@ -137,6 +137,7 @@ case "$with_arch" in
137
138
ARCH="host"
139
AC_SUBST(ARCH)
140
+ AC_DEFINE([CONFIG_HOST], [1], [Configure for Host])
141
;;
142
*)
143
if test "$have_rimage" = "no" && test "$have_doc" = "no" ; then
src/audio/src_config.h
@@ -66,7 +66,11 @@
66
#endif
67
#else
68
/* GCC */
69
+#if defined(CONFIG_HOST)
70
+#define SRC_SHORT 0 /* Use high quality 32 bit filter coefficients */
71
+#else
72
#define SRC_SHORT 1 /* Use 16 bit filter coefficients for speed */
73
+#endif
74
#define SRC_GENERIC 1
75
#define SRC_HIFIEP 0
76
#define SRC_HIFI3 0
0 commit comments