2015-03-26 22:28:37 +01:00
|
|
|
#!/usr/bin/python
|
|
|
|
import lutinModule as module
|
|
|
|
import lutinTools as tools
|
|
|
|
import lutinDebug as debug
|
|
|
|
|
|
|
|
def get_desc():
|
|
|
|
return "drain_test : single audio flow test"
|
|
|
|
|
|
|
|
|
|
|
|
def create(target):
|
2015-04-10 23:00:13 +02:00
|
|
|
myModule = module.Module(__file__, 'audio_drain_test', 'BINARY')
|
2015-03-26 22:28:37 +01:00
|
|
|
|
|
|
|
myModule.add_src_file([
|
|
|
|
'test/main.cpp',
|
|
|
|
'test/debug.cpp',
|
|
|
|
'test/updateFlow.cpp',
|
|
|
|
'test/resampling.cpp',
|
|
|
|
'test/format.cpp',
|
|
|
|
'test/channelOrder.cpp',
|
|
|
|
'test/equalizer.cpp'
|
|
|
|
])
|
|
|
|
|
2015-04-10 23:00:13 +02:00
|
|
|
myModule.add_module_depend(['audio_drain', 'gtest', 'etk'])
|
2015-03-26 22:28:37 +01:00
|
|
|
|
|
|
|
return myModule
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|