-
Notifications
You must be signed in to change notification settings - Fork 92
/
Copy pathV4l2Output.h
35 lines (28 loc) · 911 Bytes
/
V4l2Output.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/* ---------------------------------------------------------------------------
** 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
**
** -------------------------------------------------------------------------*/
#pragma once
#include "V4l2Access.h"
// ---------------------------------
// V4L2 Output
// ---------------------------------
class V4l2Output : public V4l2Access
{
protected:
explicit 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();
};