You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
936 B
C++
38 lines
936 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.
|
|
**
|
|
** V4l2Output.h
|
|
**
|
|
** V4L2 Output wrapper
|
|
**
|
|
** -------------------------------------------------------------------------*/
|
|
|
|
|
|
#ifndef V4L2_OUTPUT
|
|
#define V4L2_OUTPUT
|
|
|
|
#include "V4l2Access.h"
|
|
|
|
// ---------------------------------
|
|
// V4L2 Output
|
|
// ---------------------------------
|
|
class V4l2Output : public V4l2Access
|
|
{
|
|
protected:
|
|
V4l2Output(V4l2Device* device);
|
|
|
|
public:
|
|
static V4l2Output* create(const V4L2DeviceParameters & param);
|
|
virtual ~V4l2Output();
|
|
|
|
size_t write(char* buffer, size_t bufferSize);
|
|
bool isWritable(timeval* tv);
|
|
bool startPartialWrite();
|
|
size_t writePartial(char* buffer, size_t bufferSize);
|
|
bool endPartialWrite();
|
|
};
|
|
|
|
#endif
|