speex-dsp-lutin/lutin_speex-test-resample.py

22 lines
478 B
Python
Raw Normal View History

2015-06-15 22:50:29 +02:00
#!/usr/bin/python
import lutin.module as module
import lutin.tools as tools
def get_desc():
return "test: resample test algorithm"
def create(target):
myModule = module.Module(__file__, 'speex-test-resample', 'BINARY')
# add extra compilation flags :
myModule.add_extra_compile_flags()
# add the file to compile:
myModule.add_src_file([
'speex-dsp/libspeexdsp/testresample.c'
])
# name of the dependency
myModule.add_module_depend('speex-dsp')
return myModule