allow burning videos (also H.264) to data DVDs
[enigma2.git] / lib / python / Components / VideoWindow.py
index db247980caf69e738dafd086c136bd3ffe69cc0a..31190d95046b19c48c1dbddf7e1a2dfc933099f1 100644 (file)
@@ -2,11 +2,11 @@ from GUIComponent import GUIComponent
 from enigma import eVideoWidget
 
 class VideoWindow(GUIComponent):
-       def __init__(self):
+       def __init__(self, decoder = 1):
                GUIComponent.__init__(self)
-       
-       def GUIcreate(self, parent):
-               self.instance = eVideoWidget(parent)
+               self.decoder = decoder
 
-       def GUIdelete(self):
-               self.instance = None
+       GUI_WIDGET = eVideoWidget
+
+       def postWidgetCreate(self, instance):
+               instance.setDecoder(self.decoder)