shithub: opus

Download patch

ref: d9df94947de8a754af8ab35b9ca1808d43a26f9e
parent: 10a8990bf2b0c7e22e186876f7622204bad14ed2
author: Alfred E. Heggestad <114750+alfredh@users.noreply.github.com>
date: Thu Sep 11 08:27:00 EDT 2025

celt: correct naming of LPC include guard

Signed-off-by: Jean-Marc Valin <jeanmarcv@google.com>

--- a/celt/celt_lpc.h
+++ b/celt/celt_lpc.h
@@ -25,8 +25,8 @@
    SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
 
-#ifndef PLC_H
-#define PLC_H
+#ifndef CELT_LPC_H
+#define CELT_LPC_H
 
 #include "arch.h"
 #include "cpu_support.h"
@@ -63,4 +63,4 @@
 int _celt_autocorr(const opus_val16 *x, opus_val32 *ac,
          const celt_coef *window, int overlap, int lag, int n, int arch);
 
-#endif /* PLC_H */
+#endif /* CELT_LPC_H */
--