mirror of
https://github.com/mpromonet/v4l2rtspserver
synced 2024-11-17 21:25:40 +00:00
37 lines
1007 B
C++
37 lines
1007 B
C++
/* ---------------------------------------------------------------------------
|
|
** This software is in the public domain, furnished "as is", without technical
|
|
** support, and with no warranty, express or implied, as to its usefulness for
|
|
** any purpose.
|
|
**
|
|
** V4l2ReadCapture.h
|
|
**
|
|
** V4L2 source using read API
|
|
**
|
|
** -------------------------------------------------------------------------*/
|
|
|
|
|
|
#ifndef V4L2_READ_CAPTURE
|
|
#define V4L2_READ_CAPTURE
|
|
|
|
// project
|
|
#include "V4l2Capture.h"
|
|
|
|
class V4l2ReadCapture : public V4l2Capture
|
|
{
|
|
public:
|
|
static V4l2ReadCapture* createNew(V4L2DeviceParameters params);
|
|
|
|
protected:
|
|
V4l2ReadCapture(V4L2DeviceParameters params) : V4l2Capture(params), m_counter(0) {};
|
|
|
|
public:
|
|
virtual bool captureStart() { m_counter=1; return true; };
|
|
virtual size_t read(char* buffer, size_t bufferSize);
|
|
virtual bool captureStop() { m_counter=0; return true; };
|
|
virtual bool isReady() { return ((m_fd != -1) && (m_counter>0)); };
|
|
|
|
protected:
|
|
int m_counter;
|
|
};
|
|
|
|
#endif |