Changeset 124acfb


Ignore:
Timestamp:
Dec 7, 2018, 1:28:56 AM (5 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/cnn, feature/crepe, feature/timestretch, fix/ffmpeg5, master
Children:
24dc867
Parents:
24198a1
git-author:
Paul Brossier <piem@piem.org> (10/24/18 18:48:25)
git-committer:
Paul Brossier <piem@piem.org> (12/07/18 01:28:56)
Message:

[effects] wrap long lines

Location:
src/effects
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/effects/pitchshift.h

    r24198a1 r124acfb  
    4646
    4747*/
    48 void aubio_pitchshift_do (aubio_pitchshift_t * o, const fvec_t * in, fvec_t * out);
     48void aubio_pitchshift_do (aubio_pitchshift_t * o, const fvec_t * in,
     49        fvec_t * out);
    4950
    5051/** deletion of the pitch shifting object
     
    8788
    8889*/
    89 uint_t aubio_pitchshift_set_pitchscale (aubio_pitchshift_t * o, smpl_t pitchscale);
     90uint_t aubio_pitchshift_set_pitchscale (aubio_pitchshift_t * o,
     91        smpl_t pitchscale);
    9092
    9193/** get the pitchscale of the pitch shifting object
     
    101103
    102104  \param o pitch shifting object as returned by new_aubio_pitchshift()
    103   \param transpose new pitch transposition of the pitch shifting object, expressed
    104   in semitones (should be in the range [-24;+24])
     105  \param transpose new pitch transposition of the pitch shifting object,
     106  expressed in semitones (should be in the range [-24;+24])
    105107
    106108  \return 0 if successfull, non-zero otherwise
    107109
    108110*/
    109 uint_t aubio_pitchshift_set_transpose (aubio_pitchshift_t * o, smpl_t transpose);
     111uint_t aubio_pitchshift_set_transpose (aubio_pitchshift_t * o,
     112        smpl_t transpose);
    110113
    111114/** get the transposition of the pitch shifting object, in semitones
  • src/effects/timestretch.h

    r24198a1 r124acfb  
    5353
    5454*/
    55 void aubio_timestretch_do (aubio_timestretch_t * o, fvec_t * out, uint_t * read);
     55void aubio_timestretch_do (aubio_timestretch_t * o, fvec_t * out,
     56   uint_t * read);
    5657
    5758/** deletion of the time stretching object
     
    8485
    8586 */
    86 sint_t aubio_timestretch_push(aubio_timestretch_t * o, fvec_t *in, uint_t length);
     87sint_t aubio_timestretch_push(aubio_timestretch_t * o, fvec_t *in,
     88    uint_t length);
    8789
    8890/** get number of currently available samples from time stretching object
     
    147149
    148150*/
    149 uint_t aubio_timestretch_set_pitchscale (aubio_timestretch_t * o, smpl_t pitchscale);
     151uint_t aubio_timestretch_set_pitchscale (aubio_timestretch_t * o,
     152        smpl_t pitchscale);
    150153
    151154/** get the pitchscale of the time stretching object
     
    161164
    162165  \param o time stretching object as returned by new_aubio_timestretch()
    163   \param transpose new pitch transposition of the time stretching object, expressed
    164   in semitones (should be in the range [-24;+24])
     166
     167  \param transpose new pitch transposition of the time stretching object,
     168  expressed in semitones (should be in the range [-24;+24])
    165169
    166170  \return 0 if successfull, non-zero otherwise
    167171
    168172*/
    169 uint_t aubio_timestretch_set_transpose (aubio_timestretch_t * o, smpl_t transpose);
     173uint_t aubio_timestretch_set_transpose (aubio_timestretch_t * o,
     174        smpl_t transpose);
    170175
    171176/** get the transposition of the time stretching object, in semitones
Note: See TracChangeset for help on using the changeset viewer.