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/ogg | |
parent | a2d3ba33728230eacdf4a5b0e48c89a5c4b24eb1 (diff) |
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/ogg')
-rw-r--r-- | modules/ogg/SCsub | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/ogg/SCsub b/modules/ogg/SCsub index 6a72a519fe..44c7963cd3 100644 --- a/modules/ogg/SCsub +++ b/modules/ogg/SCsub @@ -3,6 +3,9 @@ Import('env') Import('env_modules') +# Only kept to build the thirdparty library used by the theora and webm +# modules. + env_ogg = env_modules.Clone() # Thirdparty source files |