blob: 73402b09c6a196196fc52a11a01509567049e4d1 [file] [log] [blame]
Thomas Tsou9471d762013-08-20 21:24:24 -04001#ifndef _CONVERT_H_
2#define _CONVERT_H_
3
Tom Tsouf147b172015-03-25 12:55:11 -07004void convert_float_short(short *out, const float *in, float scale, int len);
Philipp Maierfe976982017-03-16 14:50:25 +01005
Tom Tsouf147b172015-03-25 12:55:11 -07006void convert_short_float(float *out, const short *in, int len);
Philipp Maierfe976982017-03-16 14:50:25 +01007
8void base_convert_float_short(short *out, const float *in,
9 float scale, int len);
10
11void base_convert_short_float(float *out, const short *in, int len);
12
Philipp Maier7e07cf22017-03-15 18:09:35 +010013void convert_init(void);
Thomas Tsou9471d762013-08-20 21:24:24 -040014
15#endif /* _CONVERT_H_ */