summaryrefslogtreecommitdiffstats
path: root/mp3lib/dct64.c
diff options
context:
space:
mode:
Diffstat (limited to 'mp3lib/dct64.c')
-rw-r--r--mp3lib/dct64.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/mp3lib/dct64.c b/mp3lib/dct64.c
index 38852ed382..f7ba3ac003 100644
--- a/mp3lib/dct64.c
+++ b/mp3lib/dct64.c
@@ -316,3 +316,9 @@ static void dct64(real *a,real *b,real *c)
dct64_1(a,b,bufs,bufs+0x20,c);
}
+void mp3lib_dct64(real *a,real *b,real *c)
+{
+ real bufs[0x40];
+ dct64_1(a,b,bufs,bufs+0x20,c);
+}
+