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]
|
|
|
|
|
2016-10-04 23:41:29 +02:00
|
|
|
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'
|
|
|
|
])
|
2016-10-04 23:41:29 +02:00
|
|
|
return True
|
2016-08-04 22:08:11 +02:00
|
|
|
|
|
|
|
|