shithub: opus

Download patch

ref: ca035ef1d23912ad8858bcc1833a4aad61db7853
parent: 6471f8013d49e086bf260afd573d4b2c7c7ca018
author: Jean-Marc Valin <jmvalin@amazon.com>
date: Mon Oct 16 12:57:21 EDT 2023

Force Deep PLC on when enabling DRED

--- a/configure.ac
+++ b/configure.ac
@@ -175,10 +175,10 @@
     [AS_HELP_STRING([--enable-deep-plc], [Use deep PLC for SILK])],,
     [enable_deep_plc=no])
 
-AS_IF([test "$enable_deep_plc" = "yes"],[
+AS_IF([test "$enable_deep_plc" = "yes" || test "$enable_dred" = "yes"],[
   AC_DEFINE([ENABLE_DEEP_PLC], [1], [Deep PLC])
 ])
-AM_CONDITIONAL([ENABLE_DEEP_PLC], [test "$enable_deep_plc" = "yes"])
+AM_CONDITIONAL([ENABLE_DEEP_PLC], [test "$enable_deep_plc" = "yes" || test "$enable_dred" = "yes"])
 
 has_float_approx=no
 #case "$host_cpu" in
--