hyperion.ng/libsrc/hyperion/DispmanxWrapper.cpp

65 lines
1.7 KiB
C++
Raw Normal View History

// QT includes
#include <QDebug>
#include <QDateTime>
// Hyperion includes
#include <hyperion/DispmanxWrapper.h>
2013-08-14 10:54:49 +02:00
#include <hyperion/Hyperion.h>
#include <hyperion/ImageProcessorFactory.h>
#include <hyperion/ImageProcessor.h>
// Local-Hyperion includes
#include "DispmanxFrameGrabber.h"
2013-08-14 10:54:49 +02:00
DispmanxWrapper::DispmanxWrapper(const unsigned grabWidth, const unsigned grabHeight, const unsigned updateRate_Hz, Hyperion * hyperion) :
_updateInterval_ms(1000/updateRate_Hz),
_timeout_ms(2 * _updateInterval_ms),
_timer(),
2013-08-14 10:54:49 +02:00
_frameGrabber(new DispmanxFrameGrabber(grabWidth, grabHeight)),
_processor(ImageProcessorFactory::getInstance().newImageProcessor()),
_ledColors(hyperion->getLedCount(), RgbColor::BLACK),
_hyperion(hyperion)
{
2013-08-14 10:54:49 +02:00
// Configure the timer to generate events every n milliseconds
_timer.setInterval(_updateInterval_ms);
_timer.setSingleShot(false);
2013-08-14 10:54:49 +02:00
_processor->setSize(grabWidth, grabHeight);
2013-08-14 10:54:49 +02:00
// Connect the QTimer to this
QObject::connect(&_timer, SIGNAL(timeout()), this, SLOT(action()));
}
DispmanxWrapper::~DispmanxWrapper()
{
2013-08-14 10:54:49 +02:00
// Cleanup used resources (ImageProcessor and FrameGrabber)
delete _processor;
delete _frameGrabber;
}
void DispmanxWrapper::start()
{
2013-08-14 10:54:49 +02:00
// Start the timer with the pre configured interval
_timer.start();
}
void DispmanxWrapper::action()
{
2013-08-14 10:54:49 +02:00
// Obtain reference of the buffer-image used by the processor
RgbImage & image = _processor->image();
// Grab frame into the allocated image
_frameGrabber->grabFrame(image);
2013-08-14 10:54:49 +02:00
_processor->inplace_process(_ledColors);
const int _priority = 100;
_hyperion->setValue(_priority, _ledColors, _timeout_ms);
}
void DispmanxWrapper::stop()
{
2013-08-14 10:54:49 +02:00
// Stop the timer, effectivly stopping the process
_timer.stop();
}