2018-05-31 01:11:33 +08:00
|
|
|
def can_build(env, platform):
|
2021-08-29 06:40:32 +08:00
|
|
|
if env["arch"].startswith("rv"):
|
|
|
|
return False
|
2020-06-02 19:16:42 +08:00
|
|
|
return env.module_check_dependencies("theora", ["ogg", "vorbis"])
|
2016-10-14 01:40:40 +08:00
|
|
|
|
2020-03-30 14:28:32 +08:00
|
|
|
|
2016-10-14 01:40:40 +08:00
|
|
|
def configure(env):
|
2016-10-31 01:44:57 +08:00
|
|
|
pass
|
2017-11-16 02:23:20 +08:00
|
|
|
|
2020-03-30 14:28:32 +08:00
|
|
|
|
2017-11-16 02:23:20 +08:00
|
|
|
def get_doc_classes():
|
|
|
|
return [
|
|
|
|
"VideoStreamTheora",
|
|
|
|
]
|
|
|
|
|
2020-03-30 14:28:32 +08:00
|
|
|
|
2017-11-16 02:23:20 +08:00
|
|
|
def get_doc_path():
|
|
|
|
return "doc_classes"
|