Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/musicutils.h

    re84ab04 r5b41ef9  
    11/*
    2   Copyright (C) 2003-2013 Paul Brossier <piem@aubio.org>
     2  Copyright (C) 2003-2009 Paul Brossier <piem@aubio.org>
    33
    44  This file is part of aubio.
     
    2323 */
    2424
    25 #ifndef _AUBIO__MUSICUTILS_H
    26 #define _AUBIO__MUSICUTILS_H
     25#ifndef MUSICUTILS_H
     26#define 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())
    3633 
    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 
    5134  References:
    5235   
     
    5942  (<a href="http://profs.sci.univr.it/%7Edafx/Final-Papers/ps/Bernardini.ps.gz">
    6043  ps.gz</a>)
     44
     45*/
     46fvec_t *new_aubio_window (char_t * window_type, uint_t size);
     47
     48/** set elements of a vector to window coefficients
    6149
    6250 */
     
    161149#endif
    162150
    163 #endif /* _AUBIO__MUSICUTILS_H */
     151#endif
     152
Note: See TracChangeset for help on using the changeset viewer.