XBMC video checker added

This commit is contained in:
johan
2013-08-23 20:44:53 +02:00
parent 3d02fecc7a
commit c4eb715592
6 changed files with 139 additions and 0 deletions

View File

@@ -6,4 +6,5 @@ target_link_libraries(hyperiond
bootsequence
hyperion
dispmanx-grabber
xbmcvideochecker
jsonserver)

View File

@@ -15,6 +15,9 @@
// Dispmanx grabber includes
#include <dispmanx-grabber/DispmanxWrapper.h>
// XBMC Video checker includes
#include <xbmcvideochecker/XBMCVideoChecker.h>
// JsonServer includes
#include <jsonserver/JsonServer.h>
@@ -48,6 +51,9 @@ int main(int argc, char** argv)
RainbowBootSequence bootSequence(&hyperion);
bootSequence.start();
XBMCVideoChecker xbmcVideoChecker("127.0.0.1", 1000, &hyperion, 127);
xbmcVideoChecker.start();
DispmanxWrapper dispmanx(64, 64, 10, &hyperion);
dispmanx.start();
std::cout << "Frame grabber created and started" << std::endl;