aboutsummaryrefslogtreecommitdiffstats
path: root/Transceiver52M/common/convert.h
blob: 1d3a1803b0180f2544690654c6898f74fd9de3ea (plain)
1
2
3
4
5
6
7
8
#ifndef _CONVERT_H_
#define _CONVERT_H_

void convert_float_short(short *out, const float *in, float scale, int len);
void convert_short_float(float *out, const short *in, int len);
void convert_init(void);

#endif /* _CONVERT_H_ */