aboutsummaryrefslogtreecommitdiffstats
path: root/Transceiver52M/arch/x86/convolve_sse_3.h
diff options
context:
space:
mode:
Diffstat (limited to 'Transceiver52M/arch/x86/convolve_sse_3.h')
-rw-r--r--Transceiver52M/arch/x86/convolve_sse_3.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/Transceiver52M/arch/x86/convolve_sse_3.h b/Transceiver52M/arch/x86/convolve_sse_3.h
index ac30ca5..d929ef6 100644
--- a/Transceiver52M/arch/x86/convolve_sse_3.h
+++ b/Transceiver52M/arch/x86/convolve_sse_3.h
@@ -23,46 +23,46 @@
void sse_conv_real4(const float *x, int x_len,
const float *h, int h_len,
float *y, int y_len,
- int start, int len, int step, int offset);
+ int start, int len);
/* 8-tap SSE complex-real convolution */
void sse_conv_real8(const float *x, int x_len,
const float *h, int h_len,
float *y, int y_len,
- int start, int len, int step, int offset);
+ int start, int len);
/* 12-tap SSE complex-real convolution */
void sse_conv_real12(const float *x, int x_len,
const float *h, int h_len,
float *y, int y_len,
- int start, int len, int step, int offset);
+ int start, int len);
/* 16-tap SSE complex-real convolution */
void sse_conv_real16(const float *x, int x_len,
const float *h, int h_len,
float *y, int y_len,
- int start, int len, int step, int offset);
+ int start, int len);
/* 20-tap SSE complex-real convolution */
void sse_conv_real20(const float *x, int x_len,
const float *h, int h_len,
float *y, int y_len,
- int start, int len, int step, int offset);
+ int start, int len);
/* 4*N-tap SSE complex-real convolution */
void sse_conv_real4n(const float *x, int x_len,
const float *h, int h_len,
float *y, int y_len,
- int start, int len, int step, int offset);
+ int start, int len);
/* 4*N-tap SSE complex-complex convolution */
void sse_conv_cmplx_4n(const float *x, int x_len,
const float *h, int h_len,
float *y, int y_len,
- int start, int len, int step, int offset);
+ int start, int len);
/* 8*N-tap SSE complex-complex convolution */
void sse_conv_cmplx_8n(const float *x, int x_len,
const float *h, int h_len,
float *y, int y_len,
- int start, int len, int step, int offset);
+ int start, int len);