From 244b072ab8d67604a8a2f1671dd72984ef2ba565 Mon Sep 17 00:00:00 2001 From: Themaister Date: Wed, 28 May 2014 10:40:24 +0200 Subject: [PATCH] Fix Android build. --- audio/filters/eq.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/audio/filters/eq.c b/audio/filters/eq.c index 04c050f03e..0b4a5d24f7 100644 --- a/audio/filters/eq.c +++ b/audio/filters/eq.c @@ -185,7 +185,7 @@ static void generate_response(fft_complex_t *response, // Modified Bessel function of first order. // Check Wiki for mathematical definition ... -static inline double besseli0(double x) +static inline double kaiser_besseli0(double x) { unsigned i; double sum = 0.0; @@ -213,7 +213,7 @@ static inline double besseli0(double x) 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,