Changes in src/musicutils.h [5b41ef9:e84ab04]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/musicutils.h
r5b41ef9 re84ab04 1 1 /* 2 Copyright (C) 2003-20 09Paul Brossier <piem@aubio.org>2 Copyright (C) 2003-2013 Paul Brossier <piem@aubio.org> 3 3 4 4 This file is part of aubio. … … 23 23 */ 24 24 25 #ifndef MUSICUTILS_H26 #define MUSICUTILS_H25 #ifndef _AUBIO__MUSICUTILS_H 26 #define _AUBIO__MUSICUTILS_H 27 27 28 28 #ifdef __cplusplus … … 31 31 32 32 /** create window 33 34 \param window_type type of the window to create 35 \param size length of the window to create (see fvec_set_window()) 33 36 37 */ 38 fvec_t *new_aubio_window (char_t * window_type, uint_t size); 39 40 /** set elements of a vector to window coefficients 41 42 \param window exsting ::fvec_t to use 43 \param window_type type of the window to create 44 45 List of available window types: "rectangle", "hamming", "hanning", 46 "hanningz", "blackman", "blackman_harris", "gaussian", "welch", "parzen", 47 "default". 48 49 "default" is equivalent to "hanningz". 50 34 51 References: 35 52 … … 42 59 (<a href="http://profs.sci.univr.it/%7Edafx/Final-Papers/ps/Bernardini.ps.gz"> 43 60 ps.gz</a>) 44 45 */46 fvec_t *new_aubio_window (char_t * window_type, uint_t size);47 48 /** set elements of a vector to window coefficients49 61 50 62 */ … … 149 161 #endif 150 162 151 #endif 152 163 #endif /* _AUBIO__MUSICUTILS_H */
Note: See TracChangeset
for help on using the changeset viewer.