Changes in python/lib/generator.py [7609f6d:93acd9f]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/lib/generator.py
r7609f6d r93acd9f 34 34 generated_objects = [] 35 35 cpp_output, cpp_objects = get_cpp_objects() 36 skip_objects = [ 37 # already in ext/ 38 'fft', 36 skip_objects = ['fft', 39 37 'pvoc', 40 38 'filter', 41 39 'filterbank', 42 #'resampler',43 # AUBIO_UNSTABLE44 'hist',45 'scale',46 'beattracking',47 40 'resampler', 48 41 'sndfile', 49 'peakpicker',50 'pitchfcomb',51 'pitchmcomb',52 'pitchschmitt',53 'pitchyin',54 'pitchyinfft',55 42 'sink_apple_audio', 56 43 'sink_sndfile', 57 44 'source_apple_audio', 58 'source_sndfile', 59 #'sampler', 60 'audio_unit', 61 ] 45 'source_sndfile'] 62 46 63 47 write_msg("-- INFO: %d objects in total" % len(cpp_objects)) … … 196 180 s = """// generated list of objects created with generator.py 197 181 198 #include <Python.h>182 #include "Python.h" 199 183 200 184 """
Note: See TracChangeset
for help on using the changeset viewer.