Changeset b16fc82
- Timestamp:
- Sep 17, 2009, 7:09:57 AM (15 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
- Children:
- dffe76f
- Parents:
- 13bcd32
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/types.h
r13bcd32 rb16fc82 40 40 41 41 /** short sample format (32 or 64 bits) */ 42 #if AUBIO_SINGLE_PRECISION 42 43 typedef float smpl_t; 43 //typedef double smpl_t; 44 #define AUBIO_SMPL_FMT "%f" 45 #else 46 typedef double smpl_t; 47 #define AUBIO_SMPL_FMT "%lf" 48 #endif 44 49 /** long sample format (64 bits or more) */ 50 #if AUBIO_SINGLE_PRECISION 45 51 typedef double lsmp_t; 46 //typedef long lsmp_t; 52 #define AUBIO_LSMP_FMT "%lf" 53 #else 54 typedef long double lsmp_t; 55 #define AUBIO_LSMP_FMT "%Lf" 56 #endif 47 57 /** unsigned integer */ 48 58 typedef unsigned int uint_t;
Note: See TracChangeset
for help on using the changeset viewer.