From 8f86f0eadc9394463fc5b40e4de4a5bf043cee6c Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Wed, 16 Oct 2013 00:07:46 +0200 Subject: [PATCH] python/lib/generator.py: remove most unstable objects --- python/lib/generator.py | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/python/lib/generator.py b/python/lib/generator.py index d93e8ce2..07b950ce 100755 --- a/python/lib/generator.py +++ b/python/lib/generator.py @@ -33,16 +33,31 @@ def generate_object_files(output_path): generated_objects = [] cpp_output, cpp_objects = get_cpp_objects() - skip_objects = ['fft', + skip_objects = [ + # already in ext/ + 'fft', 'pvoc', 'filter', 'filterbank', + #'resampler', + # AUBIO_UNSTABLE + 'hist', + 'scale', + 'beattracking', 'resampler', 'sndfile', + 'peakpicker', + 'pitchfcomb', + 'pitchmcomb', + 'pitchschmitt', + 'pitchyin', + 'pitchyinfft', 'sink_apple_audio', 'sink_sndfile', 'source_apple_audio', - 'source_sndfile'] + 'source_sndfile', + #'sampler', + ] write_msg("-- INFO: %d objects in total" % len(cpp_objects)) @@ -179,7 +194,7 @@ void add_generated_objects ( PyObject *m ) s = """// generated list of objects created with generator.py -#include "Python.h" +#include """ -- 2.11.0