blob: 4827c2804845b35c021577b9b370c042f5d41e5a [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);
5void convert_short_float(float *out, const short *in, int len);
Thomas Tsou9471d762013-08-20 21:24:24 -04006
7#endif /* _CONVERT_H_ */