summaryrefslogtreecommitdiff
path: root/plugins/supereq/Equ.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/supereq/Equ.cpp')
-rw-r--r--plugins/supereq/Equ.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/plugins/supereq/Equ.cpp b/plugins/supereq/Equ.cpp
index a3139d9d..0aff4f8a 100644
--- a/plugins/supereq/Equ.cpp
+++ b/plugins/supereq/Equ.cpp
@@ -24,8 +24,6 @@
#include "paramlist.hpp"
#include "Equ.h"
-#define USE_FFMPEG
-
int _Unwind_Resume_or_Rethrow;
int _Unwind_RaiseException;
int _Unwind_GetLanguageSpecificData;
@@ -39,8 +37,8 @@ int _Unwind_SetGR;
int _Unwind_GetIPInfo;
#ifdef USE_OOURA
-void rdft(int, int, REAL *, int *, REAL *);
-void rfft(int n,int isign,REAL x[])
+extern "C" void rdft(int, int, REAL *, int *, REAL *);
+void rfft(int n,int isign,REAL *x)
{
static int ipsize = 0,wsize=0;
static int *ip = NULL;
@@ -71,7 +69,7 @@ void rfft(int n,int isign,REAL x[])
rdft(n,isign,x,ip,w);
}
#elif defined(USE_FFMPEG) || defined(USE_SHIBATCH)
-extern "C" void rfft(int n,int isign,REAL x[]);
+extern "C" void rfft(int n,int isign,REAL *x);
#endif
#if defined(USE_SHIBATCH)