2009-01-15 06:48:15 +00:00
|
|
|
#include "PluginVideo.h"
|
|
|
|
|
2009-02-08 10:09:26 +00:00
|
|
|
namespace Common
|
|
|
|
{
|
2009-02-20 22:04:52 +00:00
|
|
|
|
|
|
|
PluginVideo::PluginVideo(const char *_Filename) : CPlugin(_Filename), validVideo(false)
|
|
|
|
{
|
2009-01-31 23:47:45 +00:00
|
|
|
Video_Prepare = 0;
|
|
|
|
Video_SendFifoData = 0;
|
|
|
|
Video_UpdateXFB = 0;
|
|
|
|
Video_EnterLoop = 0;
|
2009-02-20 22:04:52 +00:00
|
|
|
Video_ExitLoop = 0;
|
2009-01-31 23:47:45 +00:00
|
|
|
Video_Screenshot = 0;
|
|
|
|
Video_AddMessage = 0;
|
|
|
|
|
2009-02-20 22:04:52 +00:00
|
|
|
Video_Prepare = reinterpret_cast<TVideo_Prepare>
|
|
|
|
(LoadSymbol("Video_Prepare"));
|
2009-01-15 06:48:15 +00:00
|
|
|
Video_SendFifoData = reinterpret_cast<TVideo_SendFifoData>
|
2009-02-20 22:04:52 +00:00
|
|
|
(LoadSymbol("Video_SendFifoData"));
|
|
|
|
Video_UpdateXFB = reinterpret_cast<TVideo_UpdateXFB>
|
|
|
|
(LoadSymbol("Video_UpdateXFB"));
|
|
|
|
Video_Screenshot = reinterpret_cast<TVideo_Screenshot>
|
|
|
|
(LoadSymbol("Video_Screenshot"));
|
|
|
|
Video_EnterLoop = reinterpret_cast<TVideo_EnterLoop>
|
|
|
|
(LoadSymbol("Video_EnterLoop"));
|
|
|
|
Video_ExitLoop = reinterpret_cast<TVideo_ExitLoop>
|
|
|
|
(LoadSymbol("Video_ExitLoop"));
|
|
|
|
Video_AddMessage = reinterpret_cast<TVideo_AddMessage>
|
|
|
|
(LoadSymbol("Video_AddMessage"));
|
2009-01-15 06:48:15 +00:00
|
|
|
|
2009-02-20 22:04:52 +00:00
|
|
|
if ((Video_Prepare != 0) &&
|
|
|
|
(Video_SendFifoData != 0) &&
|
|
|
|
(Video_UpdateXFB != 0) &&
|
|
|
|
(Video_EnterLoop != 0) &&
|
|
|
|
(Video_ExitLoop != 0) &&
|
|
|
|
(Video_Screenshot != 0) &&
|
|
|
|
(Video_AddMessage != 0))
|
|
|
|
validVideo = true;
|
2009-01-15 06:48:15 +00:00
|
|
|
}
|
2009-02-20 22:04:52 +00:00
|
|
|
|
|
|
|
PluginVideo::~PluginVideo() {}
|
|
|
|
|
|
|
|
} // namespace
|