1
0
mirror of https://github.com/libretro/RetroArch synced 2025-04-01 22:20:31 +00:00

Fix Android build.

This commit is contained in:
Themaister 2014-05-28 10:40:24 +02:00
parent 0c83bf7d0b
commit 244b072ab8

@ -185,7 +185,7 @@ static void generate_response(fft_complex_t *response,
// Modified Bessel function of first order. // Modified Bessel function of first order.
// Check Wiki for mathematical definition ... // Check Wiki for mathematical definition ...
static inline double besseli0(double x) static inline double kaiser_besseli0(double x)
{ {
unsigned i; unsigned i;
double sum = 0.0; double sum = 0.0;
@ -213,7 +213,7 @@ static inline double besseli0(double x)
static inline double kaiser_window(double index, double beta) static inline double kaiser_window(double index, double beta)
{ {
return besseli0(beta * sqrt(1 - index * index)); return kaiser_besseli0(beta * sqrt(1 - index * index));
} }
static void create_filter(struct eq_data *eq, unsigned size_log2, static void create_filter(struct eq_data *eq, unsigned size_log2,