Changeset 3901714
- Timestamp:
- May 27, 2006, 3:00:08 AM (19 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:
- 1e7ef7c
- Parents:
- 08d21bf
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
ext/sndfileio.c
r08d21bf r3901714 43 43 SF_INFO sfinfo; 44 44 AUBIO_MEMSET(&sfinfo, 0, sizeof (sfinfo)); 45 sfinfo.format = 0;46 45 47 46 f->handle = sf_open (outputname, SFM_READ, &sfinfo); -
src/aubio_priv.h
r08d21bf r3901714 84 84 #define AUBIO_ARRAY(_t,_n) (_t*)malloc((_n)*sizeof(_t)) 85 85 #define AUBIO_MEMCPY(_dst,_src,_n) memcpy(_dst,_src,_n) 86 #define AUBIO_MEMSET(_dst,_src,_t) memset(_dst,_src, sizeof(_t))86 #define AUBIO_MEMSET(_dst,_src,_t) memset(_dst,_src,_t) 87 87 #define AUBIO_FREE(_p) free(_p) 88 88
Note: See TracChangeset
for help on using the changeset viewer.