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 10:43:42 +0300
committerJean-Marc Valin <jmvalin@amazon.com>2023-10-15 10:43:42 +0300
commitda2121abfff159e69fb0579aa46dce3cae8e5e98 (patch)
tree0662540031d1ef820fc94f0f49011c73e9f04522
parent6ea9312a93baa663a4695ce89d7d0691a3abb2ce (diff)
Default Deep PLC/DRED to off
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 3bb7ed59..d6370a58 100644
--- a/configure.ac
+++ b/configure.ac
@@ -164,7 +164,7 @@ AM_CONDITIONAL([CUSTOM_MODES], [test "$enable_custom_modes" = "yes"])
AC_ARG_ENABLE([dred],
[AS_HELP_STRING([--enable-dred], [Use Deep REDundancy (DRED)])],,
- [enable_dred=yes])
+ [enable_dred=no])
AS_IF([test "$enable_dred" = "yes"],[
AC_DEFINE([ENABLE_DRED], [1], [DRED])
@@ -173,7 +173,7 @@ AM_CONDITIONAL([ENABLE_DRED], [test "$enable_dred" = "yes"])
AC_ARG_ENABLE([deep-plc],
[AS_HELP_STRING([--enable-deep-plc], [Use deep PLC for SILK])],,
- [enable_deep_plc=yes])
+ [enable_deep_plc=no])
AS_IF([test "$enable_deep_plc" = "yes"],[
AC_DEFINE([ENABLE_DEEP_PLC], [1], [Deep PLC])