diff options
| author | Juan Linietsky | 2015-09-26 14:50:42 -0300 |
|---|---|---|
| committer | Juan Linietsky | 2015-09-26 14:50:42 -0300 |
| commit | c858515785e2406bfc07da587ffc3bb353b7504c (patch) | |
| tree | fcde74c2f42288dc95c1c7d3680f78f6398929c2 /platform | |
| parent | ce6fefced8b0ac6d3be886db5ee1234dba7ec544 (diff) | |
| download | godot-c858515785e2406bfc07da587ffc3bb353b7504c.tar.gz godot-c858515785e2406bfc07da587ffc3bb353b7504c.tar.zst godot-c858515785e2406bfc07da587ffc3bb353b7504c.zip | |
Fixed theora playback. Removed theoraplayer.
Still need to get proper audio output latency in some platforms.
Diffstat (limited to 'platform')
| -rw-r--r-- | platform/android/detect.py | 2 | ||||
| -rw-r--r-- | platform/iphone/detect.py | 1 | ||||
| -rw-r--r-- | platform/osx/detect.py | 1 | ||||
| -rw-r--r-- | platform/windows/detect.py | 1 | ||||
| -rw-r--r-- | platform/x11/detect.py | 2 |
5 files changed, 1 insertions, 6 deletions
diff --git a/platform/android/detect.py b/platform/android/detect.py index fce1fe3ed..59bbcd63c 100644 --- a/platform/android/detect.py +++ b/platform/android/detect.py @@ -38,8 +38,6 @@ def get_flags(): ('nedmalloc', 'no'), ('builtin_zlib', 'no'), ('openssl','builtin'), #use builtin openssl - ('theora','no'), #use builtin openssl - ] diff --git a/platform/iphone/detect.py b/platform/iphone/detect.py index 3864968d9..e7a262a2b 100644 --- a/platform/iphone/detect.py +++ b/platform/iphone/detect.py @@ -37,7 +37,6 @@ def get_flags(): return [ ('tools', 'no'), ('webp', 'yes'), - ("theora","no"), ('openssl','builtin'), #use builtin openssl ] diff --git a/platform/osx/detect.py b/platform/osx/detect.py index 4a20ca80c..22cee0527 100644 --- a/platform/osx/detect.py +++ b/platform/osx/detect.py @@ -31,7 +31,6 @@ def get_flags(): ('opengl', 'no'), ('legacygl', 'yes'), ('builtin_zlib', 'no'), - ("theora","no"), ('freetype','builtin'), #use builtin freetype ] diff --git a/platform/windows/detect.py b/platform/windows/detect.py index 0fe4f9f3b..2504b7116 100644 --- a/platform/windows/detect.py +++ b/platform/windows/detect.py @@ -170,7 +170,6 @@ def get_flags(): return [
('freetype','builtin'), #use builtin freetype
('openssl','builtin'), #use builtin openssl
- ('theora','no'),
]
diff --git a/platform/x11/detect.py b/platform/x11/detect.py index 33e8fd03e..9a52a7c92 100644 --- a/platform/x11/detect.py +++ b/platform/x11/detect.py @@ -63,7 +63,7 @@ def get_flags(): return [ ('builtin_zlib', 'no'), ("openssl", "yes"), - ("theora","no"), + #("theora","no"), ] |
