- Timestamp:
- Mar 16, 2006, 4:47:59 PM (19 years ago)
- 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:
- 9610f0a
- Parents:
- f8a38c5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/puredata/aubiopitch~.c
rf8a38c5 r845f2d4 13 13 char aubiopitch_version[] = "aubiopitch~ version 0.1"; 14 14 15 aubio_pitchdetection_type type_pitch = aubio_pitch_mcomb; // aubio_pitch_mcomb15 aubio_pitchdetection_type type_pitch = aubio_pitch_mcomb; 16 16 aubio_pitchdetection_mode mode_pitch = aubio_pitchm_freq; 17 17 … … 90 90 } 91 91 92 static void *aubiopitch_tilde_del(t_aubiopitch_tilde *x) 93 { 94 del_aubio_pitchdetection(x->o); 95 del_fvec(x->vec); 96 return 0; 97 } 98 92 99 void aubiopitch_tilde_setup (void) 93 100 { 94 101 aubiopitch_tilde_class = class_new (gensym ("aubiopitch~"), 95 102 (t_newmethod)aubiopitch_tilde_new, 96 0, sizeof (t_aubiopitch_tilde), 103 (t_method)aubiopitch_tilde_del, 104 sizeof (t_aubiopitch_tilde), 97 105 CLASS_DEFAULT, A_DEFFLOAT, 0); 98 106 class_addmethod(aubiopitch_tilde_class,
Note: See TracChangeset
for help on using the changeset viewer.