mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-trx.git
synced 2025-11-02 13:13:17 +00:00
Move x86 specific files into their own directory as this area is about to get crowded with the addition of ARM support. Signed-off-by: Thomas Tsou <tom@tsou.cc>
8 lines
196 B
C
8 lines
196 B
C
#ifndef _CONVERT_H_
|
|
#define _CONVERT_H_
|
|
|
|
void convert_float_short(short *out, float *in, float scale, int len);
|
|
void convert_short_float(float *out, short *in, int len);
|
|
|
|
#endif /* _CONVERT_H_ */
|