2015-08-07 14:37:41 +02:00
|
|
|
// QT includes
|
|
|
|
#include <QDebug>
|
|
|
|
#include <QDateTime>
|
|
|
|
|
|
|
|
// Hyperion includes
|
|
|
|
#include <hyperion/Hyperion.h>
|
|
|
|
#include <hyperion/ImageProcessorFactory.h>
|
|
|
|
#include <hyperion/ImageProcessor.h>
|
|
|
|
|
|
|
|
// Amlogic grabber includes
|
|
|
|
#include <grabber/AmlogicWrapper.h>
|
2016-02-24 14:42:25 +01:00
|
|
|
#include <grabber/AmlogicGrabber.h>
|
2015-08-07 14:37:41 +02:00
|
|
|
|
|
|
|
|
2016-06-17 01:25:40 +02:00
|
|
|
AmlogicWrapper::AmlogicWrapper(const unsigned grabWidth, const unsigned grabHeight, const unsigned updateRate_Hz, const int priority) :
|
2015-08-07 14:37:41 +02:00
|
|
|
_updateInterval_ms(1000/updateRate_Hz),
|
|
|
|
_timeout_ms(2 * _updateInterval_ms),
|
2016-03-08 17:31:56 +01:00
|
|
|
_priority(priority),
|
2015-08-07 14:37:41 +02:00
|
|
|
_timer(),
|
|
|
|
_image(grabWidth, grabHeight),
|
2015-08-08 08:13:59 +02:00
|
|
|
_frameGrabber(new AmlogicGrabber(grabWidth, grabHeight)),
|
2015-08-07 14:37:41 +02:00
|
|
|
_processor(ImageProcessorFactory::getInstance().newImageProcessor()),
|
2016-06-17 01:25:40 +02:00
|
|
|
_ledColors(Hyperion::getInstance()->getLedCount(), ColorRgb{0,0,0}),
|
|
|
|
_hyperion(Hyperion::getInstance())
|
2015-08-07 14:37:41 +02:00
|
|
|
{
|
|
|
|
// Configure the timer to generate events every n milliseconds
|
|
|
|
_timer.setInterval(_updateInterval_ms);
|
|
|
|
_timer.setSingleShot(false);
|
2016-02-24 14:34:19 +01:00
|
|
|
_forward = _hyperion->getForwarder()->protoForwardingEnabled();
|
2015-08-07 14:37:41 +02:00
|
|
|
|
|
|
|
_processor->setSize(grabWidth, grabHeight);
|
|
|
|
|
|
|
|
// Connect the QTimer to this
|
|
|
|
QObject::connect(&_timer, SIGNAL(timeout()), this, SLOT(action()));
|
|
|
|
}
|
|
|
|
|
|
|
|
AmlogicWrapper::~AmlogicWrapper()
|
|
|
|
{
|
|
|
|
// Cleanup used resources (ImageProcessor and FrameGrabber)
|
|
|
|
delete _processor;
|
|
|
|
delete _frameGrabber;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AmlogicWrapper::start()
|
|
|
|
{
|
|
|
|
// Start the timer with the pre configured interval
|
|
|
|
_timer.start();
|
|
|
|
}
|
|
|
|
|
|
|
|
void AmlogicWrapper::action()
|
|
|
|
{
|
|
|
|
// Grab frame into the allocated image
|
2015-08-20 09:51:44 +02:00
|
|
|
if (_frameGrabber->grabFrame(_image) < 0)
|
|
|
|
{
|
|
|
|
// Frame grab failed, maybe nothing playing or ....
|
|
|
|
return;
|
|
|
|
}
|
2015-08-07 14:37:41 +02:00
|
|
|
|
2016-02-24 14:34:19 +01:00
|
|
|
if ( _forward )
|
|
|
|
{
|
|
|
|
Image<ColorRgb> image_rgb;
|
|
|
|
_image.toRgb(image_rgb);
|
|
|
|
emit emitImage(_priority, image_rgb, _timeout_ms);
|
|
|
|
}
|
2015-08-07 14:37:41 +02:00
|
|
|
|
2016-02-24 14:34:19 +01:00
|
|
|
_processor->process(_image, _ledColors);
|
2015-08-07 14:37:41 +02:00
|
|
|
_hyperion->setColors(_priority, _ledColors, _timeout_ms);
|
|
|
|
}
|
2015-08-20 09:51:44 +02:00
|
|
|
|
2015-08-07 14:37:41 +02:00
|
|
|
void AmlogicWrapper::stop()
|
|
|
|
{
|
|
|
|
// Stop the timer, effectivly stopping the process
|
|
|
|
_timer.stop();
|
|
|
|
}
|
|
|
|
|
|
|
|
void AmlogicWrapper::setGrabbingMode(const GrabbingMode mode)
|
|
|
|
{
|
|
|
|
switch (mode)
|
|
|
|
{
|
|
|
|
case GRABBINGMODE_VIDEO:
|
2016-06-07 12:34:50 +02:00
|
|
|
case GRABBINGMODE_PAUSE:
|
2015-08-07 14:37:41 +02:00
|
|
|
// _frameGrabber->setFlags(DISPMANX_SNAPSHOT_NO_RGB|DISPMANX_SNAPSHOT_FILL);
|
|
|
|
start();
|
|
|
|
break;
|
|
|
|
case GRABBINGMODE_AUDIO:
|
|
|
|
case GRABBINGMODE_PHOTO:
|
|
|
|
case GRABBINGMODE_MENU:
|
|
|
|
case GRABBINGMODE_INVALID:
|
|
|
|
// _frameGrabber->setFlags(0);
|
|
|
|
start();
|
|
|
|
break;
|
|
|
|
case GRABBINGMODE_OFF:
|
|
|
|
stop();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void AmlogicWrapper::setVideoMode(const VideoMode mode)
|
|
|
|
{
|
|
|
|
_frameGrabber->setVideoMode(mode);
|
|
|
|
}
|