mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
df9b33f560
Former-commit-id: 1eb180620fb59613eaa02da84026ffdcb28803a4
96 lines
1.7 KiB
C++
96 lines
1.7 KiB
C++
#pragma once
|
|
|
|
// stl includes
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
// util includes
|
|
#include <utils/Image.h>
|
|
#include <utils/ColorRgb.h>
|
|
|
|
/// Capture class for V4L2 devices
|
|
///
|
|
/// @see http://linuxtv.org/downloads/v4l-dvb-apis/capture-example.html
|
|
class V4L2Grabber
|
|
{
|
|
public:
|
|
typedef void (*ImageCallback)(void * arg, const Image<ColorRgb> & image);
|
|
|
|
enum VideoStandard {
|
|
PAL, NTSC, NO_CHANGE
|
|
};
|
|
|
|
public:
|
|
V4L2Grabber(const std::string & device, int input, VideoStandard videoStandard, int width, int height, int cropHorizontal, int cropVertical, int frameDecimation, int pixelDecimation);
|
|
virtual ~V4L2Grabber();
|
|
|
|
void setCallback(ImageCallback callback, void * arg);
|
|
|
|
void start();
|
|
|
|
void capture(int frameCount = -1);
|
|
|
|
void stop();
|
|
|
|
private:
|
|
void 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();
|
|
|
|
int read_frame();
|
|
|
|
bool process_image(const void *p, int size);
|
|
|
|
void process_image(const uint8_t *p);
|
|
|
|
int xioctl(int request, void *arg);
|
|
|
|
void throw_exception(const std::string &error);
|
|
|
|
void throw_errno_exception(const std::string &error);
|
|
|
|
private:
|
|
enum io_method {
|
|
IO_METHOD_READ,
|
|
IO_METHOD_MMAP,
|
|
IO_METHOD_USERPTR
|
|
};
|
|
|
|
struct buffer {
|
|
void *start;
|
|
size_t length;
|
|
};
|
|
|
|
private:
|
|
const std::string _deviceName;
|
|
const io_method _ioMethod;
|
|
int _fileDescriptor;
|
|
std::vector<buffer> _buffers;
|
|
|
|
int _width;
|
|
int _height;
|
|
const int _cropWidth;
|
|
const int _cropHeight;
|
|
const int _frameDecimation;
|
|
const int _pixelDecimation;
|
|
|
|
int _currentFrame;
|
|
|
|
ImageCallback _callback;
|
|
void * _callbackArg;
|
|
};
|