mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-trx.git
synced 2025-11-02 21:23:16 +00:00
Take the chance to update some includes using files available in that subdir to have them ina more uniform way. Change-Id: Ibda3c54fd4dc3f6b845cc373f1a1e6b758c1ea82
16 lines
397 B
C
16 lines
397 B
C
#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 base_convert_float_short(short *out, const float *in,
|
|
float scale, int len);
|
|
|
|
void base_convert_short_float(float *out, const short *in, int len);
|
|
|
|
void convert_init(void);
|
|
|
|
#endif /* _CONVERT_H_ */
|