mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
88fbc4dfde
* make hyperion to singelton. remove arguments for config and hyperion - both are gettable via Hyperion::getInstance * refactor hyperiond * remove qt4 comapt make zeroconf mandatory refactor hyperiond * xbmcchecker is now a singleton * cleanup in hyperiond zeroconf switchable between static and shared linking * fix xbmcchecker
75 lines
1.5 KiB
C++
75 lines
1.5 KiB
C++
#pragma once
|
|
|
|
// Qt includes
|
|
#include <QTimer>
|
|
|
|
// Hyperion includes
|
|
#include <hyperion/Hyperion.h>
|
|
#include <hyperion/ImageProcessor.h>
|
|
|
|
// Grabber includes
|
|
#include <grabber/V4L2Grabber.h>
|
|
|
|
class V4L2Wrapper : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
V4L2Wrapper(const std::string & device,
|
|
int input,
|
|
VideoStandard videoStandard,
|
|
PixelFormat pixelFormat,
|
|
int width,
|
|
int height,
|
|
int frameDecimation,
|
|
int pixelDecimation,
|
|
double redSignalThreshold,
|
|
double greenSignalThreshold,
|
|
double blueSignalThreshold,
|
|
int hyperionPriority);
|
|
virtual ~V4L2Wrapper();
|
|
|
|
public slots:
|
|
void start();
|
|
|
|
void stop();
|
|
|
|
void setCropping(int cropLeft,
|
|
int cropRight,
|
|
int cropTop,
|
|
int cropBottom);
|
|
|
|
void set3D(VideoMode mode);
|
|
|
|
signals:
|
|
void emitColors(int priority, const std::vector<ColorRgb> &ledColors, const int timeout_ms);
|
|
void emitImage(int priority, const Image<ColorRgb> & image, const int timeout_ms);
|
|
|
|
private slots:
|
|
void newFrame(const Image<ColorRgb> & image);
|
|
|
|
void checkSources();
|
|
|
|
private:
|
|
/// The timeout of the led colors [ms]
|
|
const int _timeout_ms;
|
|
|
|
/// The priority of the led colors
|
|
const int _priority;
|
|
|
|
/// The V4L2 grabber
|
|
V4L2Grabber _grabber;
|
|
|
|
/// The processor for transforming images to led colors
|
|
ImageProcessor * _processor;
|
|
|
|
/// The Hyperion instance
|
|
Hyperion * _hyperion;
|
|
|
|
/// The list with computed led colors
|
|
std::vector<ColorRgb> _ledColors;
|
|
|
|
/// Timer which tests if a higher priority source is active
|
|
QTimer _timer;
|
|
};
|