mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-trx.git
synced 2025-11-02 21:23:16 +00:00
Move x86 specific files into their own directory as this area is about to get crowded with the addition of ARM support. Signed-off-by: Thomas Tsou <tom@tsou.cc>
31 lines
719 B
C
31 lines
719 B
C
#ifndef _CONVOLVE_H_
|
|
#define _CONVOLVE_H_
|
|
|
|
void *convolve_h_alloc(int num);
|
|
|
|
int convolve_real(float *x, int x_len,
|
|
float *h, int h_len,
|
|
float *y, int y_len,
|
|
int start, int len,
|
|
int step, int offset);
|
|
|
|
int convolve_complex(float *x, int x_len,
|
|
float *h, int h_len,
|
|
float *y, int y_len,
|
|
int start, int len,
|
|
int step, int offset);
|
|
|
|
int base_convolve_real(float *x, int x_len,
|
|
float *h, int h_len,
|
|
float *y, int y_len,
|
|
int start, int len,
|
|
int step, int offset);
|
|
|
|
int base_convolve_complex(float *x, int x_len,
|
|
float *h, int h_len,
|
|
float *y, int y_len,
|
|
int start, int len,
|
|
int step, int offset);
|
|
|
|
#endif /* _CONVOLVE_H_ */
|