mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
fe204a8a33
- The default Boblight priority has been set to 128. If the sent priority differs from the default priority, it is registered (https://hyperion-project.org/threads/hyperion-ng-enigmalight-boblight-server.3558/#post-15006) - Submodule flatbuffer updated to current master Signed-off-by: Paulchen-Panther <16664240+Paulchen-Panther@users.noreply.github.com>
208 lines
4.2 KiB
C++
208 lines
4.2 KiB
C++
#pragma once
|
|
|
|
// stl includes
|
|
#include <vector>
|
|
#include <map>
|
|
|
|
// Qt includes
|
|
#include <QObject>
|
|
#include <QSocketNotifier>
|
|
#include <QRectF>
|
|
|
|
// util includes
|
|
#include <utils/PixelFormat.h>
|
|
#include <hyperion/Grabber.h>
|
|
#include <grabber/VideoStandard.h>
|
|
#include <utils/Components.h>
|
|
|
|
#ifdef HAVE_JPEG
|
|
#include <QImage>
|
|
#include <QColor>
|
|
#include <jpeglib.h>
|
|
#include <csetjmp>
|
|
#endif
|
|
|
|
/// Capture class for V4L2 devices
|
|
///
|
|
/// @see http://linuxtv.org/downloads/v4l-dvb-apis/capture-example.html
|
|
class V4L2Grabber : public Grabber
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
V4L2Grabber(const QString & device,
|
|
VideoStandard videoStandard,
|
|
PixelFormat pixelFormat,
|
|
int pixelDecimation
|
|
);
|
|
virtual ~V4L2Grabber();
|
|
|
|
QRectF getSignalDetectionOffset()
|
|
{
|
|
return QRectF(_x_frac_min, _y_frac_min, _x_frac_max, _y_frac_max);
|
|
}
|
|
|
|
bool getSignalDetectionEnabled() { return _signalDetectionEnabled; }
|
|
|
|
int grabFrame(Image<ColorRgb> &);
|
|
|
|
///
|
|
/// @brief overwrite Grabber.h implementation, as v4l doesn't use width/height
|
|
///
|
|
virtual void setWidthHeight(){};
|
|
|
|
///
|
|
/// @brief set new PixelDecimation value to ImageResampler
|
|
/// @param pixelDecimation The new pixelDecimation value
|
|
///
|
|
virtual void setPixelDecimation(int pixelDecimation);
|
|
|
|
///
|
|
/// @brief overwrite Grabber.h implementation
|
|
///
|
|
virtual void setSignalThreshold(
|
|
double redSignalThreshold,
|
|
double greenSignalThreshold,
|
|
double blueSignalThreshold,
|
|
int noSignalCounterThreshold = 50);
|
|
|
|
///
|
|
/// @brief overwrite Grabber.h implementation
|
|
///
|
|
virtual void setSignalDetectionOffset(
|
|
double verticalMin,
|
|
double horizontalMin,
|
|
double verticalMax,
|
|
double horizontalMax);
|
|
///
|
|
/// @brief overwrite Grabber.h implementation
|
|
///
|
|
virtual void setSignalDetectionEnable(bool enable);
|
|
|
|
///
|
|
/// @brief overwrite Grabber.h implementation
|
|
///
|
|
virtual void setDeviceVideoStandard(QString device, VideoStandard videoStandard);
|
|
|
|
public slots:
|
|
|
|
bool start();
|
|
|
|
void stop();
|
|
|
|
void componentStateChanged(const hyperion::Components component, bool enable);
|
|
|
|
signals:
|
|
void newFrame(const Image<ColorRgb> & image);
|
|
void readError(const char* err);
|
|
|
|
private slots:
|
|
int read_frame();
|
|
|
|
private:
|
|
void getV4Ldevices();
|
|
|
|
bool init();
|
|
void uninit();
|
|
|
|
bool open_device();
|
|
|
|
void close_device();
|
|
|
|
void init_read(unsigned int buffer_size);
|
|
|
|
void init_mmap();
|
|
|
|
void init_userp(unsigned int buffer_size);
|
|
|
|
void init_device(VideoStandard videoStandard, int input);
|
|
|
|
void uninit_device();
|
|
|
|
void start_capturing();
|
|
|
|
void stop_capturing();
|
|
|
|
bool process_image(const void *p, int size);
|
|
|
|
void process_image(const uint8_t *p, int size);
|
|
|
|
int xioctl(int request, void *arg);
|
|
|
|
void throw_exception(const QString & error)
|
|
{
|
|
Error(_log, "Throws error: %s", QSTRING_CSTR(error));
|
|
}
|
|
|
|
void throw_errno_exception(const QString & error)
|
|
{
|
|
Error(_log, "Throws error nr: %s", QSTRING_CSTR(QString(error + " error code " + QString::number(errno) + ", " + strerror(errno))));
|
|
}
|
|
|
|
private:
|
|
enum io_method
|
|
{
|
|
IO_METHOD_READ,
|
|
IO_METHOD_MMAP,
|
|
IO_METHOD_USERPTR
|
|
};
|
|
|
|
struct buffer
|
|
{
|
|
void *start;
|
|
size_t length;
|
|
};
|
|
|
|
#ifdef HAVE_JPEG
|
|
struct errorManager
|
|
{
|
|
jpeg_error_mgr pub;
|
|
jmp_buf setjmp_buffer;
|
|
};
|
|
|
|
static void errorHandler(j_common_ptr cInfo)
|
|
{
|
|
errorManager* mgr = reinterpret_cast<errorManager*>(cInfo->err);
|
|
longjmp(mgr->setjmp_buffer, 1);
|
|
}
|
|
|
|
static void outputHandler(j_common_ptr cInfo)
|
|
{
|
|
// Suppress fprintf warnings.
|
|
}
|
|
|
|
jpeg_decompress_struct* _decompress;
|
|
errorManager* _error;
|
|
#endif
|
|
|
|
private:
|
|
QString _deviceName;
|
|
std::map<QString,QString> _v4lDevices;
|
|
int _input;
|
|
VideoStandard _videoStandard;
|
|
io_method _ioMethod;
|
|
int _fileDescriptor;
|
|
std::vector<buffer> _buffers;
|
|
|
|
PixelFormat _pixelFormat;
|
|
int _pixelDecimation;
|
|
int _lineLength;
|
|
int _frameByteSize;
|
|
|
|
// signal detection
|
|
int _noSignalCounterThreshold;
|
|
ColorRgb _noSignalThresholdColor;
|
|
bool _signalDetectionEnabled;
|
|
bool _noSignalDetected;
|
|
int _noSignalCounter;
|
|
double _x_frac_min;
|
|
double _y_frac_min;
|
|
double _x_frac_max;
|
|
double _y_frac_max;
|
|
|
|
QSocketNotifier *_streamNotifier;
|
|
|
|
bool _initialized;
|
|
bool _deviceAutoDiscoverEnabled;
|
|
};
|