Changes in src/musicutils.h [e84ab04:5b41ef9]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/musicutils.h
re84ab04 r5b41ef9 1 1 /* 2 Copyright (C) 2003-20 13Paul Brossier <piem@aubio.org>2 Copyright (C) 2003-2009 Paul Brossier <piem@aubio.org> 3 3 4 4 This file is part of aubio. … … 23 23 */ 24 24 25 #ifndef _AUBIO__MUSICUTILS_H26 #define _AUBIO__MUSICUTILS_H25 #ifndef MUSICUTILS_H 26 #define MUSICUTILS_H 27 27 28 28 #ifdef __cplusplus … … 31 31 32 32 /** create window 33 34 \param window_type type of the window to create35 \param size length of the window to create (see fvec_set_window())36 33 37 */38 fvec_t *new_aubio_window (char_t * window_type, uint_t size);39 40 /** set elements of a vector to window coefficients41 42 \param window exsting ::fvec_t to use43 \param window_type type of the window to create44 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 51 34 References: 52 35 … … 59 42 (<a href="http://profs.sci.univr.it/%7Edafx/Final-Papers/ps/Bernardini.ps.gz"> 60 43 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 coefficients 61 49 62 50 */ … … 161 149 #endif 162 150 163 #endif /* _AUBIO__MUSICUTILS_H */ 151 #endif 152
Note: See TracChangeset
for help on using the changeset viewer.