-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvideocontrol.cpp
166 lines (132 loc) · 4.03 KB
/
videocontrol.cpp
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
#include <chrono>
#include <thread>
#include "BrowserClient.h"
#include "videocontrol.h"
bool isPlayerActivated;
static uchar buf[188], bufsize;
VideoPlayer::VideoPlayer() {
dsyslog("[vdrweb] Create Player...");
pause = false;
bufsize = 0;
tsPlayed = false;
}
VideoPlayer::~VideoPlayer() {
dsyslog("[vdrweb] Delete Player...");
pause = true;
setVideoFullscreen();
Detach();
}
void VideoPlayer::Activate(bool On) {
dsyslog("[vdrweb] Activate video player: %s", On ? " Ja" : "Nein");
if (On) {
isPlayerActivated = true;
} else {
isPlayerActivated = false;
setVideoFullscreen();
}
}
void VideoPlayer::Pause() {
pause = true;
DeviceFreeze();
}
void VideoPlayer::Resume() {
ResetVideo();
bufsize = 0;
DevicePlay();
pause = false;
}
void VideoPlayer::setVideoFullscreen() {
// fullscreen
cDevice::PrimaryDevice()->ScaleVideo(cRect::Null);
}
void VideoPlayer::ResetVideo() {
if (tsPlayed) {
dsyslog("VideoPlayer::ResetVideo");
DeviceClear();
tsPlayed = false;
}
bufsize = 0;
}
void VideoPlayer::SetVideoSize(int x, int y, int width, int height) {
dsyslog("[vdrweb] SetVideoSize in video player: x=%d, y=%d, width=%d, height=%d", x, y, width, height);
int newX, newY, newWidth, newHeight;
calcVideoPosition(x, y, width,height, &newX, &newY, &newWidth, &newHeight);
dsyslog("[vdrweb] SetVideoSize calculated: x=%d, y=%d, width=%d, height=%d", newX, newY, newWidth, newHeight);
cRect r = {newX, newY, newWidth, newHeight};
cRect availableRect = cDevice::PrimaryDevice()->CanScaleVideo(r);
cDevice::PrimaryDevice()->ScaleVideo(availableRect);
}
void VideoPlayer::calcVideoPosition(int x, int y, int w, int h, int *newx, int *newy, int *newwidth, int *newheight) {
int osdWidth;
int osdHeight;
double osdPh;
cDevice::PrimaryDevice()->GetOsdSize(osdWidth, osdHeight, osdPh);
*newx = (x * osdWidth) / 1280;
*newy = (y * osdHeight) / 720;
*newwidth = (w * osdWidth) / 1280;
*newheight = (h * osdHeight) / 720;
}
void VideoPlayer::PlayPacket(uint8_t *buffer, int len) {
tsError = false;
// if player is paused, discard all incoming packets
if (pause) {
// drop all packets if video is paused
return;
}
if (len) { // at least one tspacket
// play saved partial packet
if (bufsize) {
memcpy(buf + bufsize, buffer, 188 - bufsize);
if (videoPlayer != nullptr) {
PlayTs(buf, 188);
} else {
return;
}
buffer += 188 - bufsize;
len -= 188 - bufsize;
bufsize = 0;
}
// save partial packet
int rest = len % 188;
if (rest) {
memcpy(buf, buffer + len - rest, rest);
len -= rest;
bufsize = rest;
}
// now play packets
int retry_loop_count = 0;
while (len >= 188) {
int result = -1;
if (videoPlayer != nullptr) {
result = PlayTs(buffer, len);
} else {
return;
}
// play error.
if (result < 0) {
tsError = true;
return;
}
// packets not played
if (result == 0) {
// retry after some time, but increase retry_loop_count
if (retry_loop_count >= 10) {
tsError = true;
return;
} else {
retry_loop_count++;
std::this_thread::sleep_for(std::chrono::milliseconds(500));
continue;
}
}
// packets accepted
len -= result;
buffer += result;
tsPlayed = true;
}
}
}
void VideoPlayer::SelectAudioTrack(std::string track) {
// TODO: Wie wechselt man den Audiotrack?
// printf("Anzahl der Audio-Tracks: %d\n", cDevice::PrimaryDevice()->NumAudioTracks());
}