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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
|
/* Copyright (C) 2002-2005 RealVNC Ltd. All Rights Reserved.
*
* This is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
* USA.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h>
#include <string.h>
#include <vector>
#include <rfb/Exception.h>
#include <rfb/LogWriter.h>
#include <rfb/ComparingUpdateTracker.h>
using namespace rfb;
static LogWriter vlog("ComparingUpdateTracker");
ComparingUpdateTracker::ComparingUpdateTracker(PixelBuffer* buffer)
: fb(buffer), oldFb(fb->getPF(), 0, 0), firstCompare(true),
enabled(true), totalPixels(0), missedPixels(0)
{
changed.assign_union(fb->getRect());
}
ComparingUpdateTracker::~ComparingUpdateTracker()
{
}
#define BLOCK_SIZE 64
bool ComparingUpdateTracker::compare()
{
std::vector<Rect> rects;
std::vector<Rect>::iterator i;
if (!enabled)
return false;
if (firstCompare) {
// NB: We leave the change region untouched on this iteration,
// since in effect the entire framebuffer has changed.
oldFb.setSize(fb->width(), fb->height());
for (int y=0; y<fb->height(); y+=BLOCK_SIZE) {
Rect pos(0, y, fb->width(), __rfbmin(fb->height(), y+BLOCK_SIZE));
int srcStride;
const uint8_t* srcData = fb->getBuffer(pos, &srcStride);
oldFb.imageRect(pos, srcData, srcStride);
}
firstCompare = false;
return false;
}
copied.get_rects(&rects, copy_delta.x<=0, copy_delta.y<=0);
for (i = rects.begin(); i != rects.end(); i++)
oldFb.copyRect(*i, copy_delta);
changed.get_rects(&rects);
Region newChanged;
for (i = rects.begin(); i != rects.end(); i++)
compareRect(*i, &newChanged);
changed.get_rects(&rects);
for (i = rects.begin(); i != rects.end(); i++)
totalPixels += i->area();
newChanged.get_rects(&rects);
for (i = rects.begin(); i != rects.end(); i++)
missedPixels += i->area();
if (changed.equals(newChanged))
return false;
changed = newChanged;
return true;
}
void ComparingUpdateTracker::enable()
{
enabled = true;
}
void ComparingUpdateTracker::disable()
{
enabled = false;
// Make sure we update the framebuffer next time we get enabled
firstCompare = true;
}
void ComparingUpdateTracker::compareRect(const Rect& r, Region* newChanged)
{
if (!r.enclosed_by(fb->getRect())) {
Rect safe;
// Crop the rect and try again
safe = r.intersect(fb->getRect());
if (!safe.is_empty())
compareRect(safe, newChanged);
return;
}
int bytesPerPixel = fb->getPF().bpp/8;
int oldStride;
uint8_t* oldData = oldFb.getBufferRW(r, &oldStride);
int oldStrideBytes = oldStride * bytesPerPixel;
// Used to efficiently crop the left and right of the change rectangle
int minCompareWidthInPixels = BLOCK_SIZE / 8;
int minCompareWidthInBytes = minCompareWidthInPixels * bytesPerPixel;
for (int blockTop = r.tl.y; blockTop < r.br.y; blockTop += BLOCK_SIZE)
{
// Get a strip of the source buffer
Rect pos(r.tl.x, blockTop, r.br.x, __rfbmin(r.br.y, blockTop+BLOCK_SIZE));
int fbStride;
const uint8_t* newBlockPtr = fb->getBuffer(pos, &fbStride);
int newStrideBytes = fbStride * bytesPerPixel;
uint8_t* oldBlockPtr = oldData;
int blockBottom = __rfbmin(blockTop+BLOCK_SIZE, r.br.y);
for (int blockLeft = r.tl.x; blockLeft < r.br.x; blockLeft += BLOCK_SIZE)
{
const uint8_t* newPtr = newBlockPtr;
uint8_t* oldPtr = oldBlockPtr;
int blockRight = __rfbmin(blockLeft+BLOCK_SIZE, r.br.x);
int blockWidthInBytes = (blockRight-blockLeft) * bytesPerPixel;
// Scan the block top to bottom, to identify the first row of change
for (int y = blockTop; y < blockBottom; y++)
{
if (memcmp(oldPtr, newPtr, blockWidthInBytes) != 0)
{
// Define the change rectangle using pessimistic values to start
int changeHeight = blockBottom - y;
int changeLeft = blockLeft;
int changeRight = blockRight;
// For every unchanged row at the bottom of the block, decrement change height
{
const uint8_t* newRowPtr = newPtr + ((changeHeight - 1) * newStrideBytes);
const uint8_t* oldRowPtr = oldPtr + ((changeHeight - 1) * oldStrideBytes);
while (changeHeight > 1 && memcmp(oldRowPtr, newRowPtr, blockWidthInBytes) == 0)
{
newRowPtr -= newStrideBytes;
oldRowPtr -= oldStrideBytes;
changeHeight--;
}
}
// For every unchanged column at the left of the block, increment change left
{
const uint8_t* newColumnPtr = newPtr;
const uint8_t* oldColumnPtr = oldPtr;
while (changeLeft + minCompareWidthInPixels < changeRight)
{
const uint8_t* newRowPtr = newColumnPtr;
const uint8_t* oldRowPtr = oldColumnPtr;
for (int row = 0; row < changeHeight; row++)
{
if (memcmp(oldRowPtr, newRowPtr, minCompareWidthInBytes) != 0)
goto endOfChangeLeft;
newRowPtr += newStrideBytes;
oldRowPtr += oldStrideBytes;
}
newColumnPtr += minCompareWidthInBytes;
oldColumnPtr += minCompareWidthInBytes;
changeLeft += minCompareWidthInPixels;
}
}
endOfChangeLeft:
// For every unchanged column at the right of the block, decrement change right
{
const uint8_t* newColumnPtr = newPtr + blockWidthInBytes;
const uint8_t* oldColumnPtr = oldPtr + blockWidthInBytes;
while (changeLeft + minCompareWidthInPixels < changeRight)
{
newColumnPtr -= minCompareWidthInBytes;
oldColumnPtr -= minCompareWidthInBytes;
const uint8_t* newRowPtr = newColumnPtr;
const uint8_t* oldRowPtr = oldColumnPtr;
for (int row = 0; row < changeHeight; row++)
{
if (memcmp(oldRowPtr, newRowPtr, minCompareWidthInBytes) != 0)
goto endOfChangeRight;
newRowPtr += newStrideBytes;
oldRowPtr += oldStrideBytes;
}
changeRight -= minCompareWidthInPixels;
}
}
endOfChangeRight:
// Block change extends from (changeLeft, y) to (changeRight, y + changeHeight)
newChanged->assign_union(Region(Rect(changeLeft, y, changeRight, y + changeHeight)));
// Copy the change from fb to oldFb to allow future changes to be identified
for (int row = 0; row < changeHeight; row++)
{
memcpy(oldPtr, newPtr, blockWidthInBytes);
newPtr += newStrideBytes;
oldPtr += oldStrideBytes;
}
// No further processing is required for this block
break;
}
newPtr += newStrideBytes;
oldPtr += oldStrideBytes;
}
oldBlockPtr += blockWidthInBytes;
newBlockPtr += blockWidthInBytes;
}
oldData += oldStrideBytes * BLOCK_SIZE;
}
oldFb.commitBufferRW(r);
}
void ComparingUpdateTracker::logStats()
{
double ratio;
char a[1024], b[1024];
siPrefix(totalPixels, "pixels", a, sizeof(a));
siPrefix(missedPixels, "pixels", b, sizeof(b));
ratio = (double)totalPixels / missedPixels;
vlog.info("%s in / %s out", a, b);
vlog.info("(1:%g ratio)", ratio);
totalPixels = missedPixels = 0;
}
|