aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2008-11-16 13:12:56 +0100
committerghost <andreas.monzner@multimedia-labs.de>2008-11-16 13:12:56 +0100
commitd732b430ccc1d1a78e666f16553b2e3c5dd131a8 (patch)
tree1452a825936518acad2a0eee2e376aa7391613aa /lib/python
parent6347d817582886ab7c7535b44601538749d06d5b (diff)
downloadenigma2-d732b430ccc1d1a78e666f16553b2e3c5dd131a8.tar.gz
enigma2-d732b430ccc1d1a78e666f16553b2e3c5dd131a8.zip
work on asynchron pic loading... to get rid of spinning wheels
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Components/AVSwitch.py15
-rw-r--r--lib/python/enigma_python.i1
2 files changed, 16 insertions, 0 deletions
diff --git a/lib/python/Components/AVSwitch.py b/lib/python/Components/AVSwitch.py
index 8f99b98e..7ac2bb98 100644
--- a/lib/python/Components/AVSwitch.py
+++ b/lib/python/Components/AVSwitch.py
@@ -28,6 +28,21 @@ class AVSwitch:
def setSystem(self, value):
eAVSwitch.getInstance().setVideomode(value)
+ def getOutputAspect(self):
+ if valstr in ("4_3_letterbox", "4_3_panscan"): # 4:3
+ return 1.333333333
+ elif valstr == "16_9": # auto ... 4:3 or 16:9
+ # TODO: here we must retrieve the current video aspect ratio...
+ # because the TV can run in 4:3 or in 16:9 mode.. (switched by wss or scart pin8)
+ # until we have done this we always return the scale value for 16:9!!
+ return 1.777777778
+ elif valstr in ("16_9_always", "16_9_letterbox"): # 16:9
+ return 1.777777778
+ elif valstr in ("16_10_letterbox", "16_10_panscan"): # 16:10
+ return 1.6
+ print "unknown output aspect!"
+ return 1.0000
+
def getAspectRatioSetting(self):
valstr = config.av.aspectratio.value
if valstr == "4_3_letterbox":
diff --git a/lib/python/enigma_python.i b/lib/python/enigma_python.i
index 7de05d2b..84936375 100644
--- a/lib/python/enigma_python.i
+++ b/lib/python/enigma_python.i
@@ -141,6 +141,7 @@ typedef long time_t;
%include <lib/service/service.h>
// TODO: embed these...
+%immutable ePicLoad::PictureData;
%immutable eButton::selected;
%immutable eInput::changed;
%immutable eComponentScan::statusChanged;