Changeset b4b0324 for swig


Ignore:
Timestamp:
Aug 9, 2005, 10:58:47 AM (19 years ago)
Author:
Paul Brossier <piem@altern.org>
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:
32669d9
Parents:
876c5e7
Message:

protect window types with aubio_win_

File:
1 edited

Legend:

Unmodified
Added
Removed
  • swig/aubio.i

    r876c5e7 rb4b0324  
    8989/* mathutils */
    9090typedef enum {
    91         rectangle,
    92         hamming,
    93         hanning,
    94         hanningz,
    95         blackman,
    96         blackman_harris,
    97         gaussian,
    98         welch,
    99         parzen
    100 } window_type_t;
    101 
    102 void window(smpl_t *w, uint_t size, window_type_t wintype);
     91        aubio_win_rectangle,
     92        aubio_win_hamming,
     93        aubio_win_hanning,
     94        aubio_win_hanningz,
     95        aubio_win_blackman,
     96        aubio_win_blackman_harris,
     97        aubio_win_gaussian,
     98        aubio_win_welch,
     99        aubio_win_parzen
     100} aubio_window_type_t;
     101
     102void window(smpl_t *w, uint_t size, aubio_window_type_t wintype);
    103103smpl_t unwrap2pi (smpl_t phase);
    104104smpl_t vec_mean(fvec_t *s);
Note: See TracChangeset for help on using the changeset viewer.