mirror of
https://github.com/PentHertz/OpenBTS.git
synced 2026-04-28 11:29:29 +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
7 lines
196 B
C
7 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_ */
|