#include "led.h"\r
#include "video.h"\r
#include "audio.h"\r
+#include "mtd.h"\r
#include "vdr.h"\r
#include "vvolume.h"\r
#include "vserverselect.h"\r
logger->log("Command", Log::NOTICE, "Reboot");\r
#ifndef WIN32\r
#ifndef VOMP_HAS_EXIT\r
+ // some plattforms, want a proper deinitialisation of their hardware before reboot\r
+ Osd::getInstance()->shutdown();\r
+ Audio::getInstance()->shutdown();\r
+ Video::getInstance()->shutdown();\r
+ Remote::getInstance()->shutdown();\r
+\r
reboot(LINUX_REBOOT_CMD_RESTART);\r
+ // if reboot is not allowed -> stop\r
+ stop();\r
+\r
+\r
#else\r
stop();\r
\r
virtual int init(void* device)=0;\r
virtual int shutdown()=0;\r
virtual int restore(){return 1;};\r
+ virtual int stopUpdate() {return 1;};\r
\r
virtual Surface * createNewSurface()=0; // For Boxx\r
virtual int charSet() {return 1;};\r
initted = 1; // must set this here or create surface won't work\r
\r
\r
- if (((VideoOMX*)Video::getInstance())->initUsingOSDObjects()!=1) { //call Video for init stuff\r
+ /*if (((VideoOMX*)Video::getInstance())->initUsingOSDObjects()!=1) { //call Video for init stuff\r
return 0;\r
- }\r
+ }*/\r
InitializeMagick("");\r
\r
pthread_cond_init(&vgtaskCond, NULL);\r
\r
}\r
\r
+int OsdOpenVG::stopUpdate()\r
+{\r
+ threadStop();\r
+ processTasks();\r
+ return 1;\r
+}\r
+\r
\r
int OsdOpenVG::shutdown()\r
{\r
\r
taskmutex.Lock();\r
vgmutex.Lock();\r
- (((VideoOMX*)Video::getInstance())->shutdownUsingOSDObjects());\r
+ //(((VideoOMX*)Video::getInstance())->shutdownUsingOSDObjects());\r
\r
FT_Done_Face(ft_face);\r
vgDestroyFont(vgfont);\r
\r
int init(void* device);\r
int shutdown();\r
+ int stopUpdate();\r
\r
\r
\r
#include "woptionpane.h"
#include "osdopenvg.h"
#include "boxstack.h"
+#include "remote.h"
#include <linux/fb.h>
setTVsize(ASPECT4X3);
selectVideoMode(0);
+ OMX_ERRORTYPE error;
+ error = OMX_Init();
+ if (error != OMX_ErrorNone) {
+ Log::getInstance()->log("Video", Log::DEBUG, "Init OMX failed %x",
+ error);
+ return 0;
+ }
+
return 1;
}
-int VideoOMX::initUsingOSDObjects()
-{
-
-// we are called before the audio
- OMX_ERRORTYPE error;
- error=OMX_Init();
- if (error!=OMX_ErrorNone) {
- Log::getInstance()->log("Video", Log::DEBUG, "Init OMX failed %x", error);
- return 0;
- }
- return 1;
-}
OMX_ERRORTYPE VideoOMX::EventHandler_OMX(OMX_IN OMX_HANDLETYPE handle,OMX_IN OMX_PTR appdata,
//TODO reinit osd
Log::getInstance()->log("Video", Log::NOTICE, "signalOff");
vc_tv_power_off();
+ Osd::getInstance()->stopUpdate(); // turn off drawing thread
signalon=false;
return 1;
}
int VideoOMX::signalOn()
{
if (!signalon) {
+ Log::getInstance()->log("Video", Log::NOTICE, "signalOn");
Osd::getInstance()->shutdown();
+ Remote::getInstance()->shutdown();
selectVideoMode(0);
+ Remote::getInstance()->init("");
Osd::getInstance()->restore();
Osd::getInstance()->init((void*)"");
BoxStack::getInstance()->redrawAllBoxes();
int test2();\r
#endif\r
\r
- int initUsingOSDObjects();\r
- int shutdownUsingOSDObjects() {return shutdown();};\r
+\r
\r
static inline OMX_TICKS intToOMXTicks(long long pts) {\r
OMX_TICKS temp;\r