From c9c2035355b8e028d1b62992b277b0c376634cf3 Mon Sep 17 00:00:00 2001 From: Rhishikesh Agashe Date: Wed, 7 Oct 2015 13:55:12 -0400 Subject: Fixes compile problems for MIPS Brings MIPS in sync with the ARM/SSE optimizations that added "arch" parameters. Signed-off-by: Jean-Marc Valin --- silk/main.h | 19 ------------------- 1 file changed, 19 deletions(-) (limited to 'silk/main.h') diff --git a/silk/main.h b/silk/main.h index 24d7e66c..2f90d68f 100644 --- a/silk/main.h +++ b/silk/main.h @@ -468,23 +468,4 @@ void silk_encode_indices( opus_int condCoding /* I The type of conditional coding to use */ ); -void silk_warped_LPC_analysis_filter_FIX_c( - opus_int32 state[], /* I/O State [order + 1] */ - opus_int32 res_Q2[], /* O Residual signal [length] */ - const opus_int16 coef_Q13[], /* I Coefficients [order] */ - const opus_int16 input[], /* I Input signal [length] */ - const opus_int16 lambda_Q16, /* I Warping factor */ - const opus_int length, /* I Length of input signal */ - const opus_int order /* I Filter order (even) */ -); - -#if !defined(OVERRIDE_silk_warped_LPC_analysis_filter_FIX) -#define silk_warped_LPC_analysis_filter_FIX(state, res_Q2, coef_Q13, input, lambda_Q16, length, order, arch) \ - ((void)(arch),silk_warped_LPC_analysis_filter_FIX_c(state, res_Q2, coef_Q13, input, lambda_Q16, length, order)) -#endif - -#if !defined(OPUS_X86_MAY_HAVE_SSE4_1) - -#endif - #endif -- cgit v1.2.3