aboutsummaryrefslogtreecommitdiffstats
path: root/Transceiver52M/arch/common/convert.h
diff options
context:
space:
mode:
Diffstat (limited to 'Transceiver52M/arch/common/convert.h')
-rw-r--r--Transceiver52M/arch/common/convert.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/Transceiver52M/arch/common/convert.h b/Transceiver52M/arch/common/convert.h
new file mode 100644
index 0000000..73402b0
--- /dev/null
+++ b/Transceiver52M/arch/common/convert.h
@@ -0,0 +1,15 @@
+#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_ */