31 lines
526 B
Python
31 lines
526 B
Python
|
#!/usr/bin/python
|
||
|
import lutin.module as module
|
||
|
import lutin.tools as tools
|
||
|
|
||
|
|
||
|
def get_type():
|
||
|
return "LIBRARY"
|
||
|
|
||
|
def get_desc():
|
||
|
return "Open H264 library"
|
||
|
|
||
|
def get_licence():
|
||
|
return "BSD-2"
|
||
|
|
||
|
def get_maintainer():
|
||
|
return ["HaiboZhu <haibozhu@cisco.com>"]
|
||
|
|
||
|
def get_version():
|
||
|
return [1,6,0]
|
||
|
|
||
|
def create(target, module_name):
|
||
|
my_module = module.Module(__file__, module_name, get_type())
|
||
|
my_module.add_module_depend([
|
||
|
'openh264-encoder',
|
||
|
'openh264-decoder',
|
||
|
'openh264-processing'
|
||
|
])
|
||
|
return my_module
|
||
|
|
||
|
|