mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
Merge remote-tracking branch 'origin/master'
Former-commit-id: 8b2c8b1c284cfdf6ab29c209c454452bff37c4ec
This commit is contained in:
commit
93e33c16a0
@ -73,11 +73,11 @@ include_directories("${PROJECT_BINARY_DIR}")
|
|||||||
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
|
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
|
||||||
|
|
||||||
if(ENABLE_QT5)
|
if(ENABLE_QT5)
|
||||||
ADD_DEFINITIONS ( -DENABLE_QT5 )
|
ADD_DEFINITIONS ( -DENABLE_QT5 )
|
||||||
#find_package(Qt5Widgets)
|
#find_package(Qt5Widgets)
|
||||||
else(ENABLE_QT5)
|
else(ENABLE_QT5)
|
||||||
# Add specific cmake modules to find qt4 (default version finds first available QT which might not be qt4)
|
# Add specific cmake modules to find qt4 (default version finds first available QT which might not be qt4)
|
||||||
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/cmake/qt4)
|
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/cmake/qt4)
|
||||||
endif(ENABLE_QT5)
|
endif(ENABLE_QT5)
|
||||||
|
|
||||||
# Define the global output path of binaries
|
# Define the global output path of binaries
|
||||||
@ -100,23 +100,23 @@ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x -Wall")
|
|||||||
|
|
||||||
if(ENABLE_QT5)
|
if(ENABLE_QT5)
|
||||||
#find_package(Qt5Core REQUIRED)
|
#find_package(Qt5Core REQUIRED)
|
||||||
find_package(Qt5 COMPONENTS Core Gui Widgets Network REQUIRED)
|
find_package(Qt5 COMPONENTS Core Gui Widgets Network REQUIRED)
|
||||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${Qt5Widgets_EXECUTABLE_COMPILE_FLAGS}")
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${Qt5Widgets_EXECUTABLE_COMPILE_FLAGS}")
|
||||||
# set(CMAKE_CXX_FLAGS "-fPIC")
|
# set(CMAKE_CXX_FLAGS "-fPIC")
|
||||||
else(ENABLE_QT5)
|
else(ENABLE_QT5)
|
||||||
# Configure the use of QT4
|
# Configure the use of QT4
|
||||||
find_package(Qt4 COMPONENTS QtCore QtGui QtNetwork REQUIRED QUIET)
|
find_package(Qt4 COMPONENTS QtCore QtNetwork QtGui REQUIRED QUIET)
|
||||||
endif(ENABLE_QT5)
|
endif(ENABLE_QT5)
|
||||||
|
|
||||||
#add libusb and pthreads
|
#add libusb and pthreads
|
||||||
find_package(libusb-1.0 REQUIRED)
|
find_package(libusb-1.0 REQUIRED)
|
||||||
find_package(Threads REQUIRED)
|
find_package(Threads REQUIRED)
|
||||||
if(ENABLE_QT5)
|
if(ENABLE_QT5)
|
||||||
#include(${QT_USE_FILE})
|
#include(${QT_USE_FILE})
|
||||||
add_definitions(${QT_DEFINITIONS})
|
add_definitions(${QT_DEFINITIONS})
|
||||||
else(ENABLE_QT5)
|
else(ENABLE_QT5)
|
||||||
include(${QT_USE_FILE})
|
include(${QT_USE_FILE})
|
||||||
add_definitions(${QT_DEFINITIONS})
|
add_definitions(${QT_DEFINITIONS})
|
||||||
endif(ENABLE_QT5)
|
endif(ENABLE_QT5)
|
||||||
|
|
||||||
# TODO[TvdZ]: This linking directory should only be added if we are cross compiling
|
# TODO[TvdZ]: This linking directory should only be added if we are cross compiling
|
||||||
|
@ -134,18 +134,20 @@
|
|||||||
// "forwarder" :
|
// "forwarder" :
|
||||||
// {
|
// {
|
||||||
// "proto" : ["127.0.0.1:19447"],
|
// "proto" : ["127.0.0.1:19447"],
|
||||||
// "json" : ["127.0.0.1:19446"]
|
// "json" : ["127.0.0.1:19446"]
|
||||||
// },
|
// },
|
||||||
|
|
||||||
/// The configuration for the frame-grabber, contains the following items:
|
/// The configuration for the frame-grabber, contains the following items:
|
||||||
/// * width : The width of the grabbed frames [pixels]
|
/// * width : The width of the grabbed frames [pixels]
|
||||||
/// * height : The height of the grabbed frames [pixels]
|
/// * height : The height of the grabbed frames [pixels]
|
||||||
/// * frequency_Hz : The frequency of the frame grab [Hz]
|
/// * frequency_Hz : The frequency of the frame grab [Hz]
|
||||||
|
/// * priority : The priority
|
||||||
"framegrabber" :
|
"framegrabber" :
|
||||||
{
|
{
|
||||||
"width" : 80,
|
"width" : 80,
|
||||||
"height" : 45,
|
"height" : 45,
|
||||||
"frequency_Hz" : 10.0
|
"frequency_Hz" : 10.0,
|
||||||
|
"priority" : 900
|
||||||
},
|
},
|
||||||
|
|
||||||
/// The configuration of the Kodi connection used to enable and disable the frame-grabber. Contains the following fields:
|
/// The configuration of the Kodi connection used to enable and disable the frame-grabber. Contains the following fields:
|
||||||
@ -187,7 +189,8 @@
|
|||||||
/// * port : Port at which the boblight server is started
|
/// * port : Port at which the boblight server is started
|
||||||
// "boblightServer" :
|
// "boblightServer" :
|
||||||
// {
|
// {
|
||||||
// "port" : 19333
|
// "port" : 19333,
|
||||||
|
// "priority" : 900
|
||||||
// },
|
// },
|
||||||
|
|
||||||
/// Configuration for the embedded V4L2 grabber
|
/// Configuration for the embedded V4L2 grabber
|
||||||
|
@ -391,19 +391,20 @@
|
|||||||
"color" : [0,0,0],
|
"color" : [0,0,0],
|
||||||
"effect" : "Rainbow swirl fast",
|
"effect" : "Rainbow swirl fast",
|
||||||
"duration_ms" : 3000,
|
"duration_ms" : 3000,
|
||||||
"priority" : 900
|
"priority" : 990
|
||||||
},
|
},
|
||||||
|
|
||||||
/// The configuration for the frame-grabber, contains the following items:
|
/// The configuration for the frame-grabber, contains the following items:
|
||||||
/// * width : The width of the grabbed frames [pixels]
|
/// * width : The width of the grabbed frames [pixels]
|
||||||
/// * height : The height of the grabbed frames [pixels]
|
/// * height : The height of the grabbed frames [pixels]
|
||||||
/// * frequency_Hz : The frequency of the frame grab [Hz]
|
/// * frequency_Hz : The frequency of the frame grab [Hz]
|
||||||
// "framegrabber" :
|
/// "framegrabber" :
|
||||||
// {
|
/// {
|
||||||
// "width" : 64,
|
/// "width" : 64,
|
||||||
// "height" : 64,
|
/// "height" : 64,
|
||||||
// "frequency_Hz" : 10.0
|
/// "frequency_Hz" : 10.0,
|
||||||
// },
|
/// "priority" : 900
|
||||||
|
/// },
|
||||||
|
|
||||||
/// The configuration of the XBMC connection used to enable and disable the frame-grabber. Contains the following fields:
|
/// The configuration of the XBMC connection used to enable and disable the frame-grabber. Contains the following fields:
|
||||||
/// * xbmcAddress : The IP address of the XBMC-host
|
/// * xbmcAddress : The IP address of the XBMC-host
|
||||||
@ -444,7 +445,8 @@
|
|||||||
/// * port : Port at which the boblight server is started
|
/// * port : Port at which the boblight server is started
|
||||||
// "boblightServer" :
|
// "boblightServer" :
|
||||||
// {
|
// {
|
||||||
// "port" : 19333
|
// "port" : 19333,
|
||||||
|
// "priority" : 900
|
||||||
// },
|
// },
|
||||||
|
|
||||||
"endOfJson" : "endOfJson"
|
"endOfJson" : "endOfJson"
|
||||||
|
@ -25,7 +25,7 @@ public:
|
|||||||
/// @param hyperion Hyperion instance
|
/// @param hyperion Hyperion instance
|
||||||
/// @param port port number on which to start listening for connections
|
/// @param port port number on which to start listening for connections
|
||||||
///
|
///
|
||||||
BoblightServer(Hyperion * hyperion, uint16_t port = 19333);
|
BoblightServer(Hyperion * hyperion, const int priority, uint16_t port = 19333);
|
||||||
~BoblightServer();
|
~BoblightServer();
|
||||||
|
|
||||||
///
|
///
|
||||||
@ -54,4 +54,7 @@ private:
|
|||||||
|
|
||||||
/// List with open connections
|
/// List with open connections
|
||||||
QSet<BoblightClientConnection *> _openConnections;
|
QSet<BoblightClientConnection *> _openConnections;
|
||||||
|
|
||||||
|
/// hyperion priority
|
||||||
|
const int _priority;
|
||||||
};
|
};
|
||||||
|
@ -33,7 +33,7 @@ public:
|
|||||||
/// @param[in] updateRate_Hz The image grab rate [Hz]
|
/// @param[in] updateRate_Hz The image grab rate [Hz]
|
||||||
/// @param[in] hyperion The instance of Hyperion used to write the led values
|
/// @param[in] hyperion The instance of Hyperion used to write the led values
|
||||||
///
|
///
|
||||||
AmlogicWrapper(const unsigned grabWidth, const unsigned grabHeight, const unsigned updateRate_Hz, Hyperion * hyperion);
|
AmlogicWrapper(const unsigned grabWidth, const unsigned grabHeight, const unsigned updateRate_Hz, const int priority, Hyperion * hyperion);
|
||||||
|
|
||||||
///
|
///
|
||||||
/// Destructor of this dispmanx frame grabber. Releases any claimed resources.
|
/// Destructor of this dispmanx frame grabber. Releases any claimed resources.
|
||||||
|
@ -33,7 +33,7 @@ public:
|
|||||||
/// @param[in] updateRate_Hz The image grab rate [Hz]
|
/// @param[in] updateRate_Hz The image grab rate [Hz]
|
||||||
/// @param[in] hyperion The instance of Hyperion used to write the led values
|
/// @param[in] hyperion The instance of Hyperion used to write the led values
|
||||||
///
|
///
|
||||||
DispmanxWrapper(const unsigned grabWidth, const unsigned grabHeight, const unsigned updateRate_Hz, Hyperion * hyperion);
|
DispmanxWrapper(const unsigned grabWidth, const unsigned grabHeight, const unsigned updateRate_Hz, const int priority, Hyperion * hyperion);
|
||||||
|
|
||||||
///
|
///
|
||||||
/// Destructor of this dispmanx frame grabber. Releases any claimed resources.
|
/// Destructor of this dispmanx frame grabber. Releases any claimed resources.
|
||||||
|
@ -33,7 +33,7 @@ public:
|
|||||||
/// @param[in] updateRate_Hz The image grab rate [Hz]
|
/// @param[in] updateRate_Hz The image grab rate [Hz]
|
||||||
/// @param[in] hyperion The instance of Hyperion used to write the led values
|
/// @param[in] hyperion The instance of Hyperion used to write the led values
|
||||||
///
|
///
|
||||||
FramebufferWrapper(const std::string & device, const unsigned grabWidth, const unsigned grabHeight, const unsigned updateRate_Hz, Hyperion * hyperion);
|
FramebufferWrapper(const std::string & device, const unsigned grabWidth, const unsigned grabHeight, const unsigned updateRate_Hz, const int priority, Hyperion * hyperion);
|
||||||
|
|
||||||
///
|
///
|
||||||
/// Destructor of this framebuffer frame grabber. Releases any claimed resources.
|
/// Destructor of this framebuffer frame grabber. Releases any claimed resources.
|
||||||
|
@ -34,7 +34,7 @@ public:
|
|||||||
/// @param[in] updateRate_Hz The image grab rate [Hz]
|
/// @param[in] updateRate_Hz The image grab rate [Hz]
|
||||||
/// @param[in] hyperion The instance of Hyperion used to write the led values
|
/// @param[in] hyperion The instance of Hyperion used to write the led values
|
||||||
///
|
///
|
||||||
OsxWrapper(const unsigned display, const unsigned grabWidth, const unsigned grabHeight, const unsigned updateRate_Hz, Hyperion * hyperion);
|
OsxWrapper(const unsigned display, const unsigned grabWidth, const unsigned grabHeight, const unsigned updateRate_Hz, const int priority, Hyperion * hyperion);
|
||||||
|
|
||||||
///
|
///
|
||||||
/// Destructor of this osx frame grabber. Releases any claimed resources.
|
/// Destructor of this osx frame grabber. Releases any claimed resources.
|
||||||
|
@ -21,14 +21,14 @@
|
|||||||
// project includes
|
// project includes
|
||||||
#include "BoblightClientConnection.h"
|
#include "BoblightClientConnection.h"
|
||||||
|
|
||||||
BoblightClientConnection::BoblightClientConnection(QTcpSocket *socket, Hyperion * hyperion) :
|
BoblightClientConnection::BoblightClientConnection(QTcpSocket *socket, const int priority, Hyperion * hyperion) :
|
||||||
QObject(),
|
QObject(),
|
||||||
_locale(QLocale::C),
|
_locale(QLocale::C),
|
||||||
_socket(socket),
|
_socket(socket),
|
||||||
_imageProcessor(ImageProcessorFactory::getInstance().newImageProcessor()),
|
_imageProcessor(ImageProcessorFactory::getInstance().newImageProcessor()),
|
||||||
_hyperion(hyperion),
|
_hyperion(hyperion),
|
||||||
_receiveBuffer(),
|
_receiveBuffer(),
|
||||||
_priority(255),
|
_priority(priority),
|
||||||
_ledColors(hyperion->getLedCount(), ColorRgb::BLACK)
|
_ledColors(hyperion->getLedCount(), ColorRgb::BLACK)
|
||||||
{
|
{
|
||||||
// initalize the locale. Start with the default C-locale
|
// initalize the locale. Start with the default C-locale
|
||||||
|
@ -26,7 +26,7 @@ public:
|
|||||||
/// @param socket The Socket object for this connection
|
/// @param socket The Socket object for this connection
|
||||||
/// @param hyperion The Hyperion server
|
/// @param hyperion The Hyperion server
|
||||||
///
|
///
|
||||||
BoblightClientConnection(QTcpSocket * socket, Hyperion * hyperion);
|
BoblightClientConnection(QTcpSocket * socket, const int priority, Hyperion * hyperion);
|
||||||
|
|
||||||
///
|
///
|
||||||
/// Destructor
|
/// Destructor
|
||||||
|
@ -5,11 +5,12 @@
|
|||||||
#include <boblightserver/BoblightServer.h>
|
#include <boblightserver/BoblightServer.h>
|
||||||
#include "BoblightClientConnection.h"
|
#include "BoblightClientConnection.h"
|
||||||
|
|
||||||
BoblightServer::BoblightServer(Hyperion *hyperion, uint16_t port) :
|
BoblightServer::BoblightServer(Hyperion *hyperion, const int priority,uint16_t port) :
|
||||||
QObject(),
|
QObject(),
|
||||||
_hyperion(hyperion),
|
_hyperion(hyperion),
|
||||||
_server(),
|
_server(),
|
||||||
_openConnections()
|
_openConnections(),
|
||||||
|
_priority(priority)
|
||||||
{
|
{
|
||||||
if (!_server.listen(QHostAddress::Any, port))
|
if (!_server.listen(QHostAddress::Any, port))
|
||||||
{
|
{
|
||||||
@ -39,7 +40,7 @@ void BoblightServer::newConnection()
|
|||||||
if (socket != nullptr)
|
if (socket != nullptr)
|
||||||
{
|
{
|
||||||
std::cout << "New boblight connection" << std::endl;
|
std::cout << "New boblight connection" << std::endl;
|
||||||
BoblightClientConnection * connection = new BoblightClientConnection(socket, _hyperion);
|
BoblightClientConnection * connection = new BoblightClientConnection(socket, _priority, _hyperion);
|
||||||
_openConnections.insert(connection);
|
_openConnections.insert(connection);
|
||||||
|
|
||||||
// register slot for cleaning up after the connection closed
|
// register slot for cleaning up after the connection closed
|
||||||
|
@ -12,10 +12,10 @@
|
|||||||
#include <grabber/AmlogicGrabber.h>
|
#include <grabber/AmlogicGrabber.h>
|
||||||
|
|
||||||
|
|
||||||
AmlogicWrapper::AmlogicWrapper(const unsigned grabWidth, const unsigned grabHeight, const unsigned updateRate_Hz, Hyperion * hyperion) :
|
AmlogicWrapper::AmlogicWrapper(const unsigned grabWidth, const unsigned grabHeight, const unsigned updateRate_Hz, const int priority, Hyperion * hyperion) :
|
||||||
_updateInterval_ms(1000/updateRate_Hz),
|
_updateInterval_ms(1000/updateRate_Hz),
|
||||||
_timeout_ms(2 * _updateInterval_ms),
|
_timeout_ms(2 * _updateInterval_ms),
|
||||||
_priority(999),
|
_priority(priority),
|
||||||
_timer(),
|
_timer(),
|
||||||
_image(grabWidth, grabHeight),
|
_image(grabWidth, grabHeight),
|
||||||
_frameGrabber(new AmlogicGrabber(grabWidth, grabHeight)),
|
_frameGrabber(new AmlogicGrabber(grabWidth, grabHeight)),
|
||||||
|
@ -12,10 +12,10 @@
|
|||||||
#include <grabber/DispmanxFrameGrabber.h>
|
#include <grabber/DispmanxFrameGrabber.h>
|
||||||
|
|
||||||
|
|
||||||
DispmanxWrapper::DispmanxWrapper(const unsigned grabWidth, const unsigned grabHeight, const unsigned updateRate_Hz, Hyperion * hyperion) :
|
DispmanxWrapper::DispmanxWrapper(const unsigned grabWidth, const unsigned grabHeight, const unsigned updateRate_Hz, const int priority, Hyperion * hyperion) :
|
||||||
_updateInterval_ms(1000/updateRate_Hz),
|
_updateInterval_ms(1000/updateRate_Hz),
|
||||||
_timeout_ms(2 * _updateInterval_ms),
|
_timeout_ms(2 * _updateInterval_ms),
|
||||||
_priority(1000),
|
_priority(priority),
|
||||||
_timer(),
|
_timer(),
|
||||||
_image(grabWidth, grabHeight),
|
_image(grabWidth, grabHeight),
|
||||||
_frameGrabber(new DispmanxFrameGrabber(grabWidth, grabHeight)),
|
_frameGrabber(new DispmanxFrameGrabber(grabWidth, grabHeight)),
|
||||||
|
@ -1,39 +1,39 @@
|
|||||||
|
|
||||||
# Find the BCM-package (VC control)
|
# Find the BCM-package (VC control)
|
||||||
# find_package(BCM REQUIRED)
|
# find_package(BCM REQUIRED)
|
||||||
# include_directories(${BCM_INCLUDE_DIRS})
|
# include_directories(${BCM_INCLUDE_DIRS})
|
||||||
|
|
||||||
# Define the current source locations
|
# Define the current source locations
|
||||||
SET(CURRENT_HEADER_DIR ${CMAKE_SOURCE_DIR}/include/grabber)
|
SET(CURRENT_HEADER_DIR ${CMAKE_SOURCE_DIR}/include/grabber)
|
||||||
SET(CURRENT_SOURCE_DIR ${CMAKE_SOURCE_DIR}/libsrc/grabber/framebuffer)
|
SET(CURRENT_SOURCE_DIR ${CMAKE_SOURCE_DIR}/libsrc/grabber/framebuffer)
|
||||||
|
|
||||||
# Group the headers that go through the MOC compiler
|
# Group the headers that go through the MOC compiler
|
||||||
SET(FramebufferGrabberQT_HEADERS
|
SET(FramebufferGrabberQT_HEADERS
|
||||||
${CURRENT_HEADER_DIR}/FramebufferWrapper.h
|
${CURRENT_HEADER_DIR}/FramebufferWrapper.h
|
||||||
)
|
)
|
||||||
|
|
||||||
SET(FramebufferGrabberHEADERS
|
SET(FramebufferGrabberHEADERS
|
||||||
${CURRENT_SOURCE_DIR}/FramebufferFrameGrabber.h
|
${CURRENT_HEADER_DIR}/FramebufferFrameGrabber.h
|
||||||
)
|
)
|
||||||
|
|
||||||
SET(FramebufferGrabberSOURCES
|
SET(FramebufferGrabberSOURCES
|
||||||
${CURRENT_SOURCE_DIR}/FramebufferWrapper.cpp
|
${CURRENT_SOURCE_DIR}/FramebufferWrapper.cpp
|
||||||
${CURRENT_SOURCE_DIR}/FramebufferFrameGrabber.cpp
|
${CURRENT_SOURCE_DIR}/FramebufferFrameGrabber.cpp
|
||||||
)
|
)
|
||||||
|
|
||||||
if(ENABLE_QT5)
|
if(ENABLE_QT5)
|
||||||
QT5_WRAP_CPP(FramebufferGrabberHEADERS_MOC ${FramebufferGrabberQT_HEADERS})
|
QT5_WRAP_CPP(FramebufferGrabberHEADERS_MOC ${FramebufferGrabberQT_HEADERS})
|
||||||
else(ENABLE_QT5)
|
else(ENABLE_QT5)
|
||||||
QT4_WRAP_CPP(FramebufferGrabberHEADERS_MOC ${FramebufferGrabberQT_HEADERS})
|
QT4_WRAP_CPP(FramebufferGrabberHEADERS_MOC ${FramebufferGrabberQT_HEADERS})
|
||||||
endif(ENABLE_QT5)
|
endif(ENABLE_QT5)
|
||||||
|
|
||||||
add_library(framebuffer-grabber
|
add_library(framebuffer-grabber
|
||||||
${FramebufferGrabberHEADERS}
|
${FramebufferGrabberHEADERS}
|
||||||
${FramebufferGrabberQT_HEADERS}
|
${FramebufferGrabberQT_HEADERS}
|
||||||
${FramebufferGrabberHEADERS_MOC}
|
${FramebufferGrabberHEADERS_MOC}
|
||||||
${FramebufferGrabberSOURCES}
|
${FramebufferGrabberSOURCES}
|
||||||
)
|
)
|
||||||
|
|
||||||
target_link_libraries(framebuffer-grabber
|
target_link_libraries(framebuffer-grabber
|
||||||
hyperion
|
hyperion
|
||||||
${QT_LIBRARIES})
|
${QT_LIBRARIES})
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
||||||
// Local includes
|
// Local includes
|
||||||
#include "FramebufferFrameGrabber.h"
|
#include <grabber/FramebufferFrameGrabber.h>
|
||||||
|
|
||||||
FramebufferFrameGrabber::FramebufferFrameGrabber(const std::string & device, const unsigned width, const unsigned height) :
|
FramebufferFrameGrabber::FramebufferFrameGrabber(const std::string & device, const unsigned width, const unsigned height) :
|
||||||
_fbfd(0),
|
_fbfd(0),
|
||||||
|
@ -5,12 +5,12 @@
|
|||||||
|
|
||||||
// Framebuffer grabber includes
|
// Framebuffer grabber includes
|
||||||
#include <grabber/FramebufferWrapper.h>
|
#include <grabber/FramebufferWrapper.h>
|
||||||
#include "FramebufferFrameGrabber.h"
|
#include <grabber/FramebufferFrameGrabber.h>
|
||||||
|
|
||||||
FramebufferWrapper::FramebufferWrapper(const std::string & device, const unsigned grabWidth, const unsigned grabHeight, const unsigned updateRate_Hz, Hyperion * hyperion) :
|
FramebufferWrapper::FramebufferWrapper(const std::string & device, const unsigned grabWidth, const unsigned grabHeight, const unsigned updateRate_Hz, const int priority, Hyperion * hyperion) :
|
||||||
_updateInterval_ms(1000/updateRate_Hz),
|
_updateInterval_ms(1000/updateRate_Hz),
|
||||||
_timeout_ms(2 * _updateInterval_ms),
|
_timeout_ms(2 * _updateInterval_ms),
|
||||||
_priority(1000),
|
_priority(priority),
|
||||||
_timer(),
|
_timer(),
|
||||||
_image(grabWidth, grabHeight),
|
_image(grabWidth, grabHeight),
|
||||||
_frameGrabber(new FramebufferFrameGrabber(device, grabWidth, grabHeight)),
|
_frameGrabber(new FramebufferFrameGrabber(device, grabWidth, grabHeight)),
|
||||||
|
@ -1,34 +1,34 @@
|
|||||||
# Define the current source locations
|
# Define the current source locations
|
||||||
SET(CURRENT_HEADER_DIR ${CMAKE_SOURCE_DIR}/include/grabber)
|
SET(CURRENT_HEADER_DIR ${CMAKE_SOURCE_DIR}/include/grabber)
|
||||||
SET(CURRENT_SOURCE_DIR ${CMAKE_SOURCE_DIR}/libsrc/grabber/osx)
|
SET(CURRENT_SOURCE_DIR ${CMAKE_SOURCE_DIR}/libsrc/grabber/osx)
|
||||||
|
|
||||||
# Group the headers that go through the MOC compiler
|
# Group the headers that go through the MOC compiler
|
||||||
SET(OsxGrabberQT_HEADERS
|
SET(OsxGrabberQT_HEADERS
|
||||||
${CURRENT_HEADER_DIR}/OsxWrapper.h
|
${CURRENT_HEADER_DIR}/OsxWrapper.h
|
||||||
)
|
)
|
||||||
|
|
||||||
SET(OsxGrabberHEADERS
|
SET(OsxGrabberHEADERS
|
||||||
${CURRENT_SOURCE_DIR}/OsxFrameGrabber.h
|
${CURRENT_HEADER_DIR}/OsxFrameGrabber.h
|
||||||
)
|
)
|
||||||
|
|
||||||
SET(OsxGrabberSOURCES
|
SET(OsxGrabberSOURCES
|
||||||
${CURRENT_SOURCE_DIR}/OsxWrapper.cpp
|
${CURRENT_SOURCE_DIR}/OsxWrapper.cpp
|
||||||
${CURRENT_SOURCE_DIR}/OsxFrameGrabber.cpp
|
${CURRENT_SOURCE_DIR}/OsxFrameGrabber.cpp
|
||||||
)
|
)
|
||||||
|
|
||||||
if(ENABLE_QT5)
|
if(ENABLE_QT5)
|
||||||
QT5_WRAP_CPP(OsxGrabberHEADERS_MOC ${OsxGrabberQT_HEADERS})
|
QT5_WRAP_CPP(OsxGrabberHEADERS_MOC ${OsxGrabberQT_HEADERS})
|
||||||
else(ENABLE_QT5)
|
else(ENABLE_QT5)
|
||||||
QT4_WRAP_CPP(OsxGrabberHEADERS_MOC ${OsxGrabberQT_HEADERS})
|
QT4_WRAP_CPP(OsxGrabberHEADERS_MOC ${OsxGrabberQT_HEADERS})
|
||||||
endif(ENABLE_QT5)
|
endif(ENABLE_QT5)
|
||||||
|
|
||||||
add_library(osx-grabber
|
add_library(osx-grabber
|
||||||
${OsxGrabberHEADERS}
|
${OsxGrabberHEADERS}
|
||||||
${OsxGrabberQT_HEADERS}
|
${OsxGrabberQT_HEADERS}
|
||||||
${OsxGrabberHEADERS_MOC}
|
${OsxGrabberHEADERS_MOC}
|
||||||
${OsxGrabberSOURCES}
|
${OsxGrabberSOURCES}
|
||||||
)
|
)
|
||||||
|
|
||||||
target_link_libraries(osx-grabber
|
target_link_libraries(osx-grabber
|
||||||
hyperion
|
hyperion
|
||||||
${QT_LIBRARIES})
|
${QT_LIBRARIES})
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
||||||
// Local includes
|
// Local includes
|
||||||
#include "OsxFrameGrabber.h"
|
#include <grabber/OsxFrameGrabber.h>
|
||||||
|
|
||||||
OsxFrameGrabber::OsxFrameGrabber(const unsigned display, const unsigned width, const unsigned height) :
|
OsxFrameGrabber::OsxFrameGrabber(const unsigned display, const unsigned width, const unsigned height) :
|
||||||
_screenIndex(display),
|
_screenIndex(display),
|
||||||
|
@ -5,12 +5,12 @@
|
|||||||
|
|
||||||
// Osx grabber includes
|
// Osx grabber includes
|
||||||
#include <grabber/OsxWrapper.h>
|
#include <grabber/OsxWrapper.h>
|
||||||
#include "OsxFrameGrabber.h"
|
#include <grabber/OsxFrameGrabber.h>
|
||||||
|
|
||||||
OsxWrapper::OsxWrapper(const unsigned display, const unsigned grabWidth, const unsigned grabHeight, const unsigned updateRate_Hz, Hyperion * hyperion) :
|
OsxWrapper::OsxWrapper(const unsigned display, const unsigned grabWidth, const unsigned grabHeight, const unsigned updateRate_Hz, const int priority, Hyperion * hyperion) :
|
||||||
_updateInterval_ms(1000/updateRate_Hz),
|
_updateInterval_ms(1000/updateRate_Hz),
|
||||||
_timeout_ms(2 * _updateInterval_ms),
|
_timeout_ms(2 * _updateInterval_ms),
|
||||||
_priority(1000),
|
_priority(priority),
|
||||||
_timer(),
|
_timer(),
|
||||||
_image(grabWidth, grabHeight),
|
_image(grabWidth, grabHeight),
|
||||||
_frameGrabber(new OsxFrameGrabber(display, grabWidth, grabHeight)),
|
_frameGrabber(new OsxFrameGrabber(display, grabWidth, grabHeight)),
|
||||||
|
@ -3,15 +3,15 @@ add_subdirectory(hyperion-remote)
|
|||||||
|
|
||||||
# The following clients depend on the protobuf library
|
# The following clients depend on the protobuf library
|
||||||
if(ENABLE_PROTOBUF)
|
if(ENABLE_PROTOBUF)
|
||||||
|
|
||||||
if (ENABLE_AMLOGIC)
|
if (ENABLE_AMLOGIC)
|
||||||
add_subdirectory(hyperion-aml)
|
add_subdirectory(hyperion-aml)
|
||||||
endif()
|
endif()
|
||||||
# Add the 'Video 4 Linux' grabber if it is enabled
|
|
||||||
if(ENABLE_V4L2)
|
if(ENABLE_V4L2)
|
||||||
add_subdirectory(hyperion-v4l2)
|
add_subdirectory(hyperion-v4l2)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
# Add the X11 grabber if it is enabled
|
|
||||||
if(ENABLE_X11)
|
if(ENABLE_X11)
|
||||||
add_subdirectory(hyperion-x11)
|
add_subdirectory(hyperion-x11)
|
||||||
endif()
|
endif()
|
||||||
@ -20,4 +20,12 @@ if(ENABLE_PROTOBUF)
|
|||||||
add_subdirectory(hyperion-dispmanx)
|
add_subdirectory(hyperion-dispmanx)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
if(ENABLE_FB)
|
||||||
|
add_subdirectory(hyperion-framebuffer)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(ENABLE_OSX)
|
||||||
|
add_subdirectory(hyperion-osx)
|
||||||
|
endif()
|
||||||
|
|
||||||
endif()
|
endif()
|
||||||
|
@ -4,8 +4,12 @@ cmake_minimum_required(VERSION 2.8)
|
|||||||
# Set the project name
|
# Set the project name
|
||||||
project(hyperion-aml)
|
project(hyperion-aml)
|
||||||
|
|
||||||
# find Qt4
|
# find QT
|
||||||
find_package(Qt4 REQUIRED QtCore QtGui QtNetwork)
|
if(ENABLE_QT5)
|
||||||
|
find_package(Qt5Widgets REQUIRED)
|
||||||
|
else(ENABLE_QT5)
|
||||||
|
find_package(Qt4 REQUIRED QtCore QtGui QtNetwork)
|
||||||
|
endif(ENABLE_QT5)
|
||||||
|
|
||||||
include_directories(
|
include_directories(
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/../../libsrc/protoserver
|
${CMAKE_CURRENT_BINARY_DIR}/../../libsrc/protoserver
|
||||||
@ -31,13 +35,13 @@ else(ENABLE_QT5)
|
|||||||
QT4_WRAP_CPP(Hyperion_AML_HEADERS_MOC ${Hyperion_AML_QT_HEADERS})
|
QT4_WRAP_CPP(Hyperion_AML_HEADERS_MOC ${Hyperion_AML_QT_HEADERS})
|
||||||
endif(ENABLE_QT5)
|
endif(ENABLE_QT5)
|
||||||
|
|
||||||
add_executable(hyperion-amlogic
|
add_executable(${PROJECT_NAME}
|
||||||
${Hyperion_AML_HEADERS}
|
${Hyperion_AML_HEADERS}
|
||||||
${Hyperion_AML_SOURCES}
|
${Hyperion_AML_SOURCES}
|
||||||
${Hyperion_AML_HEADERS_MOC}
|
${Hyperion_AML_HEADERS_MOC}
|
||||||
)
|
)
|
||||||
|
|
||||||
target_link_libraries(hyperion-amlogic
|
target_link_libraries(${PROJECT_NAME}
|
||||||
getoptPlusPlus
|
getoptPlusPlus
|
||||||
blackborder
|
blackborder
|
||||||
hyperion-utils
|
hyperion-utils
|
||||||
@ -46,7 +50,8 @@ target_link_libraries(hyperion-amlogic
|
|||||||
pthread
|
pthread
|
||||||
)
|
)
|
||||||
|
|
||||||
qt4_use_modules(hyperion-amlogic
|
if(ENABLE_QT5)
|
||||||
Core
|
qt5_use_modules(${PROJECT_NAME} Widgets Core Gui Network)
|
||||||
Gui
|
else(ENABLE_QT5)
|
||||||
Network)
|
qt4_use_modules(${PROJECT_NAME} Core Gui Network )
|
||||||
|
endif(ENABLE_QT5)
|
||||||
|
@ -30,9 +30,9 @@ int main(int argc, char ** argv)
|
|||||||
OptionsParser optionParser("X11 capture application for Hyperion");
|
OptionsParser optionParser("X11 capture application for Hyperion");
|
||||||
ParameterSet & parameters = optionParser.getParameters();
|
ParameterSet & parameters = optionParser.getParameters();
|
||||||
|
|
||||||
IntParameter & argFps = parameters.add<IntParameter> ('f', "framerate", "Capture frame rate [default=10]");
|
IntParameter & argFps = parameters.add<IntParameter> ('f', "framerate", "Capture frame rate [default: 10]");
|
||||||
IntParameter & argWidth = parameters.add<IntParameter> (0x0, "width", "Width of the captured image [default=128]");
|
IntParameter & argWidth = parameters.add<IntParameter> (0x0, "width", "Width of the captured image [default: 128]");
|
||||||
IntParameter & argHeight = parameters.add<IntParameter> (0x0, "height", "Height of the captured image [default=128]");
|
IntParameter & argHeight = parameters.add<IntParameter> (0x0, "height", "Height of the captured image [default: 128]");
|
||||||
SwitchParameter<> & argScreenshot = parameters.add<SwitchParameter<>> (0x0, "screenshot", "Take a single screenshot, save it to file and quit");
|
SwitchParameter<> & argScreenshot = parameters.add<SwitchParameter<>> (0x0, "screenshot", "Take a single screenshot, save it to file and quit");
|
||||||
StringParameter & argAddress = parameters.add<StringParameter> ('a', "address", "Set the address of the hyperion server [default: 127.0.0.1:19445]");
|
StringParameter & argAddress = parameters.add<StringParameter> ('a', "address", "Set the address of the hyperion server [default: 127.0.0.1:19445]");
|
||||||
IntParameter & argPriority = parameters.add<IntParameter> ('p', "priority", "Use the provided priority channel (the lower the number, the higher the priority) [default: 800]");
|
IntParameter & argPriority = parameters.add<IntParameter> ('p', "priority", "Use the provided priority channel (the lower the number, the higher the priority) [default: 800]");
|
||||||
|
@ -4,10 +4,10 @@ cmake_minimum_required(VERSION 2.8)
|
|||||||
# Set the project name
|
# Set the project name
|
||||||
project(hyperion-dispmanx)
|
project(hyperion-dispmanx)
|
||||||
|
|
||||||
|
# find QT
|
||||||
if(ENABLE_QT5)
|
if(ENABLE_QT5)
|
||||||
find_package(Qt5Widgets REQUIRED)
|
find_package(Qt5Widgets REQUIRED)
|
||||||
else(ENABLE_QT5)
|
else(ENABLE_QT5)
|
||||||
# find Qt4
|
|
||||||
find_package(Qt4 REQUIRED QtCore QtGui QtNetwork )
|
find_package(Qt4 REQUIRED QtCore QtGui QtNetwork )
|
||||||
endif(ENABLE_QT5)
|
endif(ENABLE_QT5)
|
||||||
|
|
||||||
@ -55,11 +55,7 @@ target_link_libraries( ${PROJECT_NAME}
|
|||||||
)
|
)
|
||||||
|
|
||||||
if(ENABLE_QT5)
|
if(ENABLE_QT5)
|
||||||
qt5_use_modules(hyperion-dispmanx Widgets Core Gui Network)
|
qt5_use_modules(${PROJECT_NAME} Widgets Core Gui Network)
|
||||||
else(ENABLE_QT5)
|
else(ENABLE_QT5)
|
||||||
qt4_use_modules(hyperion-dispmanx
|
qt4_use_modules(${PROJECT_NAME} Core Gui Network )
|
||||||
Core
|
|
||||||
Gui
|
|
||||||
Network
|
|
||||||
)
|
|
||||||
endif(ENABLE_QT5)
|
endif(ENABLE_QT5)
|
||||||
|
@ -29,7 +29,7 @@ int main(int argc, char ** argv)
|
|||||||
OptionsParser optionParser("Dispmanx capture application for Hyperion");
|
OptionsParser optionParser("Dispmanx capture application for Hyperion");
|
||||||
ParameterSet & parameters = optionParser.getParameters();
|
ParameterSet & parameters = optionParser.getParameters();
|
||||||
|
|
||||||
IntParameter & argFps = parameters.add<IntParameter> ('f', "framerate", "Capture frame rate [default=10]");
|
IntParameter & argFps = parameters.add<IntParameter> ('f', "framerate", "Capture frame rate [default: 10]");
|
||||||
IntParameter & argWidth = parameters.add<IntParameter> (0x0, "width", "The width of the grabbed frames [pixels]");
|
IntParameter & argWidth = parameters.add<IntParameter> (0x0, "width", "The width of the grabbed frames [pixels]");
|
||||||
IntParameter & argHeight = parameters.add<IntParameter> (0x0, "height", "The height of the grabbed frames");
|
IntParameter & argHeight = parameters.add<IntParameter> (0x0, "height", "The height of the grabbed frames");
|
||||||
|
|
||||||
|
57
src/hyperion-framebuffer/CMakeLists.txt
Normal file
57
src/hyperion-framebuffer/CMakeLists.txt
Normal file
@ -0,0 +1,57 @@
|
|||||||
|
# Configure minimum CMAKE version
|
||||||
|
cmake_minimum_required(VERSION 2.8)
|
||||||
|
|
||||||
|
# Set the project name
|
||||||
|
project(hyperion-framebuffer)
|
||||||
|
|
||||||
|
# find QT
|
||||||
|
if(ENABLE_QT5)
|
||||||
|
find_package(Qt5Widgets REQUIRED)
|
||||||
|
else(ENABLE_QT5)
|
||||||
|
find_package(Qt4 REQUIRED QtCore QtGui QtNetwork )
|
||||||
|
endif(ENABLE_QT5)
|
||||||
|
|
||||||
|
include_directories(
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}/../../libsrc/protoserver
|
||||||
|
${QT_INCLUDES}
|
||||||
|
${PROTOBUF_INCLUDE_DIRS}
|
||||||
|
)
|
||||||
|
|
||||||
|
set(Hyperion_FB_QT_HEADERS
|
||||||
|
FramebufferWrapper.h
|
||||||
|
)
|
||||||
|
|
||||||
|
set(Hyperion_FB_HEADERS
|
||||||
|
)
|
||||||
|
|
||||||
|
set(Hyperion_FB_SOURCES
|
||||||
|
hyperion-framebuffer.cpp
|
||||||
|
FramebufferWrapper.cpp
|
||||||
|
)
|
||||||
|
|
||||||
|
if(ENABLE_QT5)
|
||||||
|
QT5_WRAP_CPP(Hyperion_FB_HEADERS_MOC ${Hyperion_FB_QT_HEADERS})
|
||||||
|
else(ENABLE_QT5)
|
||||||
|
QT4_WRAP_CPP(Hyperion_FB_HEADERS_MOC ${Hyperion_FB_QT_HEADERS})
|
||||||
|
endif(ENABLE_QT5)
|
||||||
|
|
||||||
|
add_executable( ${PROJECT_NAME}
|
||||||
|
${Hyperion_FB_HEADERS}
|
||||||
|
${Hyperion_FB_SOURCES}
|
||||||
|
${Hyperion_FB_HEADERS_MOC}
|
||||||
|
)
|
||||||
|
|
||||||
|
target_link_libraries( ${PROJECT_NAME}
|
||||||
|
getoptPlusPlus
|
||||||
|
blackborder
|
||||||
|
hyperion-utils
|
||||||
|
protoserver
|
||||||
|
framebuffer-grabber
|
||||||
|
pthread
|
||||||
|
)
|
||||||
|
|
||||||
|
if(ENABLE_QT5)
|
||||||
|
qt5_use_modules(${PROJECT_NAME} Widgets Core Gui Network)
|
||||||
|
else(ENABLE_QT5)
|
||||||
|
qt4_use_modules(${PROJECT_NAME} Core Gui Network )
|
||||||
|
endif(ENABLE_QT5)
|
37
src/hyperion-framebuffer/FramebufferWrapper.cpp
Normal file
37
src/hyperion-framebuffer/FramebufferWrapper.cpp
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
|
||||||
|
// Hyperion-AmLogic includes
|
||||||
|
#include "FramebufferWrapper.h"
|
||||||
|
|
||||||
|
FramebufferWrapper::FramebufferWrapper(const std::string & device, const unsigned grabWidth, const unsigned grabHeight, const unsigned updateRate_Hz) :
|
||||||
|
_timer(this),
|
||||||
|
_grabber(device,grabWidth, grabHeight)
|
||||||
|
{
|
||||||
|
_timer.setSingleShot(false);
|
||||||
|
_timer.setInterval(updateRate_Hz);
|
||||||
|
|
||||||
|
// Connect capturing to the timeout signal of the timer
|
||||||
|
connect(&_timer, SIGNAL(timeout()), this, SLOT(capture()));
|
||||||
|
}
|
||||||
|
|
||||||
|
const Image<ColorRgb> & FramebufferWrapper::getScreenshot()
|
||||||
|
{
|
||||||
|
capture();
|
||||||
|
return _screenshot;
|
||||||
|
}
|
||||||
|
|
||||||
|
void FramebufferWrapper::start()
|
||||||
|
{
|
||||||
|
_timer.start();
|
||||||
|
}
|
||||||
|
|
||||||
|
void FramebufferWrapper::stop()
|
||||||
|
{
|
||||||
|
_timer.stop();
|
||||||
|
}
|
||||||
|
|
||||||
|
void FramebufferWrapper::capture()
|
||||||
|
{
|
||||||
|
_grabber.grabFrame(_screenshot);
|
||||||
|
|
||||||
|
emit sig_screenshot(_screenshot);
|
||||||
|
}
|
42
src/hyperion-framebuffer/FramebufferWrapper.h
Normal file
42
src/hyperion-framebuffer/FramebufferWrapper.h
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
|
||||||
|
// QT includes
|
||||||
|
#include <QTimer>
|
||||||
|
|
||||||
|
// Hyperion-Dispmanx includes
|
||||||
|
#include <grabber/FramebufferFrameGrabber.h>
|
||||||
|
|
||||||
|
class FramebufferWrapper : public QObject
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
public:
|
||||||
|
FramebufferWrapper(const std::string & device, const unsigned grabWidth, const unsigned grabHeight, const unsigned updateRate_Hz);
|
||||||
|
|
||||||
|
const Image<ColorRgb> & getScreenshot();
|
||||||
|
|
||||||
|
///
|
||||||
|
/// Starts the timed capturing of screenshots
|
||||||
|
///
|
||||||
|
void start();
|
||||||
|
|
||||||
|
void stop();
|
||||||
|
|
||||||
|
signals:
|
||||||
|
void sig_screenshot(const Image<ColorRgb> & screenshot);
|
||||||
|
|
||||||
|
private slots:
|
||||||
|
///
|
||||||
|
/// Performs a single screenshot capture and publishes the capture screenshot on the screenshot signal.
|
||||||
|
///
|
||||||
|
void capture();
|
||||||
|
|
||||||
|
private:
|
||||||
|
/// The QT timer to generate capture-publish events
|
||||||
|
QTimer _timer;
|
||||||
|
|
||||||
|
/// The grabber for creating screenshots
|
||||||
|
FramebufferFrameGrabber _grabber;
|
||||||
|
|
||||||
|
// image buffers
|
||||||
|
Image<ColorRgb> _screenshot;
|
||||||
|
|
||||||
|
};
|
101
src/hyperion-framebuffer/hyperion-framebuffer.cpp
Normal file
101
src/hyperion-framebuffer/hyperion-framebuffer.cpp
Normal file
@ -0,0 +1,101 @@
|
|||||||
|
|
||||||
|
|
||||||
|
// QT includes
|
||||||
|
#include <QCoreApplication>
|
||||||
|
#include <QImage>
|
||||||
|
|
||||||
|
// getoptPlusPLus includes
|
||||||
|
#include <getoptPlusPlus/getoptpp.h>
|
||||||
|
|
||||||
|
#include <protoserver/ProtoConnectionWrapper.h>
|
||||||
|
#include "FramebufferWrapper.h"
|
||||||
|
|
||||||
|
using namespace vlofgren;
|
||||||
|
|
||||||
|
// save the image as screenshot
|
||||||
|
void saveScreenshot(const char * filename, const Image<ColorRgb> & image)
|
||||||
|
{
|
||||||
|
// store as PNG
|
||||||
|
QImage pngImage((const uint8_t *) image.memptr(), image.width(), image.height(), 3*image.width(), QImage::Format_RGB888);
|
||||||
|
pngImage.save(filename);
|
||||||
|
}
|
||||||
|
|
||||||
|
int main(int argc, char ** argv)
|
||||||
|
{
|
||||||
|
QCoreApplication app(argc, argv);
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
// create the option parser and initialize all parameters
|
||||||
|
OptionsParser optionParser("X11 capture application for Hyperion");
|
||||||
|
ParameterSet & parameters = optionParser.getParameters();
|
||||||
|
|
||||||
|
StringParameter & argDevice = parameters.add<StringParameter> ('d', "device", "Set the video device [default: /dev/video0]");
|
||||||
|
IntParameter & argFps = parameters.add<IntParameter> ('f', "framerate", "Capture frame rate [default: 10]");
|
||||||
|
IntParameter & argWidth = parameters.add<IntParameter> (0x0, "width", "Width of the captured image [default: 128]");
|
||||||
|
IntParameter & argHeight = parameters.add<IntParameter> (0x0, "height", "Height of the captured image [default: 128]");
|
||||||
|
SwitchParameter<> & argScreenshot = parameters.add<SwitchParameter<>> (0x0, "screenshot", "Take a single screenshot, save it to file and quit");
|
||||||
|
StringParameter & argAddress = parameters.add<StringParameter> ('a', "address", "Set the address of the hyperion server [default: 127.0.0.1:19445]");
|
||||||
|
IntParameter & argPriority = parameters.add<IntParameter> ('p', "priority", "Use the provided priority channel (the lower the number, the higher the priority) [default: 800]");
|
||||||
|
SwitchParameter<> & argSkipReply = parameters.add<SwitchParameter<>> (0x0, "skip-reply", "Do not receive and check reply messages from Hyperion");
|
||||||
|
SwitchParameter<> & argHelp = parameters.add<SwitchParameter<>> ('h', "help", "Show this help message and exit");
|
||||||
|
|
||||||
|
// set defaults
|
||||||
|
argFps.setDefault(10);
|
||||||
|
argWidth.setDefault(160);
|
||||||
|
argHeight.setDefault(160);
|
||||||
|
argAddress.setDefault("127.0.0.1:19445");
|
||||||
|
argPriority.setDefault(800);
|
||||||
|
argDevice.setDefault("/dev/video0");
|
||||||
|
|
||||||
|
// parse all options
|
||||||
|
optionParser.parse(argc, const_cast<const char **>(argv));
|
||||||
|
|
||||||
|
// check if we need to display the usage. exit if we do.
|
||||||
|
if (argHelp.isSet())
|
||||||
|
{
|
||||||
|
optionParser.usage();
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
int width = argWidth.getValue();
|
||||||
|
int height = argHeight.getValue();
|
||||||
|
if (width < 160 || height < 160)
|
||||||
|
{
|
||||||
|
std::cout << "Minimum width and height is 160" << std::endl;
|
||||||
|
width = std::max(160, width);
|
||||||
|
height = std::max(160, height);
|
||||||
|
}
|
||||||
|
|
||||||
|
int grabInterval = 1000 / argFps.getValue();
|
||||||
|
FramebufferWrapper fbWrapper(argDevice.getValue(), argWidth.getValue(), argHeight.getValue(), grabInterval);
|
||||||
|
|
||||||
|
if (argScreenshot.isSet())
|
||||||
|
{
|
||||||
|
// Capture a single screenshot and finish
|
||||||
|
const Image<ColorRgb> & screenshot = fbWrapper.getScreenshot();
|
||||||
|
saveScreenshot("screenshot.png", screenshot);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// Create the Proto-connection with hyperiond
|
||||||
|
ProtoConnectionWrapper protoWrapper(argAddress.getValue(), argPriority.getValue(), 1000, argSkipReply.isSet());
|
||||||
|
|
||||||
|
// Connect the screen capturing to the proto processing
|
||||||
|
QObject::connect(&fbWrapper, SIGNAL(sig_screenshot(const Image<ColorRgb> &)), &protoWrapper, SLOT(receiveImage(Image<ColorRgb>)));
|
||||||
|
|
||||||
|
// Start the capturing
|
||||||
|
fbWrapper.start();
|
||||||
|
|
||||||
|
// Start the application
|
||||||
|
app.exec();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (const std::runtime_error & e)
|
||||||
|
{
|
||||||
|
// An error occured. Display error and quit
|
||||||
|
std::cerr << e.what() << std::endl;
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
57
src/hyperion-osx/CMakeLists.txt
Normal file
57
src/hyperion-osx/CMakeLists.txt
Normal file
@ -0,0 +1,57 @@
|
|||||||
|
# Configure minimum CMAKE version
|
||||||
|
cmake_minimum_required(VERSION 2.8)
|
||||||
|
|
||||||
|
# Set the project name
|
||||||
|
project(hyperion-osx)
|
||||||
|
|
||||||
|
# find QT
|
||||||
|
if(ENABLE_QT5)
|
||||||
|
find_package(Qt5Widgets REQUIRED)
|
||||||
|
else(ENABLE_QT5)
|
||||||
|
find_package(Qt4 REQUIRED QtCore QtGui QtNetwork )
|
||||||
|
endif(ENABLE_QT5)
|
||||||
|
|
||||||
|
include_directories(
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}/../../libsrc/protoserver
|
||||||
|
${QT_INCLUDES}
|
||||||
|
${PROTOBUF_INCLUDE_DIRS}
|
||||||
|
)
|
||||||
|
|
||||||
|
set(Hyperion_OSX_QT_HEADERS
|
||||||
|
OsxWrapper.h
|
||||||
|
)
|
||||||
|
|
||||||
|
set(Hyperion_OSX_HEADERS
|
||||||
|
)
|
||||||
|
|
||||||
|
set(Hyperion_OSX_SOURCES
|
||||||
|
hyperion-osx.cpp
|
||||||
|
OsxWrapper.cpp
|
||||||
|
)
|
||||||
|
|
||||||
|
if(ENABLE_QT5)
|
||||||
|
QT5_WRAP_CPP(Hyperion_OSX_HEADERS_MOC ${Hyperion_OSX_QT_HEADERS})
|
||||||
|
else(ENABLE_QT5)
|
||||||
|
QT4_WRAP_CPP(Hyperion_OSX_HEADERS_MOC ${Hyperion_OSX_QT_HEADERS})
|
||||||
|
endif(ENABLE_QT5)
|
||||||
|
|
||||||
|
add_executable( ${PROJECT_NAME}
|
||||||
|
${Hyperion_OSX_HEADERS}
|
||||||
|
${Hyperion_OSX_SOURCES}
|
||||||
|
${Hyperion_OSX_HEADERS_MOC}
|
||||||
|
)
|
||||||
|
|
||||||
|
target_link_libraries( ${PROJECT_NAME}
|
||||||
|
getoptPlusPlus
|
||||||
|
blackborder
|
||||||
|
hyperion-utils
|
||||||
|
protoserver
|
||||||
|
osx-grabber
|
||||||
|
pthread
|
||||||
|
)
|
||||||
|
|
||||||
|
if(ENABLE_QT5)
|
||||||
|
qt5_use_modules(${PROJECT_NAME} Widgets Core Gui Network)
|
||||||
|
else(ENABLE_QT5)
|
||||||
|
qt4_use_modules(${PROJECT_NAME} Core Gui Network )
|
||||||
|
endif(ENABLE_QT5)
|
36
src/hyperion-osx/OsxWrapper.cpp
Normal file
36
src/hyperion-osx/OsxWrapper.cpp
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
|
||||||
|
// Hyperion-AmLogic includes
|
||||||
|
#include "OsxWrapper.h"
|
||||||
|
|
||||||
|
OsxWrapper::OsxWrapper(const unsigned display, const unsigned grabWidth, const unsigned grabHeight, const unsigned updateRate_Hz) :
|
||||||
|
_timer(this),
|
||||||
|
_grabber(display,grabWidth, grabHeight)
|
||||||
|
{
|
||||||
|
_timer.setSingleShot(false);
|
||||||
|
_timer.setInterval(updateRate_Hz);
|
||||||
|
|
||||||
|
// Connect capturing to the timeout signal of the timer
|
||||||
|
connect(&_timer, SIGNAL(timeout()), this, SLOT(capture()));
|
||||||
|
}
|
||||||
|
|
||||||
|
const Image<ColorRgb> & OsxWrapper::getScreenshot()
|
||||||
|
{
|
||||||
|
capture();
|
||||||
|
return _screenshot;
|
||||||
|
}
|
||||||
|
|
||||||
|
void OsxWrapper::start()
|
||||||
|
{
|
||||||
|
_timer.start();
|
||||||
|
}
|
||||||
|
|
||||||
|
void OsxWrapper::stop()
|
||||||
|
{
|
||||||
|
_timer.stop();
|
||||||
|
}
|
||||||
|
|
||||||
|
void OsxWrapper::capture()
|
||||||
|
{
|
||||||
|
_grabber.grabFrame(_screenshot);
|
||||||
|
emit sig_screenshot(_screenshot);
|
||||||
|
}
|
42
src/hyperion-osx/OsxWrapper.h
Normal file
42
src/hyperion-osx/OsxWrapper.h
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
|
||||||
|
// QT includes
|
||||||
|
#include <QTimer>
|
||||||
|
|
||||||
|
// Hyperion-Dispmanx includes
|
||||||
|
#include <grabber/OsxFrameGrabber.h>
|
||||||
|
|
||||||
|
class OsxWrapper : public QObject
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
public:
|
||||||
|
OsxWrapper(const unsigned display, const unsigned grabWidth, const unsigned grabHeight, const unsigned updateRate_Hz);
|
||||||
|
|
||||||
|
const Image<ColorRgb> & getScreenshot();
|
||||||
|
|
||||||
|
///
|
||||||
|
/// Starts the timed capturing of screenshots
|
||||||
|
///
|
||||||
|
void start();
|
||||||
|
|
||||||
|
void stop();
|
||||||
|
|
||||||
|
signals:
|
||||||
|
void sig_screenshot(const Image<ColorRgb> & screenshot);
|
||||||
|
|
||||||
|
private slots:
|
||||||
|
///
|
||||||
|
/// Performs a single screenshot capture and publishes the capture screenshot on the screenshot signal.
|
||||||
|
///
|
||||||
|
void capture();
|
||||||
|
|
||||||
|
private:
|
||||||
|
/// The QT timer to generate capture-publish events
|
||||||
|
QTimer _timer;
|
||||||
|
|
||||||
|
/// The grabber for creating screenshots
|
||||||
|
OsxFrameGrabber _grabber;
|
||||||
|
|
||||||
|
// image buffers
|
||||||
|
Image<ColorRgb> _screenshot;
|
||||||
|
|
||||||
|
};
|
101
src/hyperion-osx/hyperion-osx.cpp
Normal file
101
src/hyperion-osx/hyperion-osx.cpp
Normal file
@ -0,0 +1,101 @@
|
|||||||
|
|
||||||
|
|
||||||
|
// QT includes
|
||||||
|
#include <QCoreApplication>
|
||||||
|
#include <QImage>
|
||||||
|
|
||||||
|
// getoptPlusPLus includes
|
||||||
|
#include <getoptPlusPlus/getoptpp.h>
|
||||||
|
|
||||||
|
#include <protoserver/ProtoConnectionWrapper.h>
|
||||||
|
#include "OsxWrapper.h"
|
||||||
|
|
||||||
|
using namespace vlofgren;
|
||||||
|
|
||||||
|
// save the image as screenshot
|
||||||
|
void saveScreenshot(const char * filename, const Image<ColorRgb> & image)
|
||||||
|
{
|
||||||
|
// store as PNG
|
||||||
|
QImage pngImage((const uint8_t *) image.memptr(), image.width(), image.height(), 3*image.width(), QImage::Format_RGB888);
|
||||||
|
pngImage.save(filename);
|
||||||
|
}
|
||||||
|
|
||||||
|
int main(int argc, char ** argv)
|
||||||
|
{
|
||||||
|
QCoreApplication app(argc, argv);
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
// create the option parser and initialize all parameters
|
||||||
|
OptionsParser optionParser("X11 capture application for Hyperion");
|
||||||
|
ParameterSet & parameters = optionParser.getParameters();
|
||||||
|
|
||||||
|
IntParameter & argDisplay = parameters.add<IntParameter> ('d', "display", "Set the display to capture [default: 0]");
|
||||||
|
IntParameter & argFps = parameters.add<IntParameter> ('f', "framerate", "Capture frame rate [default: 10]");
|
||||||
|
IntParameter & argWidth = parameters.add<IntParameter> (0x0, "width", "Width of the captured image [default: 128]");
|
||||||
|
IntParameter & argHeight = parameters.add<IntParameter> (0x0, "height", "Height of the captured image [default: 128]");
|
||||||
|
SwitchParameter<> & argScreenshot = parameters.add<SwitchParameter<>> (0x0, "screenshot", "Take a single screenshot, save it to file and quit");
|
||||||
|
StringParameter & argAddress = parameters.add<StringParameter> ('a', "address", "Set the address of the hyperion server [default: 127.0.0.1:19445]");
|
||||||
|
IntParameter & argPriority = parameters.add<IntParameter> ('p', "priority", "Use the provided priority channel (the lower the number, the higher the priority) [default: 800]");
|
||||||
|
SwitchParameter<> & argSkipReply = parameters.add<SwitchParameter<>> (0x0, "skip-reply", "Do not receive and check reply messages from Hyperion");
|
||||||
|
SwitchParameter<> & argHelp = parameters.add<SwitchParameter<>> ('h', "help", "Show this help message and exit");
|
||||||
|
|
||||||
|
// set defaults
|
||||||
|
argFps.setDefault(10);
|
||||||
|
argWidth.setDefault(160);
|
||||||
|
argHeight.setDefault(160);
|
||||||
|
argAddress.setDefault("127.0.0.1:19445");
|
||||||
|
argPriority.setDefault(800);
|
||||||
|
argDisplay.setDefault(0);
|
||||||
|
|
||||||
|
// parse all options
|
||||||
|
optionParser.parse(argc, const_cast<const char **>(argv));
|
||||||
|
|
||||||
|
// check if we need to display the usage. exit if we do.
|
||||||
|
if (argHelp.isSet())
|
||||||
|
{
|
||||||
|
optionParser.usage();
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
int width = argWidth.getValue();
|
||||||
|
int height = argHeight.getValue();
|
||||||
|
if (width < 160 || height < 160)
|
||||||
|
{
|
||||||
|
std::cout << "Minimum width and height is 160" << std::endl;
|
||||||
|
width = std::max(160, width);
|
||||||
|
height = std::max(160, height);
|
||||||
|
}
|
||||||
|
|
||||||
|
int grabInterval = 1000 / argFps.getValue();
|
||||||
|
OsxWrapper osxWrapper(argDisplay.getValue(), argWidth.getValue(), argHeight.getValue(), grabInterval);
|
||||||
|
|
||||||
|
if (argScreenshot.isSet())
|
||||||
|
{
|
||||||
|
// Capture a single screenshot and finish
|
||||||
|
const Image<ColorRgb> & screenshot = osxWrapper.getScreenshot();
|
||||||
|
saveScreenshot("screenshot.png", screenshot);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// Create the Proto-connection with hyperiond
|
||||||
|
ProtoConnectionWrapper protoWrapper(argAddress.getValue(), argPriority.getValue(), 1000, argSkipReply.isSet());
|
||||||
|
|
||||||
|
// Connect the screen capturing to the proto processing
|
||||||
|
QObject::connect(&osxWrapper, SIGNAL(sig_screenshot(const Image<ColorRgb> &)), &protoWrapper, SLOT(receiveImage(Image<ColorRgb>)));
|
||||||
|
|
||||||
|
// Start the capturing
|
||||||
|
osxWrapper.start();
|
||||||
|
|
||||||
|
// Start the application
|
||||||
|
app.exec();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (const std::runtime_error & e)
|
||||||
|
{
|
||||||
|
// An error occured. Display error and quit
|
||||||
|
std::cerr << e.what() << std::endl;
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
@ -1,41 +1,43 @@
|
|||||||
cmake_minimum_required(VERSION 2.8)
|
cmake_minimum_required(VERSION 2.8)
|
||||||
|
|
||||||
project(hyperion-remote)
|
project(hyperion-remote)
|
||||||
|
|
||||||
# find Qt4
|
# find Qt
|
||||||
if(ENABLE_QT5)
|
if(ENABLE_QT5)
|
||||||
find_package(Qt5 COMPONENTS Core Gui Widgets Network REQUIRED)
|
find_package(Qt5 COMPONENTS Core Gui Widgets Network REQUIRED)
|
||||||
# set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${Qt5Widgets_EXECUTABLE_COMPILE_FLAGS}")
|
# set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${Qt5Widgets_EXECUTABLE_COMPILE_FLAGS}")
|
||||||
# set(CMAKE_CXX_FLAGS "-fPIC")
|
# set(CMAKE_CXX_FLAGS "-fPIC")
|
||||||
else(ENABLE_QT5)
|
else(ENABLE_QT5)
|
||||||
find_package(Qt4 REQUIRED QtCore QtGui QtNetwork)
|
find_package(Qt4 REQUIRED QtCore QtGui QtNetwork)
|
||||||
endif(ENABLE_QT5)
|
endif(ENABLE_QT5)
|
||||||
|
|
||||||
# The following I do not undrstand completely...
|
# The following I do not undrstand completely...
|
||||||
# libQtCore.so uses some hardcoded library path inside which are incorrect after copying the file RPi file system
|
# libQtCore.so uses some hardcoded library path inside which are incorrect after copying the file RPi file system
|
||||||
# Therefor, an extra path is needed on which to find the required libraries
|
# Therefor, an extra path is needed on which to find the required libraries
|
||||||
LINK_DIRECTORIES(${LINK_DIRECTORIES} ${CMAKE_FIND_ROOT_PATH}/lib/arm-linux-gnueabihf)
|
LINK_DIRECTORIES(${LINK_DIRECTORIES} ${CMAKE_FIND_ROOT_PATH}/lib/arm-linux-gnueabihf)
|
||||||
|
|
||||||
include_directories(${QT_INCLUDES})
|
include_directories(${QT_INCLUDES})
|
||||||
|
|
||||||
set(hyperion-remote_HEADERS
|
set(hyperion-remote_HEADERS
|
||||||
CustomParameter.h
|
CustomParameter.h
|
||||||
JsonConnection.h
|
JsonConnection.h
|
||||||
ColorTransformValues.h)
|
ColorTransformValues.h)
|
||||||
|
|
||||||
set(hyperion-remote_SOURCES
|
set(hyperion-remote_SOURCES
|
||||||
hyperion-remote.cpp
|
hyperion-remote.cpp
|
||||||
JsonConnection.cpp)
|
JsonConnection.cpp)
|
||||||
|
|
||||||
add_executable(hyperion-remote
|
add_executable(${PROJECT_NAME}
|
||||||
${hyperion-remote_HEADERS}
|
${hyperion-remote_HEADERS}
|
||||||
${hyperion-remote_SOURCES})
|
${hyperion-remote_SOURCES})
|
||||||
|
|
||||||
if(ENABLE_QT5)
|
target_link_libraries(${PROJECT_NAME}
|
||||||
qt5_use_modules(hyperion-remote Widgets Network)
|
jsoncpp
|
||||||
endif(ENABLE_QT5)
|
getoptPlusPlus
|
||||||
|
${QT_LIBRARIES})
|
||||||
target_link_libraries(hyperion-remote
|
|
||||||
jsoncpp
|
if(ENABLE_QT5)
|
||||||
getoptPlusPlus
|
qt5_use_modules(${PROJECT_NAME} Widgets Core Network)
|
||||||
${QT_LIBRARIES})
|
else(ENABLE_QT5)
|
||||||
|
qt4_use_modules(${PROJECT_NAME} Core Gui Network )
|
||||||
|
endif(ENABLE_QT5)
|
||||||
|
@ -2,13 +2,13 @@ cmake_minimum_required(VERSION 2.8)
|
|||||||
|
|
||||||
project(hyperion-v4l2)
|
project(hyperion-v4l2)
|
||||||
|
|
||||||
# find Qt4
|
# find Qt
|
||||||
if(ENABLE_QT5)
|
if(ENABLE_QT5)
|
||||||
find_package(Qt5Widgets REQUIRED)
|
find_package(Qt5Widgets REQUIRED)
|
||||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${Qt5Widgets_EXECUTABLE_COMPILE_FLAGS}")
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${Qt5Widgets_EXECUTABLE_COMPILE_FLAGS}")
|
||||||
# set(CMAKE_CXX_FLAGS "-fPIC")
|
# set(CMAKE_CXX_FLAGS "-fPIC")
|
||||||
else(ENABLE_QT5)
|
else(ENABLE_QT5)
|
||||||
find_package(Qt4 REQUIRED QtCore QtGui QtNetwork)
|
find_package(Qt4 REQUIRED QtCore QtGui QtNetwork)
|
||||||
endif(ENABLE_QT5)
|
endif(ENABLE_QT5)
|
||||||
|
|
||||||
|
|
||||||
@ -32,19 +32,19 @@ set(Hyperion_V4L2_SOURCES
|
|||||||
ScreenshotHandler.cpp
|
ScreenshotHandler.cpp
|
||||||
)
|
)
|
||||||
if(ENABLE_QT5)
|
if(ENABLE_QT5)
|
||||||
QT5_WRAP_CPP(Hyperion_V4L2_MOC_SOURCES ${Hyperion_V4L2_QT_HEADERS})
|
QT5_WRAP_CPP(Hyperion_V4L2_MOC_SOURCES ${Hyperion_V4L2_QT_HEADERS})
|
||||||
else(ENABLE_QT5)
|
else(ENABLE_QT5)
|
||||||
QT4_WRAP_CPP(Hyperion_V4L2_MOC_SOURCES ${Hyperion_V4L2_QT_HEADERS})
|
QT4_WRAP_CPP(Hyperion_V4L2_MOC_SOURCES ${Hyperion_V4L2_QT_HEADERS})
|
||||||
endif(ENABLE_QT5)
|
endif(ENABLE_QT5)
|
||||||
|
|
||||||
add_executable(hyperion-v4l2
|
add_executable(${PROJECT_NAME}
|
||||||
${Hyperion_V4L2_HEADERS}
|
${Hyperion_V4L2_HEADERS}
|
||||||
${Hyperion_V4L2_SOURCES}
|
${Hyperion_V4L2_SOURCES}
|
||||||
${Hyperion_V4L2_QT_HEADERS}
|
${Hyperion_V4L2_QT_HEADERS}
|
||||||
${Hyperion_V4L2_MOC_SOURCES}
|
${Hyperion_V4L2_MOC_SOURCES}
|
||||||
)
|
)
|
||||||
|
|
||||||
target_link_libraries(hyperion-v4l2
|
target_link_libraries(${PROJECT_NAME}
|
||||||
v4l2-grabber
|
v4l2-grabber
|
||||||
getoptPlusPlus
|
getoptPlusPlus
|
||||||
blackborder
|
blackborder
|
||||||
@ -53,3 +53,9 @@ target_link_libraries(hyperion-v4l2
|
|||||||
pthread
|
pthread
|
||||||
${QT_LIBRARIES}
|
${QT_LIBRARIES}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if(ENABLE_QT5)
|
||||||
|
qt5_use_modules(${PROJECT_NAME} Widgets Core Gui Network)
|
||||||
|
else(ENABLE_QT5)
|
||||||
|
qt4_use_modules(${PROJECT_NAME} Core Gui Network )
|
||||||
|
endif(ENABLE_QT5)
|
||||||
|
@ -51,14 +51,14 @@ int main(int argc, char** argv)
|
|||||||
OptionsParser optionParser("V4L capture application for Hyperion");
|
OptionsParser optionParser("V4L capture application for Hyperion");
|
||||||
ParameterSet & parameters = optionParser.getParameters();
|
ParameterSet & parameters = optionParser.getParameters();
|
||||||
|
|
||||||
StringParameter & argDevice = parameters.add<StringParameter> ('d', "device", "The device to use [default=/dev/video0]");
|
StringParameter & argDevice = parameters.add<StringParameter> ('d', "device", "The device to use [default: /dev/video0]");
|
||||||
VideoStandardParameter & argVideoStandard = parameters.add<VideoStandardParameter>('v', "video-standard", "The used video standard. Valid values are PAL or NTSC (optional)");
|
VideoStandardParameter & argVideoStandard = parameters.add<VideoStandardParameter>('v', "video-standard", "The used video standard. Valid values are PAL or NTSC (optional)");
|
||||||
PixelFormatParameter & argPixelFormat = parameters.add<PixelFormatParameter> (0x0, "pixel-format", "The use pixel format. Valid values are YUYV, UYVY, and RGB32 (optional)");
|
PixelFormatParameter & argPixelFormat = parameters.add<PixelFormatParameter> (0x0, "pixel-format", "The use pixel format. Valid values are YUYV, UYVY, and RGB32 (optional)");
|
||||||
IntParameter & argInput = parameters.add<IntParameter> (0x0, "input", "Input channel (optional)");
|
IntParameter & argInput = parameters.add<IntParameter> (0x0, "input", "Input channel (optional)");
|
||||||
IntParameter & argWidth = parameters.add<IntParameter> (0x0, "width", "Try to set the width of the video input (optional)");
|
IntParameter & argWidth = parameters.add<IntParameter> (0x0, "width", "Try to set the width of the video input (optional)");
|
||||||
IntParameter & argHeight = parameters.add<IntParameter> (0x0, "height", "Try to set the height of the video input (optional)");
|
IntParameter & argHeight = parameters.add<IntParameter> (0x0, "height", "Try to set the height of the video input (optional)");
|
||||||
IntParameter & argCropWidth = parameters.add<IntParameter> (0x0, "crop-width", "Number of pixels to crop from the left and right sides of the picture before decimation [default=0]");
|
IntParameter & argCropWidth = parameters.add<IntParameter> (0x0, "crop-width", "Number of pixels to crop from the left and right sides of the picture before decimation [default: 0]");
|
||||||
IntParameter & argCropHeight = parameters.add<IntParameter> (0x0, "crop-height", "Number of pixels to crop from the top and the bottom of the picture before decimation [default=0]");
|
IntParameter & argCropHeight = parameters.add<IntParameter> (0x0, "crop-height", "Number of pixels to crop from the top and the bottom of the picture before decimation [default: 0]");
|
||||||
IntParameter & argCropLeft = parameters.add<IntParameter> (0x0, "crop-left", "Number of pixels to crop from the left of the picture before decimation (overrides --crop-width)");
|
IntParameter & argCropLeft = parameters.add<IntParameter> (0x0, "crop-left", "Number of pixels to crop from the left of the picture before decimation (overrides --crop-width)");
|
||||||
IntParameter & argCropRight = parameters.add<IntParameter> (0x0, "crop-right", "Number of pixels to crop from the right of the picture before decimation (overrides --crop-width)");
|
IntParameter & argCropRight = parameters.add<IntParameter> (0x0, "crop-right", "Number of pixels to crop from the right of the picture before decimation (overrides --crop-width)");
|
||||||
IntParameter & argCropTop = parameters.add<IntParameter> (0x0, "crop-top", "Number of pixels to crop from the top of the picture before decimation (overrides --crop-height)");
|
IntParameter & argCropTop = parameters.add<IntParameter> (0x0, "crop-top", "Number of pixels to crop from the top of the picture before decimation (overrides --crop-height)");
|
||||||
|
@ -4,11 +4,11 @@ cmake_minimum_required(VERSION 2.8)
|
|||||||
# Set the project name
|
# Set the project name
|
||||||
project(hyperion-x11)
|
project(hyperion-x11)
|
||||||
|
|
||||||
|
# find QT
|
||||||
if(ENABLE_QT5)
|
if(ENABLE_QT5)
|
||||||
find_package(Qt5Widgets REQUIRED)
|
find_package(Qt5Widgets REQUIRED)
|
||||||
else(ENABLE_QT5)
|
else(ENABLE_QT5)
|
||||||
# find Qt4
|
find_package(Qt4 REQUIRED QtCore QtGui QtNetwork)
|
||||||
find_package(Qt4 REQUIRED QtCore QtGui QtNetwork)
|
|
||||||
endif(ENABLE_QT5)
|
endif(ENABLE_QT5)
|
||||||
|
|
||||||
# Find X11
|
# Find X11
|
||||||
@ -33,18 +33,19 @@ set(Hyperion_X11_SOURCES
|
|||||||
)
|
)
|
||||||
|
|
||||||
if(ENABLE_QT5)
|
if(ENABLE_QT5)
|
||||||
QT5_WRAP_CPP(Hyperion_X11_HEADERS_MOC ${Hyperion_X11_QT_HEADERS})
|
QT5_WRAP_CPP(Hyperion_X11_HEADERS_MOC ${Hyperion_X11_QT_HEADERS})
|
||||||
else(ENABLE_QT5)
|
else(ENABLE_QT5)
|
||||||
QT4_WRAP_CPP(Hyperion_X11_HEADERS_MOC ${Hyperion_X11_QT_HEADERS})
|
QT4_WRAP_CPP(Hyperion_X11_HEADERS_MOC ${Hyperion_X11_QT_HEADERS})
|
||||||
endif(ENABLE_QT5)
|
endif(ENABLE_QT5)
|
||||||
|
|
||||||
add_executable(hyperion-x11
|
|
||||||
|
add_executable(${PROJECT_NAME}
|
||||||
${Hyperion_X11_HEADERS}
|
${Hyperion_X11_HEADERS}
|
||||||
${Hyperion_X11_SOURCES}
|
${Hyperion_X11_SOURCES}
|
||||||
${Hyperion_X11_HEADERS_MOC}
|
${Hyperion_X11_HEADERS_MOC}
|
||||||
)
|
)
|
||||||
|
|
||||||
target_link_libraries(hyperion-x11
|
target_link_libraries(${PROJECT_NAME}
|
||||||
getoptPlusPlus
|
getoptPlusPlus
|
||||||
blackborder
|
blackborder
|
||||||
hyperion-utils
|
hyperion-utils
|
||||||
@ -55,10 +56,7 @@ target_link_libraries(hyperion-x11
|
|||||||
)
|
)
|
||||||
|
|
||||||
if(ENABLE_QT5)
|
if(ENABLE_QT5)
|
||||||
qt5_use_modules(hyperion-x11 Widgets Core Gui Network)
|
qt5_use_modules(${PROJECT_NAME} Widgets Core Gui Network)
|
||||||
else(ENABLE_QT5)
|
else(ENABLE_QT5)
|
||||||
qt4_use_modules(hyperion-x11
|
qt4_use_modules(${PROJECT_NAME} Core Gui Network )
|
||||||
Core
|
|
||||||
Gui
|
|
||||||
Network)
|
|
||||||
endif(ENABLE_QT5)
|
endif(ENABLE_QT5)
|
||||||
|
@ -29,9 +29,9 @@ int main(int argc, char ** argv)
|
|||||||
OptionsParser optionParser("X11 capture application for Hyperion");
|
OptionsParser optionParser("X11 capture application for Hyperion");
|
||||||
ParameterSet & parameters = optionParser.getParameters();
|
ParameterSet & parameters = optionParser.getParameters();
|
||||||
|
|
||||||
IntParameter & argFps = parameters.add<IntParameter> ('f', "framerate", "Capture frame rate [default=10]");
|
IntParameter & argFps = parameters.add<IntParameter> ('f', "framerate", "Capture frame rate [default: 10]");
|
||||||
IntParameter & argCropWidth = parameters.add<IntParameter> (0x0, "crop-width", "Number of pixels to crop from the left and right sides of the picture before decimation [default=0]");
|
IntParameter & argCropWidth = parameters.add<IntParameter> (0x0, "crop-width", "Number of pixels to crop from the left and right sides of the picture before decimation [default: 0]");
|
||||||
IntParameter & argCropHeight = parameters.add<IntParameter> (0x0, "crop-height", "Number of pixels to crop from the top and the bottom of the picture before decimation [default=0]");
|
IntParameter & argCropHeight = parameters.add<IntParameter> (0x0, "crop-height", "Number of pixels to crop from the top and the bottom of the picture before decimation [default: 0]");
|
||||||
IntParameter & argCropLeft = parameters.add<IntParameter> (0x0, "crop-left", "Number of pixels to crop from the left of the picture before decimation (overrides --crop-width)");
|
IntParameter & argCropLeft = parameters.add<IntParameter> (0x0, "crop-left", "Number of pixels to crop from the left of the picture before decimation (overrides --crop-width)");
|
||||||
IntParameter & argCropRight = parameters.add<IntParameter> (0x0, "crop-right", "Number of pixels to crop from the right of the picture before decimation (overrides --crop-width)");
|
IntParameter & argCropRight = parameters.add<IntParameter> (0x0, "crop-right", "Number of pixels to crop from the right of the picture before decimation (overrides --crop-width)");
|
||||||
IntParameter & argCropTop = parameters.add<IntParameter> (0x0, "crop-top", "Number of pixels to crop from the top of the picture before decimation (overrides --crop-height)");
|
IntParameter & argCropTop = parameters.add<IntParameter> (0x0, "crop-top", "Number of pixels to crop from the top of the picture before decimation (overrides --crop-height)");
|
||||||
|
@ -127,7 +127,7 @@ int main(int argc, char** argv)
|
|||||||
// Get the parameters for the bootsequence
|
// Get the parameters for the bootsequence
|
||||||
const std::string effectName = effectConfig["effect"].asString();
|
const std::string effectName = effectConfig["effect"].asString();
|
||||||
const unsigned duration_ms = effectConfig["duration_ms"].asUInt();
|
const unsigned duration_ms = effectConfig["duration_ms"].asUInt();
|
||||||
const int priority = effectConfig["priority"].asUInt();
|
const int priority = effectConfig.get("priority",990).asInt();
|
||||||
const int bootcolor_priority = (priority > 990) ? priority+1 : 990;
|
const int bootcolor_priority = (priority > 990) ? priority+1 : 990;
|
||||||
|
|
||||||
if ( ! effectConfig["color"].isNull() && effectConfig["color"].isArray() && effectConfig["color"].size() == 3 )
|
if ( ! effectConfig["color"].isNull() && effectConfig["color"].isArray() && effectConfig["color"].size() == 3 )
|
||||||
@ -216,7 +216,7 @@ int main(int argc, char** argv)
|
|||||||
if (config.isMember("boblightServer"))
|
if (config.isMember("boblightServer"))
|
||||||
{
|
{
|
||||||
const Json::Value & boblightServerConfig = config["boblightServer"];
|
const Json::Value & boblightServerConfig = config["boblightServer"];
|
||||||
boblightServer = new BoblightServer(&hyperion, boblightServerConfig["port"].asUInt());
|
boblightServer = new BoblightServer(&hyperion, boblightServerConfig.get("priority",900).asInt(), boblightServerConfig["port"].asUInt());
|
||||||
std::cout << "Boblight server created and started on port " << boblightServer->getPort() << std::endl;
|
std::cout << "Boblight server created and started on port " << boblightServer->getPort() << std::endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -232,6 +232,7 @@ int main(int argc, char** argv)
|
|||||||
frameGrabberConfig["width"].asUInt(),
|
frameGrabberConfig["width"].asUInt(),
|
||||||
frameGrabberConfig["height"].asUInt(),
|
frameGrabberConfig["height"].asUInt(),
|
||||||
frameGrabberConfig["frequency_Hz"].asUInt(),
|
frameGrabberConfig["frequency_Hz"].asUInt(),
|
||||||
|
frameGrabberConfig.get("priority",900).asInt(),
|
||||||
&hyperion);
|
&hyperion);
|
||||||
|
|
||||||
if (xbmcVideoChecker != nullptr)
|
if (xbmcVideoChecker != nullptr)
|
||||||
@ -275,7 +276,7 @@ int main(int argc, char** argv)
|
|||||||
grabberConfig.get("greenSignalThreshold", 0.0).asDouble(),
|
grabberConfig.get("greenSignalThreshold", 0.0).asDouble(),
|
||||||
grabberConfig.get("blueSignalThreshold", 0.0).asDouble(),
|
grabberConfig.get("blueSignalThreshold", 0.0).asDouble(),
|
||||||
&hyperion,
|
&hyperion,
|
||||||
grabberConfig.get("priority", 800).asInt());
|
grabberConfig.get("priority", 900).asInt());
|
||||||
v4l2Grabber->set3D(parse3DMode(grabberConfig.get("mode", "2D").asString()));
|
v4l2Grabber->set3D(parse3DMode(grabberConfig.get("mode", "2D").asString()));
|
||||||
v4l2Grabber->setCropping(
|
v4l2Grabber->setCropping(
|
||||||
grabberConfig.get("cropLeft", 0).asInt(),
|
grabberConfig.get("cropLeft", 0).asInt(),
|
||||||
@ -308,6 +309,7 @@ int main(int argc, char** argv)
|
|||||||
grabberConfig["width"].asUInt(),
|
grabberConfig["width"].asUInt(),
|
||||||
grabberConfig["height"].asUInt(),
|
grabberConfig["height"].asUInt(),
|
||||||
grabberConfig["frequency_Hz"].asUInt(),
|
grabberConfig["frequency_Hz"].asUInt(),
|
||||||
|
grabberConfig.get("priority",900).asInt(),
|
||||||
&hyperion);
|
&hyperion);
|
||||||
|
|
||||||
if (xbmcVideoChecker != nullptr)
|
if (xbmcVideoChecker != nullptr)
|
||||||
@ -341,6 +343,7 @@ int main(int argc, char** argv)
|
|||||||
grabberConfig["width"].asUInt(),
|
grabberConfig["width"].asUInt(),
|
||||||
grabberConfig["height"].asUInt(),
|
grabberConfig["height"].asUInt(),
|
||||||
grabberConfig["frequency_Hz"].asUInt(),
|
grabberConfig["frequency_Hz"].asUInt(),
|
||||||
|
grabberConfig.get("priority",900).asInt(),
|
||||||
&hyperion);
|
&hyperion);
|
||||||
|
|
||||||
if (xbmcVideoChecker != nullptr)
|
if (xbmcVideoChecker != nullptr)
|
||||||
@ -376,11 +379,12 @@ int main(int argc, char** argv)
|
|||||||
{
|
{
|
||||||
const Json::Value & grabberConfig = config.isMember("osxgrabber")? config["osxgrabber"] : config["framegrabber"];
|
const Json::Value & grabberConfig = config.isMember("osxgrabber")? config["osxgrabber"] : config["framegrabber"];
|
||||||
osxGrabber = new OsxWrapper(
|
osxGrabber = new OsxWrapper(
|
||||||
grabberConfig.get("display", 0).asUInt(),
|
grabberConfig.get("display", 0).asUInt(),
|
||||||
grabberConfig["width"].asUInt(),
|
grabberConfig["width"].asUInt(),
|
||||||
grabberConfig["height"].asUInt(),
|
grabberConfig["height"].asUInt(),
|
||||||
grabberConfig["frequency_Hz"].asUInt(),
|
grabberConfig["frequency_Hz"].asUInt(),
|
||||||
&hyperion);
|
grabberConfig.get("priority",900).asInt(),
|
||||||
|
&hyperion );
|
||||||
|
|
||||||
if (xbmcVideoChecker != nullptr)
|
if (xbmcVideoChecker != nullptr)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user