shithub: aubio

Download patch

ref: b16fc82d8bdcc7668e31ce776aabc9237a422c0c
parent: 13bcd32b8b52ba1c5f519d419e2f4cd98138f402
author: Paul Brossier <piem@piem.org>
date: Thu Sep 17 03:09:57 EDT 2009

src/types.h: add a switch between single and double precision

--- a/src/types.h
+++ b/src/types.h
@@ -39,11 +39,21 @@
 #endif
 
 /** short sample format (32 or 64 bits) */
+#if AUBIO_SINGLE_PRECISION
 typedef float        smpl_t;
-//typedef double       smpl_t;
+#define AUBIO_SMPL_FMT "%f"
+#else
+typedef double       smpl_t;
+#define AUBIO_SMPL_FMT "%lf"
+#endif
 /** long sample format (64 bits or more) */
+#if AUBIO_SINGLE_PRECISION 
 typedef double       lsmp_t;
-//typedef long        lsmp_t;
+#define AUBIO_LSMP_FMT "%lf"
+#else
+typedef long double  lsmp_t;
+#define AUBIO_LSMP_FMT "%Lf"
+#endif
 /** unsigned integer */
 typedef unsigned int uint_t;
 /** signed integer */