summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2024-04-25 20:46:40 -0400
committerSolomon Peachy <pizza@shaftnet.org>2024-04-25 20:49:56 -0400
commit98971604c7798c1692aa540ac506d19af8866bd8 (patch)
tree7b1becb801119ebb2c7a9e2cb071e9f5709e2318
parentba4b41663caf90a00db66e5dc4c083d21a1dbbe9 (diff)
downloadrockbox-98971604c7798c1692aa540ac506d19af8866bd8.tar.gz
rockbox-98971604c7798c1692aa540ac506d19af8866bd8.zip
Correct one of the GCC14 warning workarounds
(Accidentally pushed an out-of-date commit) Change-Id: I53a85420349d6fc12831a481becc2dd1617a8ed9
-rw-r--r--lib/rbcodec/codecs/libopus/celt/celt_lpc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rbcodec/codecs/libopus/celt/celt_lpc.c b/lib/rbcodec/codecs/libopus/celt/celt_lpc.c
index e925966508..9fbef15f83 100644
--- a/lib/rbcodec/codecs/libopus/celt/celt_lpc.c
+++ b/lib/rbcodec/codecs/libopus/celt/celt_lpc.c
@@ -209,7 +209,7 @@ void celt_iir(const opus_val32 *_x,
209 209
210#if (__GNUC__ == 14) // XXX nuke later? 210#if (__GNUC__ == 14) // XXX nuke later?
211#pragma GCC diagnostic push 211#pragma GCC diagnostic push
212#pragma GCC diagnostic ignored "-Wstringop-overflow" 212#pragma GCC diagnostic ignored "-Wmaybe-uninitialized"
213#endif 213#endif
214int _celt_autocorr( 214int _celt_autocorr(
215 const opus_val16 *x, /* in: [0...n-1] samples x */ 215 const opus_val16 *x, /* in: [0...n-1] samples x */