Changeset 97514e2
- Timestamp:
- Jul 17, 2012, 11:00:34 PM (12 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:
- 7d50c5a
- Parents:
- a81c8cd (diff), b0f2cc5 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
interfaces/python/build_linux
ra81c8cd r97514e2 1 1 #! /bin/sh 2 2 3 set -e 4 set -x 5 3 6 python setup.py clean build 4 export PYTHONPATH=./build/lib.linux-x86_64-2. 6/7 export PYTHONPATH=./build/lib.linux-x86_64-2.7/ 5 8 export LD_LIBRARY_PATH=../../build/src/ 6 9 ./run_all_tests --verbose -
interfaces/python/generator.py
ra81c8cd r97514e2 3 3 """ This file generates a c file from a list of cpp prototypes. """ 4 4 5 import os, sys 5 import os, sys, shutil 6 6 from gen_pyobject import write_msg, gen_new_init, gen_do, gen_members, gen_methods, gen_finish 7 7 … … 29 29 30 30 def generate_object_files(): 31 if os.path.isdir('generated'): shutil.rmtree('generated') 32 os.mkdir('generated') 31 33 32 34 generated_objects = [] … … 110 112 111 113 # generate this_object 112 if not os.path.isdir('generated'): os.mkdir('generated')113 114 short_name = object_name[len('aubio_'):] 114 115 if short_name in skip_objects: -
src/temporal/resampler.h
ra81c8cd r97514e2 41 41 42 42 \param ratio output_sample_rate / input_sample_rate 43 \param type libsamplerate resampling type 43 \param type libsamplerate resampling type, see http://www.mega-nerd.com/SRC/api_misc.html#Converters 44 44 45 45 */
Note: See TracChangeset
for help on using the changeset viewer.