shithub: opus

Download patch

ref: da2121abfff159e69fb0579aa46dce3cae8e5e98
parent: 6ea9312a93baa663a4695ce89d7d0691a3abb2ce
author: Jean-Marc Valin <jmvalin@amazon.com>
date: Sat Oct 14 23:43:42 EDT 2023

Default Deep PLC/DRED to off

--- a/configure.ac
+++ b/configure.ac
@@ -164,7 +164,7 @@
 
 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 @@
 
 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])
--