Changeset 8f86f0e
- Timestamp:
- Oct 16, 2013, 12:07:46 AM (11 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:
- 7609f6d
- Parents:
- b4d1ba1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/lib/generator.py
rb4d1ba1 r8f86f0e 34 34 generated_objects = [] 35 35 cpp_output, cpp_objects = get_cpp_objects() 36 skip_objects = ['fft', 36 skip_objects = [ 37 # already in ext/ 38 'fft', 37 39 'pvoc', 38 40 'filter', 39 41 'filterbank', 42 #'resampler', 43 # AUBIO_UNSTABLE 44 'hist', 45 'scale', 46 'beattracking', 40 47 'resampler', 41 48 'sndfile', 49 'peakpicker', 50 'pitchfcomb', 51 'pitchmcomb', 52 'pitchschmitt', 53 'pitchyin', 54 'pitchyinfft', 42 55 'sink_apple_audio', 43 56 'sink_sndfile', 44 57 'source_apple_audio', 45 'source_sndfile'] 58 'source_sndfile', 59 #'sampler', 60 ] 46 61 47 62 write_msg("-- INFO: %d objects in total" % len(cpp_objects)) … … 180 195 s = """// generated list of objects created with generator.py 181 196 182 #include "Python.h"197 #include <Python.h> 183 198 184 199 """
Note: See TracChangeset
for help on using the changeset viewer.