Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Marc Valin <jmvalin@amazon.com>2023-10-15 09:37:54 +0300
committerJean-Marc Valin <jmvalin@amazon.com>2023-10-15 09:54:55 +0300
commit5c24975c3a1e46439a37c1a8b16c10515c85d1da (patch)
treef9e38196f45a7910d951ebee2ae69eb4eebdd8d6 /configure.ac
parent98726c4ca61ddfb691e7fc2dff26d9e51e7fffaa (diff)
Rename NEURAL_PLC to ENABLE_DEEP_PLC
Signed-off-by: Jean-Marc Valin <jmvalin@amazon.com>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac10
1 files changed, 5 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac
index 2bf4fca1..ee5fe19e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -170,12 +170,12 @@ AS_IF([test "$enable_neural_fec" = "yes"],[
AC_DEFINE([ENABLE_NEURAL_FEC], [1], [Neural FEC])
])
-AC_ARG_ENABLE([neural-plc],
- [AS_HELP_STRING([--enable-neural-plc], [Use neural PLC for SILK])],,
- [enable_neural_plc=yes])
+AC_ARG_ENABLE([deep-plc],
+ [AS_HELP_STRING([--enable-deep-plc], [Use deep PLC for SILK])],,
+ [enable_deep_plc=yes])
-AS_IF([test "$enable_neural_plc" = "yes"],[
- AC_DEFINE([NEURAL_PLC], [1], [Neural PLC])
+AS_IF([test "$enable_deep_plc" = "yes"],[
+ AC_DEFINE([ENABLE_DEEP_PLC], [1], [Deep PLC])
])
has_float_approx=no