Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/musicutils.h

    r5b41ef9 re84ab04  
    11/*
    2   Copyright (C) 2003-2009 Paul Brossier <piem@aubio.org>
     2  Copyright (C) 2003-2013 Paul Brossier <piem@aubio.org>
    33
    44  This file is part of aubio.
     
    2323 */
    2424
    25 #ifndef MUSICUTILS_H
    26 #define MUSICUTILS_H
     25#ifndef _AUBIO__MUSICUTILS_H
     26#define _AUBIO__MUSICUTILS_H
    2727
    2828#ifdef __cplusplus
     
    3131
    3232/** 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())
    3336 
     37*/
     38fvec_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
    3451  References:
    3552   
     
    4259  (<a href="http://profs.sci.univr.it/%7Edafx/Final-Papers/ps/Bernardini.ps.gz">
    4360  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
    4961
    5062 */
     
    149161#endif
    150162
    151 #endif
    152 
     163#endif /* _AUBIO__MUSICUTILS_H */
Note: See TracChangeset for help on using the changeset viewer.