forked from jnohlgard/python-v4l2capture
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathv4l2out.h
53 lines (41 loc) · 1.08 KB
/
v4l2out.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#ifndef __V4L2OUT_H__
#define __V4L2OUT_H__
#include <map>
#include <vector>
#include <string>
#include "base.h"
class Video_out : public Base_Video_Out
{
public:
std::string devName;
int stop;
int stopped;
pthread_mutex_t lock;
int verbose;
std::vector<class SendFrameArgs> sendFrameArgs;
std::vector<const char *> sendFrameBuffer;
unsigned long lastFrameTime_sec, lastFrameTime_usec;
int fdwr;
int framesize;
unsigned char *currentFrame;
int outputWidth;
int outputHeight;
std::string outputPxFmt;
Video_out(const char *devNameIn);
virtual ~Video_out();
protected:
void SendFrameInternal();
public:
void Run();
void SendFrame(const char *imgIn, unsigned imgLen, const char *pxFmt, int width, int height,
unsigned long tv_sec = 0,
unsigned long tv_usec = 0);
void Stop();
int WaitForStop();
void SetOutputSize(int width, int height);
void SetOutputPxFmt(const char *fmt);
};
void *Video_out_manager_Worker_thread(void *arg);
std::vector<std::string> List_out_devices();
// ******************************************************************
#endif //__V4L2OUT_H__