Changeset 8f86f0e for python/lib


Ignore:
Timestamp:
Oct 16, 2013, 12:07:46 AM (11 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:
7609f6d
Parents:
b4d1ba1
Message:

python/lib/generator.py: remove most unstable objects

File:
1 edited

Legend:

Unmodified
Added
Removed
  • python/lib/generator.py

    rb4d1ba1 r8f86f0e  
    3434  generated_objects = []
    3535  cpp_output, cpp_objects = get_cpp_objects()
    36   skip_objects = ['fft',
     36  skip_objects = [
     37      # already in ext/
     38      'fft',
    3739      'pvoc',
    3840      'filter',
    3941      'filterbank',
     42      #'resampler',
     43      # AUBIO_UNSTABLE
     44      'hist',
     45      'scale',
     46      'beattracking',
    4047      'resampler',
    4148      'sndfile',
     49      'peakpicker',
     50      'pitchfcomb',
     51      'pitchmcomb',
     52      'pitchschmitt',
     53      'pitchyin',
     54      'pitchyinfft',
    4255      'sink_apple_audio',
    4356      'sink_sndfile',
    4457      'source_apple_audio',
    45       'source_sndfile']
     58      'source_sndfile',
     59      #'sampler',
     60      ]
    4661
    4762  write_msg("-- INFO: %d objects in total" % len(cpp_objects))
     
    180195  s = """// generated list of objects created with generator.py
    181196
    182 #include "Python.h"
     197#include <Python.h>
    183198
    184199"""
Note: See TracChangeset for help on using the changeset viewer.