[DEV] integrate GLD
This commit is contained in:
parent
732cdc239b
commit
4184759bf7
5
.gitignore
vendored
5
.gitignore
vendored
@ -1,3 +1,8 @@
|
||||
__pycache__
|
||||
.bck
|
||||
out
|
||||
target
|
||||
build
|
||||
|
||||
###################################
|
||||
# folders
|
||||
|
23
GLD_audio-algo-drain-test.json
Normal file
23
GLD_audio-algo-drain-test.json
Normal file
@ -0,0 +1,23 @@
|
||||
{
|
||||
"type":"BINARY",
|
||||
"sub-type":"TEST",
|
||||
"group-id":"com.atria-soft",
|
||||
"description":"test drain audio algo",
|
||||
"license":"MPL-2",
|
||||
"license-file":"file://LICENSE",
|
||||
"maintainer":"file://authors.txt",
|
||||
"author":"file://authors.txt",
|
||||
"version":"file://version.txt",
|
||||
"code-quality":"MEDIUM",
|
||||
|
||||
"source": [
|
||||
"test/main.cpp"
|
||||
],
|
||||
"compilation-version": {
|
||||
"c++": 2017
|
||||
},
|
||||
"dependency": [
|
||||
"audio-algo-drain",
|
||||
"test-debug"
|
||||
]
|
||||
}
|
33
GLD_audio-algo-drain.json
Normal file
33
GLD_audio-algo-drain.json
Normal file
@ -0,0 +1,33 @@
|
||||
{
|
||||
"type":"LIBRARY",
|
||||
"group-id":"com.atria-soft",
|
||||
"description":"drain basic algorithm",
|
||||
"license":"MPL-2",
|
||||
"license-file":"file://LICENSE",
|
||||
"maintainer":"file://authors.txt",
|
||||
"author":"file://authors.txt",
|
||||
"version":"file://version.txt",
|
||||
"code-quality":"MEDIUM",
|
||||
|
||||
"source": [
|
||||
"audio/algo/drain/debug.cpp",
|
||||
"audio/algo/drain/BiQuad.cpp",
|
||||
"audio/algo/drain/BiQuadType.cpp",
|
||||
"audio/algo/drain/Equalizer.cpp"
|
||||
],
|
||||
"header": [
|
||||
"audio/algo/drain/BiQuad.hpp",
|
||||
"audio/algo/drain/BiQuadType.hpp",
|
||||
"audio/algo/drain/Equalizer.hpp"
|
||||
],
|
||||
"path":[
|
||||
"."
|
||||
],
|
||||
"compilation-version": {
|
||||
"c++": 2017
|
||||
},
|
||||
"dependency": [
|
||||
"etk",
|
||||
"audio"
|
||||
]
|
||||
}
|
@ -1,41 +0,0 @@
|
||||
#!/usr/bin/python
|
||||
import realog.debug as debug
|
||||
import lutin.tools as tools
|
||||
|
||||
|
||||
def get_type():
|
||||
return "BINARY"
|
||||
|
||||
def get_sub_type():
|
||||
return "TEST"
|
||||
|
||||
def get_desc():
|
||||
return "test drain audio algo"
|
||||
|
||||
def get_licence():
|
||||
return "MPL-2"
|
||||
|
||||
def get_compagny_type():
|
||||
return "com"
|
||||
|
||||
def get_compagny_name():
|
||||
return "atria-soft"
|
||||
|
||||
def get_maintainer():
|
||||
return "authors.txt"
|
||||
|
||||
def configure(target, my_module):
|
||||
my_module.add_src_file([
|
||||
'test/main.cpp'
|
||||
])
|
||||
my_module.add_depend(['audio-algo-drain', 'test-debug'])
|
||||
return True
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -1,54 +0,0 @@
|
||||
#!/usr/bin/python
|
||||
import realog.debug as debug
|
||||
import lutin.tools as tools
|
||||
|
||||
|
||||
def get_type():
|
||||
return "LIBRARY"
|
||||
|
||||
def get_desc():
|
||||
return "drain basic algorithm"
|
||||
|
||||
def get_licence():
|
||||
return "MPL-2"
|
||||
|
||||
|
||||
def get_compagny_type():
|
||||
return "com"
|
||||
|
||||
def get_compagny_name():
|
||||
return "atria-soft"
|
||||
|
||||
def get_maintainer():
|
||||
return "authors.txt"
|
||||
|
||||
def get_version():
|
||||
return "version.txt"
|
||||
|
||||
def configure(target, my_module):
|
||||
my_module.add_src_file([
|
||||
'audio/algo/drain/debug.cpp',
|
||||
'audio/algo/drain/BiQuad.cpp',
|
||||
'audio/algo/drain/BiQuadType.cpp',
|
||||
'audio/algo/drain/Equalizer.cpp'
|
||||
])
|
||||
my_module.add_header_file([
|
||||
'audio/algo/drain/BiQuad.hpp',
|
||||
'audio/algo/drain/BiQuadType.hpp',
|
||||
'audio/algo/drain/Equalizer.hpp'
|
||||
])
|
||||
my_module.add_depend([
|
||||
'etk',
|
||||
'audio'
|
||||
])
|
||||
my_module.add_path(".")
|
||||
return True
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
21
tools/beamforming/GLD_audio-drain-tools-beam-pattern.json
Normal file
21
tools/beamforming/GLD_audio-drain-tools-beam-pattern.json
Normal file
@ -0,0 +1,21 @@
|
||||
{
|
||||
"type":"BINARY",
|
||||
"sub-type":"TOOL",
|
||||
"group-id":"com.atria-soft",
|
||||
"description":"audio algo drain tools",
|
||||
"license":"MPL-2",
|
||||
"license-file":"file://../../../LICENSE",
|
||||
"maintainer":"file://../../../authors.txt",
|
||||
"author":"file://../../../authors.txt",
|
||||
"version":"file://../../../version.txt",
|
||||
"code-quality":"MEDIUM",
|
||||
|
||||
"source": [
|
||||
"beamPattern.cpp"
|
||||
],
|
||||
"dependency": [
|
||||
"m",
|
||||
"etk",
|
||||
"test-debug"
|
||||
]
|
||||
}
|
@ -0,0 +1,21 @@
|
||||
{
|
||||
"type":"BINARY",
|
||||
"sub-type":"TOOL",
|
||||
"group-id":"com.atria-soft",
|
||||
"description":"audio algo drain tools",
|
||||
"license":"MPL-2",
|
||||
"license-file":"file://../../../LICENSE",
|
||||
"maintainer":"file://../../../authors.txt",
|
||||
"author":"file://../../../authors.txt",
|
||||
"version":"file://../../../version.txt",
|
||||
"code-quality":"MEDIUM",
|
||||
|
||||
"source": [
|
||||
"freqResp.cpp"
|
||||
],
|
||||
"dependency": [
|
||||
"m",
|
||||
"etk",
|
||||
"test-debug"
|
||||
]
|
||||
}
|
@ -1,38 +0,0 @@
|
||||
#!/usr/bin/python
|
||||
import realog.debug as debug
|
||||
import lutin.tools as tools
|
||||
|
||||
|
||||
def get_type():
|
||||
return "BINARY"
|
||||
|
||||
def get_sub_type():
|
||||
return "TOOL"
|
||||
|
||||
def get_desc():
|
||||
return "audio algo drain tools"
|
||||
|
||||
def get_licence():
|
||||
return "MPL-2"
|
||||
|
||||
def get_compagny_type():
|
||||
return "com"
|
||||
|
||||
def get_compagny_name():
|
||||
return "atria-soft"
|
||||
|
||||
def get_maintainer():
|
||||
return ["Mr DUPIN Edouard <yui.heero@gmail.com>"]
|
||||
|
||||
def configure(target, my_module):
|
||||
my_module.add_src_file([
|
||||
'beamPattern.cpp'
|
||||
])
|
||||
my_module.compile_version("c++", 2011)
|
||||
my_module.add_depend([
|
||||
'm',
|
||||
'etk',
|
||||
'test-debug'
|
||||
])
|
||||
return True
|
||||
|
@ -1,37 +0,0 @@
|
||||
#!/usr/bin/python
|
||||
import realog.debug as debug
|
||||
import lutin.tools as tools
|
||||
|
||||
|
||||
def get_type():
|
||||
return "BINARY"
|
||||
|
||||
def get_sub_type():
|
||||
return "TOOL"
|
||||
|
||||
def get_desc():
|
||||
return "audio algo drain tools"
|
||||
|
||||
def get_licence():
|
||||
return "MPL-2"
|
||||
|
||||
def get_compagny_type():
|
||||
return "com"
|
||||
|
||||
def get_compagny_name():
|
||||
return "atria-soft"
|
||||
|
||||
def get_maintainer():
|
||||
return ["Mr DUPIN Edouard <yui.heero@gmail.com>"]
|
||||
|
||||
def configure(target, my_module):
|
||||
my_module.add_src_file([
|
||||
'freqResp.cpp'
|
||||
])
|
||||
my_module.compile_version("c++", 2011)
|
||||
my_module.add_depend([
|
||||
'm',
|
||||
'etk',
|
||||
'test-debug'
|
||||
])
|
||||
return True
|
Loading…
x
Reference in New Issue
Block a user