48 lines
1.1 KiB
Python
48 lines
1.1 KiB
Python
#!/usr/bin/python
|
|
import lutin.module as module
|
|
import lutin.tools as tools
|
|
import lutin.debug as debug
|
|
|
|
def get_desc():
|
|
return "Basic audio algo interface single pipe to provess data"
|
|
|
|
|
|
def create(target):
|
|
myModule = module.Module(__file__, 'audio-drain', 'LIBRARY')
|
|
|
|
myModule.add_src_file([
|
|
'audio/drain/debug.cpp',
|
|
'audio/drain/airtalgo.cpp',
|
|
'audio/drain/Algo.cpp',
|
|
'audio/drain/ChannelReorder.cpp',
|
|
'audio/drain/CircularBuffer.cpp',
|
|
'audio/drain/EndPointCallback.cpp',
|
|
'audio/drain/EndPoint.cpp',
|
|
'audio/drain/EndPointRead.cpp',
|
|
'audio/drain/EndPointWrite.cpp',
|
|
'audio/drain/FormatUpdate.cpp',
|
|
'audio/drain/Process.cpp',
|
|
'audio/drain/Resampler.cpp',
|
|
'audio/drain/Volume.cpp',
|
|
'audio/drain/IOFormatInterface.cpp',
|
|
'audio/drain/AutoLogInOut.cpp',
|
|
'audio/drain/Equalizer.cpp'
|
|
])
|
|
|
|
# TODO: myModule.add_optional_module_depend('speexdsp', "HAVE_SPEEX_DSP_RESAMPLE")
|
|
myModule.compile_flags('c++', "-DHAVE_SPEEX_DSP_RESAMPLE")
|
|
myModule.add_module_depend(['etk', 'audio', 'ejson', 'speex-dsp', 'audio-algo-drain'])
|
|
myModule.add_export_path(tools.get_current_path(__file__))
|
|
|
|
# add the currrent module at the
|
|
return myModule
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|