Changeset 30cbd419


Ignore:
Timestamp:
Dec 3, 2004, 6:50:04 PM (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:
b16b900
Parents:
02839ae
Message:
 
Files:
5 added
7 edited

Legend:

Unmodified
Added
Removed
  • ChangeLog

    r02839ae r30cbd419  
    1 2004-11-39  Paul Brossier <piem@altern.org>
     12004-12-03  Paul Brossier <piem@altern.org>
     2        * src/{mathutils,pitchyin}.h: got rid of some shadowed declarations
     3        * plugins/puredata: first puredata plugin attempt added
     4
     52004-11-30  Paul Brossier <piem@altern.org>
    26        * configure.ac: added -lmx on macosx
    37        * python/aubiocut: seeks for local minima before peak
  • configure

    r02839ae r30cbd419  
    2105421054
    2105521055
    21056                                                                                                                         ac_config_files="$ac_config_files Makefile src/Makefile examples/Makefile sounds/Makefile doc/Makefile python/Makefile python/aubio/Makefile plugins/Makefile plugins/audacity/Makefile plugins/audacity/plug-ins/Makefile plugins/wavesurfer/Makefile swig/Makefile"
     21056                                                                                                                                  ac_config_files="$ac_config_files Makefile src/Makefile examples/Makefile sounds/Makefile doc/Makefile python/Makefile python/aubio/Makefile plugins/Makefile plugins/audacity/Makefile plugins/audacity/plug-ins/Makefile plugins/wavesurfer/Makefile plugins/puredata/Makefile swig/Makefile"
    2105721057cat >confcache <<\_ACEOF
    2105821058# This file is a shell script that caches the results of configure
     
    2162321623  "plugins/audacity/plug-ins/Makefile" ) CONFIG_FILES="$CONFIG_FILES plugins/audacity/plug-ins/Makefile" ;;
    2162421624  "plugins/wavesurfer/Makefile" ) CONFIG_FILES="$CONFIG_FILES plugins/wavesurfer/Makefile" ;;
     21625  "plugins/puredata/Makefile" ) CONFIG_FILES="$CONFIG_FILES plugins/puredata/Makefile" ;;
    2162521626  "swig/Makefile" ) CONFIG_FILES="$CONFIG_FILES swig/Makefile" ;;
    2162621627  "depfiles" ) CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
  • configure.ac

    r02839ae r30cbd419  
    160160                plugins/audacity/plug-ins/Makefile
    161161                plugins/wavesurfer/Makefile
     162                plugins/puredata/Makefile
    162163                swig/Makefile
    163164        ])
  • plugins/Makefile.am

    r02839ae r30cbd419  
    1 SUBDIRS = wavesurfer audacity
     1SUBDIRS = wavesurfer audacity puredata
  • plugins/Makefile.in

    r02839ae r30cbd419  
    152152sysconfdir = @sysconfdir@
    153153target_alias = @target_alias@
    154 SUBDIRS = wavesurfer audacity
     154SUBDIRS = wavesurfer audacity puredata
    155155subdir = plugins
    156156ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  • src/mathutils.h

    r02839ae r30cbd419  
    178178
    179179void vec_adapt_thres(fvec_t * vec, fvec_t * tmp,
    180     uint_t post, uint_t pre);
     180    uint_t win_post, uint_t win_pre);
    181181/**  adaptative thresholding
    182182 *
     
    199199 */
    200200smpl_t vec_moving_thres(fvec_t * vec, fvec_t * tmp,
    201     uint_t post, uint_t pre, uint_t pos);
     201    uint_t win_post, uint_t win_pre, uint_t win_pos);
    202202
    203203/** returns the median of the vector
  • src/pitchyin.h

    r02839ae r30cbd419  
    3333#endif
    3434
    35 void aubio_pitchyin_diff(fvec_t * input, fvec_t * yin);
     35void aubio_pitchyin_diff(fvec_t * input, fvec_t * yinbuf);
    3636
    37 void aubio_pitchyin_getcum(fvec_t * yin);
     37void aubio_pitchyin_getcum(fvec_t * yinbuf);
    3838
    39 uint_t aubio_pitchyin_getpitch(fvec_t *yin);
     39uint_t aubio_pitchyin_getpitch(fvec_t *yinbuf);
    4040
    41 uint_t aubio_pitchyin_getpitchfast(fvec_t * input, fvec_t *yin);
     41uint_t aubio_pitchyin_getpitchfast(fvec_t * input, fvec_t *yinbuf);
    4242
    4343#ifdef __cplusplus
Note: See TracChangeset for help on using the changeset viewer.