ich hätte da einen Patch, der das videosetup für die dbox2 fixt:
Code: Alles auswählen
Index: src/setupvideo.cpp
===================================================================
RCS file: /cvs/tuxbox/apps/tuxbox/enigma/src/setupvideo.cpp,v
retrieving revision 1.41
diff -u -p -r1.41 setupvideo.cpp
--- src/setupvideo.cpp 1 Mar 2007 13:09:20 -0000 1.41
+++ src/setupvideo.cpp 13 Apr 2008 15:59:59 -0000
@@ -97,8 +97,8 @@ void eZapVideoSetup::init_eZapVideoSetup
entrys[0]=new eListBoxEntryText(pin8, _("4:3 letterbox"), (void*)0);
entrys[1]=new eListBoxEntryText(pin8, _("4:3 panscan"), (void*)1);
entrys[2]=new eListBoxEntryText(pin8, _("16:9"), (void*)2);
- if ( eSystemInfo::getInstance()->getHwType() == eSystemInfo::DM7000
- || eSystemInfo::getInstance()->getHwType() == eSystemInfo::DM7020 )
+ /* dbox, dm700, dm7020 can do black bars left and right of 4:3 video */
+ if (eSystemInfo::getInstance()->getHwType() <= eSystemInfo::DM7020)
entrys[3]=new eListBoxEntryText(pin8, _("always 16:9"), (void*)3);
pin8->setCurrent(entrys[v_pin8]);
CONNECT( pin8->selchanged, eZapVideoSetup::VPin8Changed );
Auch Kommentare bezüglich Coding-Style etc. (gibts da irgendwo Doku zu?) sind willkommen.
Danke