make PIG working with HD Skins
[enigma2.git] / lib / python / Components / VideoWindow.py
index 31190d95046b19c48c1dbddf7e1a2dfc933099f1..2906aa31134d8a006c563d027b8de6968d2d4d9e 100644 (file)
@@ -1,12 +1,15 @@
 from GUIComponent import GUIComponent
 from GUIComponent import GUIComponent
-from enigma import eVideoWidget
+from enigma import eVideoWidget, eSize
 
 class VideoWindow(GUIComponent):
 
 class VideoWindow(GUIComponent):
-       def __init__(self, decoder = 1):
+       def __init__(self, decoder = 1, fb_width = 720, fb_height = 576):
                GUIComponent.__init__(self)
                self.decoder = decoder
                GUIComponent.__init__(self)
                self.decoder = decoder
+               self.fb_width = fb_width
+               self.fb_height = fb_height
 
        GUI_WIDGET = eVideoWidget
 
        def postWidgetCreate(self, instance):
                instance.setDecoder(self.decoder)
 
        GUI_WIDGET = eVideoWidget
 
        def postWidgetCreate(self, instance):
                instance.setDecoder(self.decoder)
+               instance.setFBSize(eSize(self.fb_width, self.fb_height));
\ No newline at end of file