--- /dev/null
+From 905d4367cf57860b7f86e2d2f6fed5529c94ee98 Mon Sep 17 00:00:00 2001
+Date: Tue, 25 Nov 2025 16:40:09 +0100
+Subject: [PATCH] fix mdct init declaration
+
+---
+ src/lib/l3mdct.h | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+--- a/src/lib/l3mdct.h
++++ b/src/lib/l3mdct.h
+@@ -1,7 +1,7 @@
+ #ifndef shine_MDCT_H\r
+ #define shine_MDCT_H\r
+ \r
+-void shine_mdct_initialise();\r
++void shine_mdct_initialise(shine_global_config *config);\r
+ void shine_mdct_sub(shine_global_config *config, int stride);\r
+ \r
+ #endif\r
+++ /dev/null
---- a/src/bin/wave.c
-+++ b/src/bin/wave.c
-@@ -168,7 +168,7 @@ unsigned char wave_open(const char *fnam
- }
-
- #ifdef SHINE_BIG_ENDIAN
--#if defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 2))
-+#if defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 8))
- #define bswap_16(x) __builtin_bswap16(x)
- #else
- #define bswap_16(x) ((((x) >> 8) & 0xff) | (((x) & 0xff) << 8))