Changeset 6f9615c


Ignore:
Timestamp:
Jul 13, 2008, 9:57:55 PM (16 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:
6c25201
Parents:
4d7ced9
Message:

plugins/puredata/aubiozcr~.c: add aubiozcr~, computing zero crossing rate

Location:
plugins/puredata
Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • plugins/puredata/Makefile.am

    r4d7ced9 r6f9615c  
    2828        aubiotss~.c \
    2929        aubioquiet~.c \
    30         aubiopitch~.c
     30        aubiopitch~.c \
     31        aubiozcr~.c
    3132
    3233aubio_pd_linux_SOURCES = $(ALLSOURCES)
  • plugins/puredata/aubio_setup.c

    r4d7ced9 r6f9615c  
    1818extern void aubioquiet_tilde_setup (void);
    1919extern void aubiopitch_tilde_setup (void);
     20extern void aubiozcr_tilde_setup (void);
    2021
    2122void *aubio_new (void)
     
    3334    aubioquiet_tilde_setup();
    3435    aubiopitch_tilde_setup();
     36    aubiozcr_tilde_setup();
    3537    aubio_class = class_new(gensym("aubio"), (t_newmethod)aubio_new, 0,
    3638            sizeof(t_aubio), 0, 0);
Note: See TracChangeset for help on using the changeset viewer.