src/types.h: remove completed todo items, hardcode AUBIO_SINGLE_PRECISION to 1 for now
authorPaul Brossier <piem@piem.org>
Thu, 17 Sep 2009 05:33:29 +0000 (07:33 +0200)
committerPaul Brossier <piem@piem.org>
Thu, 17 Sep 2009 05:33:29 +0000 (07:33 +0200)
src/types.h

index 29515ac..4a446df 100644 (file)
  
   Definition of data types used in aubio
  
-  \todo replace all known types with their alias (in midi*.[ch])
-  
-  \todo add unknown types aliases (char, FILE)
-  \todo add OS switches
-  \todo add long/float switches
-
 */
 
 #ifdef __cplusplus
 extern "C" {
 #endif
 
+#define AUBIO_SINGLE_PRECISION 1
+
 /** short sample format (32 or 64 bits) */
 #if AUBIO_SINGLE_PRECISION
 typedef float        smpl_t;