blob: 25e1972b8f8718091bed419a54ab6a761e536510 (
plain)
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
#include <config.h>
#ifdef USE_GUI
#ifndef __CAMERA_H__
#define __CAMERA_H__
#include <string>
using namespace std;
#include "error.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <getopt.h>
#include <avformat.h>
#include "util.h"
#include <queue.h>
#include "decoder.h"
#include "encoder.h"
#include "player.h"
#include "thread.h"
#include "ffframe.h"
#include <dvframe.h>
#include <qwidget.h>
class Camera {
public:
Camera();
~Camera();
void connect(const char *ip,
const int port);
void setCpr(char *newcpr);
void start();
void stop();
void freeze();
void unfreeze();
void snapshot();
Error *errorObject();
private:
Error *errorstatus;
bool initialized;
pthread_t playertid;
pthread_t decodetid;
pthread_t encodetid;
volatile int running;
Encoder *encoder;
Decoder *decoder;
Player *player;
Queue<DVFrame> *encode_queue;
Queue<FFFrame> *player_queue;
sem_t encode_sem;
sem_t player_sem;
pthread_mutex_t mutex;
};
#endif
#endif
|