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

34 lines
582 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
2015-10-14 21:21:03 +02:00
def get_type():
return "BINARY"
def get_sub_type():
return "TEST"
2015-06-15 22:50:29 +02:00
def get_desc():
2015-10-14 21:21:03 +02:00
return "Algorithm of speex codec"
def get_licence():
return "BSD-3"
def get_compagny_type():
return "org"
2015-06-15 22:50:29 +02:00
2015-10-14 21:21:03 +02:00
def get_compagny_name():
return "Xiph"
2015-06-15 22:50:29 +02:00
2015-10-14 21:21:03 +02:00
def create(target, module_name):
my_module = module.Module(__file__, module_name, get_type())
2015-09-24 21:44:04 +02:00
my_module.add_extra_compile_flags()
my_module.add_src_file([
2015-06-15 22:50:29 +02:00
'speex-dsp/libspeexdsp/testdenoise.c'
])
2015-09-24 21:44:04 +02:00
my_module.add_module_depend('speex-dsp')
return my_module
2015-06-15 22:50:29 +02:00