mirror of
https://github.com/RangeNetworks/openbts.git
synced 2025-10-23 07:42:01 +00:00
Convertions are performed in multiples of 4 or 8. All loads are considered unaligned. Signed-off-by: Thomas Tsou <tom@tsou.cc> git-svn-id: http://wush.net/svn/range/software/public/openbts/trunk@6734 19bc5d8c-e614-43d4-8b26-e1612bc8e597
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_ */
|