1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From: Sebastian Ramacher <sramacher@debian.org>
Date: Sat, 20 Sep 2025 12:08:22 +0200
Subject: Fix function prototype
---
src/lib/l3mdct.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/lib/l3mdct.h b/src/lib/l3mdct.h
index 1288259..b374fd4 100644
--- a/src/lib/l3mdct.h
+++ b/src/lib/l3mdct.h
@@ -1,7 +1,7 @@
#ifndef shine_MDCT_H
#define shine_MDCT_H
-void shine_mdct_initialise();
+void shine_mdct_initialise(shine_global_config *config);
void shine_mdct_sub(shine_global_config *config, int stride);
#endif
|