From 81254c13d9ae96f369fbb79506bcbee20a8f8659 Mon Sep 17 00:00:00 2001 From: aliaspider Date: Thu, 2 Oct 2014 20:54:46 +0100 Subject: [PATCH] (PSP) add new resampler parameters to resampler_CC_init. --- audio/resamplers/cc_resampler.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/audio/resamplers/cc_resampler.c b/audio/resamplers/cc_resampler.c index d8d7d55dea..b0628d3e89 100644 --- a/audio/resamplers/cc_resampler.c +++ b/audio/resamplers/cc_resampler.c @@ -188,8 +188,13 @@ static void resampler_CC_free(void *re_) (void)re_; } -static void *resampler_CC_init(double bandwidth_mod) +static void *resampler_CC_init(const struct resampler_config *config, + double bandwidth_mod, resampler_simd_mask_t mask) { + (void)mask; + (void)bandwidth_mod; + (void)config; + __asm__ ( ".set push\n" ".set noreorder\n"