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

22 lines
480 B
Python

#!/usr/bin/python
import lutin.module as module
import lutin.tools as tools
def get_desc():
return "test: denoise test algorithm"
def create(target):
my_module = module.Module(__file__, 'speex-test-denoise', 'BINARY')
# add extra compilation flags :
my_module.add_extra_compile_flags()
# add the file to compile:
my_module.add_src_file([
'speex-dsp/libspeexdsp/testdenoise.c'
])
# name of the dependency
my_module.add_module_depend('speex-dsp')
return my_module