Ignore:
Timestamp:
Nov 3, 2009, 6:23:04 PM (15 years ago)
Author:
Paul Brossier <piem@piem.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:
bf2e7a7
Parents:
bafe71d
Message:

src/spectral/specdesc.{c,h}: rename aubio_onsetdetection to aubio_specdesc

File:
1 moved

Legend:

Unmodified
Added
Removed
  • src/spectral/specdesc.h

    rbafe71d r31907fd  
    4141
    4242/** onsetdetection structure */
    43 typedef struct _aubio_onsetdetection_t aubio_onsetdetection_t;
     43typedef struct _aubio_specdesc_t aubio_specdesc_t;
    4444/** execute onset detection function on a spectral frame
    4545
    4646  Generic function to compute onset detection.
    4747 
    48   \param o onset detection object as returned by new_aubio_onsetdetection()
     48  \param o onset detection object as returned by new_aubio_specdesc()
    4949  \param fftgrain input signal spectrum as computed by aubio_pvoc_do
    5050  \param onset output vector (one sample long, to send to the peak picking)
    5151
    5252*/
    53 void aubio_onsetdetection_do (aubio_onsetdetection_t *o, cvec_t * fftgrain, fvec_t * onset);
     53void aubio_specdesc_do (aubio_specdesc_t *o, cvec_t * fftgrain, fvec_t * onset);
    5454/** creation of an onset detection object
    5555
     
    5959
    6060*/
    61 aubio_onsetdetection_t * new_aubio_onsetdetection(char_t * onset_mode, uint_t buf_size, uint_t channels);
     61aubio_specdesc_t * new_aubio_specdesc(char_t * onset_mode, uint_t buf_size, uint_t channels);
    6262/** deletion of an onset detection object
    6363
    64   \param o onset detection object as returned by new_aubio_onsetdetection()
     64  \param o onset detection object as returned by new_aubio_specdesc()
    6565
    6666*/
    67 void del_aubio_onsetdetection(aubio_onsetdetection_t *o);
     67void del_aubio_specdesc(aubio_specdesc_t *o);
    6868
    6969#ifdef __cplusplus
Note: See TracChangeset for help on using the changeset viewer.