openh264-lutin/lutin_openh264.py

31 lines
519 B
Python
Raw Normal View History

2016-08-04 22:08:11 +02:00
#!/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())
2016-09-08 21:35:02 +02:00
my_module.add_depend([
2016-08-04 22:08:11 +02:00
'openh264-encoder',
'openh264-decoder',
'openh264-processing'
])
return my_module