openh264-lutin/lutin_openh264.py

30 lines
452 B
Python
Raw Permalink Normal View History

2016-08-04 22:08:11 +02:00
#!/usr/bin/python
2019-05-03 10:18:23 +02:00
import realog.debug as debug
2016-08-04 22:08:11 +02:00
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 configure(target, my_module):
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 True
2016-08-04 22:08:11 +02:00