From 24225349831278c23c6dfc4515e071f4b27b2c41 Mon Sep 17 00:00:00 2001 From: Takamichi Horikawa Date: Sat, 1 Apr 2017 14:53:59 +0900 Subject: add sse2/ssse3 simd optimization --- libopna/opnassg.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libopna') diff --git a/libopna/opnassg.h b/libopna/opnassg.h index 223d542..aadf53e 100644 --- a/libopna/opnassg.h +++ b/libopna/opnassg.h @@ -66,6 +66,8 @@ typedef void (*opna_ssg_sinc_calc_func_type)(unsigned resampler_index, extern opna_ssg_sinc_calc_func_type opna_ssg_sinc_calc_func; void opna_ssg_sinc_calc_c(unsigned resampler_index, const int16_t *inbuf, int32_t *outbuf); +void opna_ssg_sinc_calc_neon(unsigned, const int16_t *, int32_t *); +void opna_ssg_sinc_calc_sse2(unsigned, const int16_t *, int32_t *); extern const int16_t opna_ssg_sinctable[OPNA_SSG_SINCTABLELEN*2]; -- cgit v1.2.3