blob: 4827c2804845b35c021577b9b370c042f5d41e5a [file] [log] [blame]
#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);
#endif /* _CONVERT_H_ */