diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-03-18 12:41:18 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2020-03-18 12:41:21 +0100 |
commit | 7f6b62cef0127b4cf7994d917e18e7005c524bfb (patch) | |
tree | 583b33fe120ceca3bf27502eb6c8692dda16ac13 /modules/opus/config.py | |
parent | a2d3ba33728230eacdf4a5b0e48c89a5c4b24eb1 (diff) | |
download | redot-engine-7f6b62cef0127b4cf7994d917e18e7005c524bfb.tar.gz |
opus/vorbis: Remove dead code not used since 3.0
Since the new audio system in 3.0 we switched the OGG support to
stb_vorbis, and the Opus stream support was disabled as incompatible
(see #7496).
We still build the libraries as they are needed by the theora and webm
modules, but we don't need any Godot code apart from `register_types`.
Fixes #7496.
Diffstat (limited to 'modules/opus/config.py')
-rw-r--r-- | modules/opus/config.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/modules/opus/config.py b/modules/opus/config.py index a1cde10ea0..1c8cd12a2d 100644 --- a/modules/opus/config.py +++ b/modules/opus/config.py @@ -3,11 +3,3 @@ def can_build(env, platform): def configure(env): pass - -def get_doc_classes(): - return [ - "AudioStreamOpus", - ] - -def get_doc_path(): - return "doc_classes" |