/src/FreeRDP/libfreerdp/codec/progressive.c
Line | Count | Source |
1 | | /** |
2 | | * FreeRDP: A Remote Desktop Protocol Implementation |
3 | | * Progressive Codec Bitmap Compression |
4 | | * |
5 | | * Copyright 2014 Marc-Andre Moreau <marcandre.moreau@gmail.com> |
6 | | * Copyright 2019 Armin Novak <armin.novak@thincast.com> |
7 | | * Copyright 2019 Thincast Technologies GmbH |
8 | | * |
9 | | * Licensed under the Apache License, Version 2.0 (the "License"); |
10 | | * you may not use this file except in compliance with the License. |
11 | | * You may obtain a copy of the License at |
12 | | * |
13 | | * http://www.apache.org/licenses/LICENSE-2.0 |
14 | | * |
15 | | * Unless required by applicable law or agreed to in writing, software |
16 | | * distributed under the License is distributed on an "AS IS" BASIS, |
17 | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
18 | | * See the License for the specific language governing permissions and |
19 | | * limitations under the License. |
20 | | */ |
21 | | |
22 | | #include <freerdp/config.h> |
23 | | |
24 | | #include <winpr/assert.h> |
25 | | #include <winpr/cast.h> |
26 | | #include <winpr/crt.h> |
27 | | #include <winpr/print.h> |
28 | | #include <winpr/bitstream.h> |
29 | | |
30 | | #include <freerdp/primitives.h> |
31 | | #include <freerdp/codec/color.h> |
32 | | #include <freerdp/codec/progressive.h> |
33 | | #include <freerdp/codec/region.h> |
34 | | #include <freerdp/log.h> |
35 | | |
36 | | #include "rfx_differential.h" |
37 | | #include "rfx_quantization.h" |
38 | | #include "rfx_dwt.h" |
39 | | #include "rfx_rlgr.h" |
40 | | #include "rfx_constants.h" |
41 | | #include "rfx_types.h" |
42 | | #include "progressive.h" |
43 | | |
44 | 5.89k | #define TAG FREERDP_TAG("codec.progressive") |
45 | | |
46 | | typedef struct |
47 | | { |
48 | | BOOL nonLL; |
49 | | wBitStream* srl; |
50 | | wBitStream* raw; |
51 | | |
52 | | /* SRL state */ |
53 | | |
54 | | UINT32 kp; |
55 | | int nz; |
56 | | BOOL mode; |
57 | | } RFX_PROGRESSIVE_UPGRADE_STATE; |
58 | | |
59 | | static inline void |
60 | | progressive_component_codec_quant_read(wStream* WINPR_RESTRICT s, |
61 | | RFX_COMPONENT_CODEC_QUANT* WINPR_RESTRICT quantVal) |
62 | 3.17k | { |
63 | 3.17k | BYTE b = 0; |
64 | 3.17k | Stream_Read_UINT8(s, b); |
65 | 3.17k | quantVal->LL3 = b & 0x0F; |
66 | 3.17k | quantVal->HL3 = b >> 4; |
67 | 3.17k | Stream_Read_UINT8(s, b); |
68 | 3.17k | quantVal->LH3 = b & 0x0F; |
69 | 3.17k | quantVal->HH3 = b >> 4; |
70 | 3.17k | Stream_Read_UINT8(s, b); |
71 | 3.17k | quantVal->HL2 = b & 0x0F; |
72 | 3.17k | quantVal->LH2 = b >> 4; |
73 | 3.17k | Stream_Read_UINT8(s, b); |
74 | 3.17k | quantVal->HH2 = b & 0x0F; |
75 | 3.17k | quantVal->HL1 = b >> 4; |
76 | 3.17k | Stream_Read_UINT8(s, b); |
77 | 3.17k | quantVal->LH1 = b & 0x0F; |
78 | 3.17k | quantVal->HH1 = b >> 4; |
79 | 3.17k | } |
80 | | |
81 | | static inline void progressive_rfx_quant_add(const RFX_COMPONENT_CODEC_QUANT* WINPR_RESTRICT q1, |
82 | | const RFX_COMPONENT_CODEC_QUANT* WINPR_RESTRICT q2, |
83 | | RFX_COMPONENT_CODEC_QUANT* dst) |
84 | 0 | { |
85 | 0 | dst->HL1 = q1->HL1 + q2->HL1; /* HL1 */ |
86 | 0 | dst->LH1 = q1->LH1 + q2->LH1; /* LH1 */ |
87 | 0 | dst->HH1 = q1->HH1 + q2->HH1; /* HH1 */ |
88 | 0 | dst->HL2 = q1->HL2 + q2->HL2; /* HL2 */ |
89 | 0 | dst->LH2 = q1->LH2 + q2->LH2; /* LH2 */ |
90 | 0 | dst->HH2 = q1->HH2 + q2->HH2; /* HH2 */ |
91 | 0 | dst->HL3 = q1->HL3 + q2->HL3; /* HL3 */ |
92 | 0 | dst->LH3 = q1->LH3 + q2->LH3; /* LH3 */ |
93 | 0 | dst->HH3 = q1->HH3 + q2->HH3; /* HH3 */ |
94 | 0 | dst->LL3 = q1->LL3 + q2->LL3; /* LL3 */ |
95 | 0 | } |
96 | | |
97 | | WINPR_ATTR_NODISCARD |
98 | | static inline BOOL progressive_rfx_quant_lsub(RFX_COMPONENT_CODEC_QUANT* WINPR_RESTRICT q, int val) |
99 | 0 | { |
100 | 0 | if (q->HL1 < val) |
101 | 0 | return FALSE; |
102 | 0 | q->HL1 -= val; /* HL1 */ |
103 | |
|
104 | 0 | if (q->LH1 < val) |
105 | 0 | return FALSE; |
106 | 0 | q->LH1 -= val; /* LH1 */ |
107 | |
|
108 | 0 | if (q->HH1 < val) |
109 | 0 | return FALSE; |
110 | 0 | q->HH1 -= val; /* HH1 */ |
111 | |
|
112 | 0 | if (q->HL2 < val) |
113 | 0 | return FALSE; |
114 | 0 | q->HL2 -= val; /* HL2 */ |
115 | |
|
116 | 0 | if (q->LH2 < val) |
117 | 0 | return FALSE; |
118 | 0 | q->LH2 -= val; /* LH2 */ |
119 | |
|
120 | 0 | if (q->HH2 < val) |
121 | 0 | return FALSE; |
122 | 0 | q->HH2 -= val; /* HH2 */ |
123 | |
|
124 | 0 | if (q->HL3 < val) |
125 | 0 | return FALSE; |
126 | 0 | q->HL3 -= val; /* HL3 */ |
127 | |
|
128 | 0 | if (q->LH3 < val) |
129 | 0 | return FALSE; |
130 | 0 | q->LH3 -= val; /* LH3 */ |
131 | |
|
132 | 0 | if (q->HH3 < val) |
133 | 0 | return FALSE; |
134 | 0 | q->HH3 -= val; /* HH3 */ |
135 | |
|
136 | 0 | if (q->LL3 < val) |
137 | 0 | return FALSE; |
138 | 0 | q->LL3 -= val; /* LL3 */ |
139 | 0 | return TRUE; |
140 | 0 | } |
141 | | |
142 | | WINPR_ATTR_NODISCARD |
143 | | static inline BOOL progressive_rfx_quant_sub(const RFX_COMPONENT_CODEC_QUANT* WINPR_RESTRICT q1, |
144 | | const RFX_COMPONENT_CODEC_QUANT* WINPR_RESTRICT q2, |
145 | | RFX_COMPONENT_CODEC_QUANT* dst) |
146 | 0 | { |
147 | 0 | if (q1->HH1 < q2->HL1) |
148 | 0 | return FALSE; |
149 | 0 | dst->HL1 = q1->HL1 - q2->HL1; /* HL1 */ |
150 | |
|
151 | 0 | if (q1->LH1 < q2->LH1) |
152 | 0 | return FALSE; |
153 | 0 | dst->LH1 = q1->LH1 - q2->LH1; /* LH1 */ |
154 | |
|
155 | 0 | if (q1->HH1 < q2->HH1) |
156 | 0 | return FALSE; |
157 | 0 | dst->HH1 = q1->HH1 - q2->HH1; /* HH1 */ |
158 | |
|
159 | 0 | if (q1->HL2 < q2->HL2) |
160 | 0 | return FALSE; |
161 | 0 | dst->HL2 = q1->HL2 - q2->HL2; /* HL2 */ |
162 | |
|
163 | 0 | if (q1->LH2 < q2->LH2) |
164 | 0 | return FALSE; |
165 | 0 | dst->LH2 = q1->LH2 - q2->LH2; /* LH2 */ |
166 | |
|
167 | 0 | if (q1->HH2 < q2->HH2) |
168 | 0 | return FALSE; |
169 | 0 | dst->HH2 = q1->HH2 - q2->HH2; /* HH2 */ |
170 | |
|
171 | 0 | if (q1->HL3 < q2->HL3) |
172 | 0 | return FALSE; |
173 | 0 | dst->HL3 = q1->HL3 - q2->HL3; /* HL3 */ |
174 | |
|
175 | 0 | if (q1->LH3 < q2->LH3) |
176 | 0 | return FALSE; |
177 | 0 | dst->LH3 = q1->LH3 - q2->LH3; /* LH3 */ |
178 | |
|
179 | 0 | if (q1->HH3 < q2->HH3) |
180 | 0 | return FALSE; |
181 | 0 | dst->HH3 = q1->HH3 - q2->HH3; /* HH3 */ |
182 | |
|
183 | 0 | if (q1->LL3 < q2->LL3) |
184 | 0 | return FALSE; |
185 | 0 | dst->LL3 = q1->LL3 - q2->LL3; /* LL3 */ |
186 | |
|
187 | 0 | return TRUE; |
188 | 0 | } |
189 | | |
190 | | static inline BOOL |
191 | | progressive_rfx_quant_lcmp_less_equal(const RFX_COMPONENT_CODEC_QUANT* WINPR_RESTRICT q, int val) |
192 | 52 | { |
193 | 52 | if (q->HL1 > val) |
194 | 0 | return FALSE; /* HL1 */ |
195 | | |
196 | 52 | if (q->LH1 > val) |
197 | 0 | return FALSE; /* LH1 */ |
198 | | |
199 | 52 | if (q->HH1 > val) |
200 | 0 | return FALSE; /* HH1 */ |
201 | | |
202 | 52 | if (q->HL2 > val) |
203 | 0 | return FALSE; /* HL2 */ |
204 | | |
205 | 52 | if (q->LH2 > val) |
206 | 0 | return FALSE; /* LH2 */ |
207 | | |
208 | 52 | if (q->HH2 > val) |
209 | 0 | return FALSE; /* HH2 */ |
210 | | |
211 | 52 | if (q->HL3 > val) |
212 | 0 | return FALSE; /* HL3 */ |
213 | | |
214 | 52 | if (q->LH3 > val) |
215 | 0 | return FALSE; /* LH3 */ |
216 | | |
217 | 52 | if (q->HH3 > val) |
218 | 0 | return FALSE; /* HH3 */ |
219 | | |
220 | 52 | if (q->LL3 > val) |
221 | 0 | return FALSE; /* LL3 */ |
222 | | |
223 | 52 | return TRUE; |
224 | 52 | } |
225 | | |
226 | | static inline BOOL |
227 | | progressive_rfx_quant_lcmp_greater_equal(const RFX_COMPONENT_CODEC_QUANT* WINPR_RESTRICT q, int val) |
228 | 79 | { |
229 | 79 | if (q->HL1 < val) |
230 | 6 | return FALSE; /* HL1 */ |
231 | | |
232 | 73 | if (q->LH1 < val) |
233 | 3 | return FALSE; /* LH1 */ |
234 | | |
235 | 70 | if (q->HH1 < val) |
236 | 2 | return FALSE; /* HH1 */ |
237 | | |
238 | 68 | if (q->HL2 < val) |
239 | 2 | return FALSE; /* HL2 */ |
240 | | |
241 | 66 | if (q->LH2 < val) |
242 | 2 | return FALSE; /* LH2 */ |
243 | | |
244 | 64 | if (q->HH2 < val) |
245 | 3 | return FALSE; /* HH2 */ |
246 | | |
247 | 61 | if (q->HL3 < val) |
248 | 2 | return FALSE; /* HL3 */ |
249 | | |
250 | 59 | if (q->LH3 < val) |
251 | 3 | return FALSE; /* LH3 */ |
252 | | |
253 | 56 | if (q->HH3 < val) |
254 | 2 | return FALSE; /* HH3 */ |
255 | | |
256 | 54 | if (q->LL3 < val) |
257 | 2 | return FALSE; /* LL3 */ |
258 | | |
259 | 52 | return TRUE; |
260 | 54 | } |
261 | | |
262 | | static inline BOOL |
263 | | progressive_rfx_quant_cmp_equal(const RFX_COMPONENT_CODEC_QUANT* WINPR_RESTRICT q1, |
264 | | const RFX_COMPONENT_CODEC_QUANT* WINPR_RESTRICT q2) |
265 | 0 | { |
266 | 0 | if (q1->HL1 != q2->HL1) |
267 | 0 | return FALSE; /* HL1 */ |
268 | | |
269 | 0 | if (q1->LH1 != q2->LH1) |
270 | 0 | return FALSE; /* LH1 */ |
271 | | |
272 | 0 | if (q1->HH1 != q2->HH1) |
273 | 0 | return FALSE; /* HH1 */ |
274 | | |
275 | 0 | if (q1->HL2 != q2->HL2) |
276 | 0 | return FALSE; /* HL2 */ |
277 | | |
278 | 0 | if (q1->LH2 != q2->LH2) |
279 | 0 | return FALSE; /* LH2 */ |
280 | | |
281 | 0 | if (q1->HH2 != q2->HH2) |
282 | 0 | return FALSE; /* HH2 */ |
283 | | |
284 | 0 | if (q1->HL3 != q2->HL3) |
285 | 0 | return FALSE; /* HL3 */ |
286 | | |
287 | 0 | if (q1->LH3 != q2->LH3) |
288 | 0 | return FALSE; /* LH3 */ |
289 | | |
290 | 0 | if (q1->HH3 != q2->HH3) |
291 | 0 | return FALSE; /* HH3 */ |
292 | | |
293 | 0 | if (q1->LL3 != q2->LL3) |
294 | 0 | return FALSE; /* LL3 */ |
295 | | |
296 | 0 | return TRUE; |
297 | 0 | } |
298 | | |
299 | | static inline BOOL progressive_set_surface_data(PROGRESSIVE_CONTEXT* WINPR_RESTRICT progressive, |
300 | | UINT16 surfaceId, |
301 | | PROGRESSIVE_SURFACE_CONTEXT* WINPR_RESTRICT pData) |
302 | 5.89k | { |
303 | 5.89k | ULONG_PTR key = 0; |
304 | 5.89k | key = ((ULONG_PTR)surfaceId) + 1; |
305 | | |
306 | 5.89k | if (pData) |
307 | 5.89k | return HashTable_Insert(progressive->SurfaceContexts, (void*)key, pData); |
308 | | |
309 | 0 | HashTable_Remove(progressive->SurfaceContexts, (void*)key); |
310 | 0 | return TRUE; |
311 | 5.89k | } |
312 | | |
313 | | static inline PROGRESSIVE_SURFACE_CONTEXT* |
314 | | progressive_get_surface_data(PROGRESSIVE_CONTEXT* WINPR_RESTRICT progressive, UINT16 surfaceId) |
315 | 11.7k | { |
316 | 11.7k | void* key = (void*)(((ULONG_PTR)surfaceId) + 1); |
317 | | |
318 | 11.7k | if (!progressive) |
319 | 0 | return nullptr; |
320 | | |
321 | 11.7k | return HashTable_GetItemValue(progressive->SurfaceContexts, key); |
322 | 11.7k | } |
323 | | |
324 | | static void progressive_tile_free(RFX_PROGRESSIVE_TILE* WINPR_RESTRICT tile) |
325 | 1.30M | { |
326 | 1.30M | if (tile) |
327 | 1.30M | { |
328 | 1.30M | winpr_aligned_free(tile->sign); |
329 | 1.30M | winpr_aligned_free(tile->current); |
330 | 1.30M | winpr_aligned_free(tile->data); |
331 | 1.30M | winpr_aligned_free(tile); |
332 | 1.30M | } |
333 | 1.30M | } |
334 | | |
335 | | static void progressive_surface_context_free(void* ptr) |
336 | 11.7k | { |
337 | 11.7k | PROGRESSIVE_SURFACE_CONTEXT* surface = ptr; |
338 | | |
339 | 11.7k | if (!surface) |
340 | 5.89k | return; |
341 | | |
342 | 5.89k | if (surface->tiles) |
343 | 5.89k | { |
344 | 1.30M | for (size_t index = 0; index < surface->tilesSize; index++) |
345 | 1.30M | { |
346 | 1.30M | RFX_PROGRESSIVE_TILE* tile = surface->tiles[index]; |
347 | 1.30M | progressive_tile_free(tile); |
348 | 1.30M | } |
349 | 5.89k | } |
350 | | |
351 | 5.89k | winpr_aligned_free((void*)surface->tiles); |
352 | 5.89k | winpr_aligned_free(surface->updatedTileIndices); |
353 | 5.89k | winpr_aligned_free(surface); |
354 | 5.89k | } |
355 | | |
356 | | static inline RFX_PROGRESSIVE_TILE* progressive_tile_new(void) |
357 | 1.30M | { |
358 | 1.30M | RFX_PROGRESSIVE_TILE* tile = winpr_aligned_calloc(1, sizeof(RFX_PROGRESSIVE_TILE), 32); |
359 | 1.30M | if (!tile) |
360 | 0 | goto fail; |
361 | | |
362 | 1.30M | tile->width = 64; |
363 | 1.30M | tile->height = 64; |
364 | 1.30M | tile->stride = 4 * tile->width; |
365 | | |
366 | 1.30M | { |
367 | 1.30M | const size_t dataLen = 1ull * tile->stride * tile->height; |
368 | 1.30M | tile->data = (BYTE*)winpr_aligned_malloc(dataLen, 16); |
369 | 1.30M | if (!tile->data) |
370 | 0 | goto fail; |
371 | 1.30M | memset(tile->data, 0xFF, dataLen); |
372 | 1.30M | } |
373 | | |
374 | 0 | { |
375 | 1.30M | const size_t signLen = (8192ULL + 32ULL) * 3ULL; |
376 | 1.30M | tile->sign = (BYTE*)winpr_aligned_malloc(signLen, 16); |
377 | 1.30M | } |
378 | | |
379 | 1.30M | if (!tile->sign) |
380 | 0 | goto fail; |
381 | | |
382 | 1.30M | { |
383 | 1.30M | const size_t currentLen = (8192ULL + 32ULL) * 3ULL; |
384 | 1.30M | tile->current = (BYTE*)winpr_aligned_malloc(currentLen, 16); |
385 | 1.30M | } |
386 | 1.30M | if (!tile->current) |
387 | 0 | goto fail; |
388 | | |
389 | 1.30M | return tile; |
390 | | |
391 | 0 | fail: |
392 | 0 | progressive_tile_free(tile); |
393 | 0 | return nullptr; |
394 | 1.30M | } |
395 | | |
396 | | static inline BOOL |
397 | | progressive_allocate_tile_cache(PROGRESSIVE_SURFACE_CONTEXT* WINPR_RESTRICT surface, size_t min) |
398 | 5.89k | { |
399 | 5.89k | size_t oldIndex = 0; |
400 | | |
401 | 5.89k | WINPR_ASSERT(surface); |
402 | 5.89k | WINPR_ASSERT(surface->gridSize > 0); |
403 | | |
404 | 5.89k | if (surface->tiles) |
405 | 0 | { |
406 | 0 | oldIndex = surface->gridSize; |
407 | 0 | while (surface->gridSize < min) |
408 | 0 | surface->gridSize += 1024; |
409 | 0 | } |
410 | | |
411 | 5.89k | void* tmp = winpr_aligned_recalloc((void*)surface->tiles, surface->gridSize, |
412 | 5.89k | sizeof(RFX_PROGRESSIVE_TILE*), 32); |
413 | 5.89k | if (!tmp) |
414 | 0 | return FALSE; |
415 | 5.89k | surface->tilesSize = surface->gridSize; |
416 | 5.89k | surface->tiles = (RFX_PROGRESSIVE_TILE**)tmp; |
417 | | |
418 | 1.30M | for (size_t x = oldIndex; x < surface->tilesSize; x++) |
419 | 1.30M | { |
420 | 1.30M | surface->tiles[x] = progressive_tile_new(); |
421 | 1.30M | if (!surface->tiles[x]) |
422 | 0 | return FALSE; |
423 | 1.30M | } |
424 | | |
425 | 5.89k | tmp = |
426 | 5.89k | winpr_aligned_recalloc(surface->updatedTileIndices, surface->gridSize, sizeof(UINT32), 32); |
427 | 5.89k | if (!tmp) |
428 | 0 | return FALSE; |
429 | | |
430 | 5.89k | surface->updatedTileIndices = tmp; |
431 | | |
432 | 5.89k | return TRUE; |
433 | 5.89k | } |
434 | | |
435 | | static PROGRESSIVE_SURFACE_CONTEXT* progressive_surface_context_new(UINT16 surfaceId, UINT32 width, |
436 | | UINT32 height) |
437 | 5.89k | { |
438 | 5.89k | PROGRESSIVE_SURFACE_CONTEXT* surface = (PROGRESSIVE_SURFACE_CONTEXT*)winpr_aligned_calloc( |
439 | 5.89k | 1, sizeof(PROGRESSIVE_SURFACE_CONTEXT), 32); |
440 | | |
441 | 5.89k | if (!surface) |
442 | 0 | return nullptr; |
443 | | |
444 | 5.89k | surface->id = surfaceId; |
445 | 5.89k | surface->width = width; |
446 | 5.89k | surface->height = height; |
447 | 5.89k | surface->gridWidth = (width + (64 - width % 64)) / 64; |
448 | 5.89k | surface->gridHeight = (height + (64 - height % 64)) / 64; |
449 | 5.89k | surface->gridSize = surface->gridWidth * surface->gridHeight; |
450 | | |
451 | 5.89k | if (!progressive_allocate_tile_cache(surface, surface->gridSize)) |
452 | 0 | { |
453 | 0 | progressive_surface_context_free(surface); |
454 | 0 | return nullptr; |
455 | 0 | } |
456 | | |
457 | 5.89k | return surface; |
458 | 5.89k | } |
459 | | |
460 | | static inline BOOL |
461 | | progressive_surface_tile_replace(PROGRESSIVE_SURFACE_CONTEXT* WINPR_RESTRICT surface, |
462 | | PROGRESSIVE_BLOCK_REGION* WINPR_RESTRICT region, |
463 | | const RFX_PROGRESSIVE_TILE* WINPR_RESTRICT tile, BOOL upgrade) |
464 | 90 | { |
465 | 90 | RFX_PROGRESSIVE_TILE* t = nullptr; |
466 | | |
467 | 90 | size_t zIdx = 0; |
468 | 90 | if (!surface || !tile) |
469 | 0 | return FALSE; |
470 | | |
471 | 90 | zIdx = (tile->yIdx * surface->gridWidth) + tile->xIdx; |
472 | | |
473 | 90 | if (zIdx >= surface->tilesSize) |
474 | 18 | { |
475 | 18 | WLog_ERR(TAG, "Invalid zIndex %" PRIuz, zIdx); |
476 | 18 | return FALSE; |
477 | 18 | } |
478 | | |
479 | 72 | t = surface->tiles[zIdx]; |
480 | | |
481 | 72 | t->blockType = tile->blockType; |
482 | 72 | t->blockLen = tile->blockLen; |
483 | 72 | t->quantIdxY = tile->quantIdxY; |
484 | 72 | t->quantIdxCb = tile->quantIdxCb; |
485 | 72 | t->quantIdxCr = tile->quantIdxCr; |
486 | 72 | t->xIdx = tile->xIdx; |
487 | 72 | t->yIdx = tile->yIdx; |
488 | 72 | t->flags = tile->flags; |
489 | 72 | t->quality = tile->quality; |
490 | 72 | t->x = tile->xIdx * t->width; |
491 | 72 | t->y = tile->yIdx * t->height; |
492 | | |
493 | 72 | if (upgrade) |
494 | 43 | { |
495 | 43 | t->ySrlLen = tile->ySrlLen; |
496 | 43 | t->yRawLen = tile->yRawLen; |
497 | 43 | t->cbSrlLen = tile->cbSrlLen; |
498 | 43 | t->cbRawLen = tile->cbRawLen; |
499 | 43 | t->crSrlLen = tile->crSrlLen; |
500 | 43 | t->crRawLen = tile->crRawLen; |
501 | 43 | t->ySrlData = tile->ySrlData; |
502 | 43 | t->yRawData = tile->yRawData; |
503 | 43 | t->cbSrlData = tile->cbSrlData; |
504 | 43 | t->cbRawData = tile->cbRawData; |
505 | 43 | t->crSrlData = tile->crSrlData; |
506 | 43 | t->crRawData = tile->crRawData; |
507 | 43 | } |
508 | 29 | else |
509 | 29 | { |
510 | 29 | t->yLen = tile->yLen; |
511 | 29 | t->cbLen = tile->cbLen; |
512 | 29 | t->crLen = tile->crLen; |
513 | 29 | t->tailLen = tile->tailLen; |
514 | 29 | t->yData = tile->yData; |
515 | 29 | t->cbData = tile->cbData; |
516 | 29 | t->crData = tile->crData; |
517 | 29 | t->tailData = tile->tailData; |
518 | 29 | } |
519 | | |
520 | 72 | if (region->usedTiles >= region->numTiles) |
521 | 2 | { |
522 | 2 | WLog_ERR(TAG, "Invalid tile count, only expected %" PRIu16 ", got %" PRIu16, |
523 | 2 | region->numTiles, region->usedTiles); |
524 | 2 | return FALSE; |
525 | 2 | } |
526 | | |
527 | 70 | region->tiles[region->usedTiles++] = t; |
528 | 70 | if (!t->dirty) |
529 | 51 | { |
530 | 51 | if (surface->numUpdatedTiles >= surface->gridSize) |
531 | 0 | { |
532 | 0 | if (!progressive_allocate_tile_cache(surface, surface->numUpdatedTiles + 1)) |
533 | 0 | return FALSE; |
534 | 0 | } |
535 | | |
536 | 51 | surface->updatedTileIndices[surface->numUpdatedTiles++] = (UINT32)zIdx; |
537 | 51 | } |
538 | | |
539 | 70 | t->dirty = TRUE; |
540 | 70 | return TRUE; |
541 | 70 | } |
542 | | |
543 | | INT32 progressive_create_surface_context(PROGRESSIVE_CONTEXT* WINPR_RESTRICT progressive, |
544 | | UINT16 surfaceId, UINT32 width, UINT32 height) |
545 | 5.89k | { |
546 | 5.89k | PROGRESSIVE_SURFACE_CONTEXT* surface = progressive_get_surface_data(progressive, surfaceId); |
547 | | |
548 | 5.89k | if (!surface) |
549 | 5.89k | { |
550 | 5.89k | surface = progressive_surface_context_new(surfaceId, width, height); |
551 | | |
552 | 5.89k | if (!surface) |
553 | 0 | return -1; |
554 | | |
555 | 5.89k | if (!progressive_set_surface_data(progressive, surfaceId, (void*)surface)) |
556 | 0 | { |
557 | 0 | progressive_surface_context_free(surface); |
558 | 0 | return -1; |
559 | 0 | } |
560 | 5.89k | } |
561 | | |
562 | 5.89k | return 1; |
563 | 5.89k | } |
564 | | |
565 | | int progressive_delete_surface_context(PROGRESSIVE_CONTEXT* WINPR_RESTRICT progressive, |
566 | | UINT16 surfaceId) |
567 | 0 | { |
568 | 0 | progressive_set_surface_data(progressive, surfaceId, nullptr); |
569 | |
|
570 | 0 | return 1; |
571 | 0 | } |
572 | | |
573 | | /* |
574 | | * Band Offset Dimensions Size |
575 | | * |
576 | | * HL1 0 31x33 1023 |
577 | | * LH1 1023 33x31 1023 |
578 | | * HH1 2046 31x31 961 |
579 | | * |
580 | | * HL2 3007 16x17 272 |
581 | | * LH2 3279 17x16 272 |
582 | | * HH2 3551 16x16 256 |
583 | | * |
584 | | * HL3 3807 8x9 72 |
585 | | * LH3 3879 9x8 72 |
586 | | * HH3 3951 8x8 64 |
587 | | * |
588 | | * LL3 4015 9x9 81 |
589 | | */ |
590 | | |
591 | | static int16_t clampi16(int val) |
592 | 0 | { |
593 | 0 | if (val < INT16_MIN) |
594 | 0 | return INT16_MIN; |
595 | 0 | if (val > INT16_MAX) |
596 | 0 | return INT16_MAX; |
597 | 0 | return (int16_t)val; |
598 | 0 | } |
599 | | |
600 | | static inline void progressive_rfx_idwt_x(const INT16* WINPR_RESTRICT pLowBand, size_t nLowStep, |
601 | | const INT16* WINPR_RESTRICT pHighBand, size_t nHighStep, |
602 | | INT16* WINPR_RESTRICT pDstBand, size_t nDstStep, |
603 | | size_t nLowCount, size_t nHighCount, size_t nDstCount) |
604 | 0 | { |
605 | 0 | INT16 H1 = 0; |
606 | 0 | INT16 X1 = 0; |
607 | |
|
608 | 0 | for (size_t i = 0; i < nDstCount; i++) |
609 | 0 | { |
610 | 0 | const INT16* pL = pLowBand; |
611 | 0 | const INT16* pH = pHighBand; |
612 | 0 | INT16* pX = pDstBand; |
613 | 0 | INT16 H0 = *pH++; |
614 | 0 | INT16 L0 = *pL++; |
615 | 0 | INT16 X0 = clampi16((int32_t)L0 - H0); |
616 | 0 | INT16 X2 = clampi16((int32_t)L0 - H0); |
617 | |
|
618 | 0 | for (size_t j = 0; j < (nHighCount - 1); j++) |
619 | 0 | { |
620 | 0 | H1 = *pH; |
621 | 0 | pH++; |
622 | 0 | L0 = *pL; |
623 | 0 | pL++; |
624 | 0 | X2 = clampi16((int32_t)L0 - ((H0 + H1) / 2)); |
625 | 0 | X1 = clampi16((int32_t)((X0 + X2) / 2) + (2 * H0)); |
626 | 0 | pX[0] = X0; |
627 | 0 | pX[1] = X1; |
628 | 0 | pX += 2; |
629 | 0 | X0 = X2; |
630 | 0 | H0 = H1; |
631 | 0 | } |
632 | |
|
633 | 0 | if (nLowCount <= (nHighCount + 1)) |
634 | 0 | { |
635 | 0 | if (nLowCount <= nHighCount) |
636 | 0 | { |
637 | 0 | pX[0] = X2; |
638 | 0 | pX[1] = clampi16((int32_t)X2 + (2 * H0)); |
639 | 0 | } |
640 | 0 | else |
641 | 0 | { |
642 | 0 | L0 = *pL; |
643 | 0 | pL++; |
644 | 0 | X0 = clampi16((int32_t)L0 - H0); |
645 | 0 | pX[0] = X2; |
646 | 0 | pX[1] = clampi16((int32_t)((X0 + X2) / 2) + (2 * H0)); |
647 | 0 | pX[2] = X0; |
648 | 0 | } |
649 | 0 | } |
650 | 0 | else |
651 | 0 | { |
652 | 0 | L0 = *pL; |
653 | 0 | pL++; |
654 | 0 | X0 = clampi16((int32_t)L0 - (H0 / 2)); |
655 | 0 | pX[0] = X2; |
656 | 0 | pX[1] = clampi16((int32_t)((X0 + X2) / 2) + (2 * H0)); |
657 | 0 | pX[2] = X0; |
658 | 0 | L0 = *pL; |
659 | 0 | pL++; |
660 | 0 | pX[3] = clampi16((int32_t)(X0 + L0) / 2); |
661 | 0 | } |
662 | |
|
663 | 0 | pLowBand += nLowStep; |
664 | 0 | pHighBand += nHighStep; |
665 | 0 | pDstBand += nDstStep; |
666 | 0 | } |
667 | 0 | } |
668 | | |
669 | | static inline void progressive_rfx_idwt_y(const INT16* WINPR_RESTRICT pLowBand, size_t nLowStep, |
670 | | const INT16* WINPR_RESTRICT pHighBand, size_t nHighStep, |
671 | | INT16* WINPR_RESTRICT pDstBand, size_t nDstStep, |
672 | | size_t nLowCount, size_t nHighCount, size_t nDstCount) |
673 | 0 | { |
674 | 0 | for (size_t i = 0; i < nDstCount; i++) |
675 | 0 | { |
676 | 0 | INT16 H1 = 0; |
677 | 0 | INT16 X1 = 0; |
678 | 0 | const INT16* pL = pLowBand; |
679 | 0 | const INT16* pH = pHighBand; |
680 | 0 | INT16* pX = pDstBand; |
681 | 0 | INT16 H0 = *pH; |
682 | 0 | pH += nHighStep; |
683 | 0 | INT16 L0 = *pL; |
684 | 0 | pL += nLowStep; |
685 | 0 | int16_t X0 = clampi16((int32_t)L0 - H0); |
686 | 0 | int16_t X2 = clampi16((int32_t)L0 - H0); |
687 | |
|
688 | 0 | for (size_t j = 0; j < (nHighCount - 1); j++) |
689 | 0 | { |
690 | 0 | H1 = *pH; |
691 | 0 | pH += nHighStep; |
692 | 0 | L0 = *pL; |
693 | 0 | pL += nLowStep; |
694 | 0 | X2 = clampi16((int32_t)L0 - ((H0 + H1) / 2)); |
695 | 0 | X1 = clampi16((int32_t)((X0 + X2) / 2) + (2 * H0)); |
696 | 0 | *pX = X0; |
697 | 0 | pX += nDstStep; |
698 | 0 | *pX = X1; |
699 | 0 | pX += nDstStep; |
700 | 0 | X0 = X2; |
701 | 0 | H0 = H1; |
702 | 0 | } |
703 | |
|
704 | 0 | if (nLowCount <= (nHighCount + 1)) |
705 | 0 | { |
706 | 0 | if (nLowCount <= nHighCount) |
707 | 0 | { |
708 | 0 | *pX = X2; |
709 | 0 | pX += nDstStep; |
710 | 0 | *pX = clampi16((int32_t)X2 + (2 * H0)); |
711 | 0 | } |
712 | 0 | else |
713 | 0 | { |
714 | 0 | L0 = *pL; |
715 | 0 | X0 = clampi16((int32_t)L0 - H0); |
716 | 0 | *pX = X2; |
717 | 0 | pX += nDstStep; |
718 | 0 | *pX = clampi16((int32_t)((X0 + X2) / 2) + (2 * H0)); |
719 | 0 | pX += nDstStep; |
720 | 0 | *pX = X0; |
721 | 0 | } |
722 | 0 | } |
723 | 0 | else |
724 | 0 | { |
725 | 0 | L0 = *pL; |
726 | 0 | pL += nLowStep; |
727 | 0 | X0 = clampi16((int32_t)L0 - (H0 / 2)); |
728 | 0 | *pX = X2; |
729 | 0 | pX += nDstStep; |
730 | 0 | *pX = clampi16((int32_t)((X0 + X2) / 2) + (2 * H0)); |
731 | 0 | pX += nDstStep; |
732 | 0 | *pX = X0; |
733 | 0 | pX += nDstStep; |
734 | 0 | L0 = *pL; |
735 | 0 | *pX = clampi16((int32_t)(X0 + L0) / 2); |
736 | 0 | } |
737 | |
|
738 | 0 | pLowBand++; |
739 | 0 | pHighBand++; |
740 | 0 | pDstBand++; |
741 | 0 | } |
742 | 0 | } |
743 | | |
744 | | static inline size_t progressive_rfx_get_band_l_count(size_t level) |
745 | 0 | { |
746 | 0 | return (64 >> level) + 1; |
747 | 0 | } |
748 | | |
749 | | static inline size_t progressive_rfx_get_band_h_count(size_t level) |
750 | 0 | { |
751 | 0 | if (level == 1) |
752 | 0 | return (64 >> 1) - 1; |
753 | 0 | else |
754 | 0 | return (64 + (1u << (level - 1))) >> level; |
755 | 0 | } |
756 | | |
757 | | static inline void progressive_rfx_dwt_2d_decode_block(INT16* WINPR_RESTRICT buffer, |
758 | | INT16* WINPR_RESTRICT temp, size_t level) |
759 | 0 | { |
760 | 0 | size_t nDstStepX = 0; |
761 | 0 | size_t nDstStepY = 0; |
762 | 0 | const INT16* WINPR_RESTRICT HL = nullptr; |
763 | 0 | const INT16* WINPR_RESTRICT LH = nullptr; |
764 | 0 | const INT16* WINPR_RESTRICT HH = nullptr; |
765 | 0 | INT16* WINPR_RESTRICT LL = nullptr; |
766 | 0 | INT16* WINPR_RESTRICT L = nullptr; |
767 | 0 | INT16* WINPR_RESTRICT H = nullptr; |
768 | 0 | INT16* WINPR_RESTRICT LLx = nullptr; |
769 | |
|
770 | 0 | const size_t nBandL = progressive_rfx_get_band_l_count(level); |
771 | 0 | const size_t nBandH = progressive_rfx_get_band_h_count(level); |
772 | 0 | size_t offset = 0; |
773 | |
|
774 | 0 | HL = &buffer[offset]; |
775 | 0 | offset += (nBandH * nBandL); |
776 | 0 | LH = &buffer[offset]; |
777 | 0 | offset += (nBandL * nBandH); |
778 | 0 | HH = &buffer[offset]; |
779 | 0 | offset += (nBandH * nBandH); |
780 | 0 | LL = &buffer[offset]; |
781 | 0 | nDstStepX = (nBandL + nBandH); |
782 | 0 | nDstStepY = (nBandL + nBandH); |
783 | 0 | offset = 0; |
784 | 0 | L = &temp[offset]; |
785 | 0 | offset += (nBandL * nDstStepX); |
786 | 0 | H = &temp[offset]; |
787 | 0 | LLx = &buffer[0]; |
788 | | |
789 | | /* horizontal (LL + HL -> L) */ |
790 | 0 | progressive_rfx_idwt_x(LL, nBandL, HL, nBandH, L, nDstStepX, nBandL, nBandH, nBandL); |
791 | | |
792 | | /* horizontal (LH + HH -> H) */ |
793 | 0 | progressive_rfx_idwt_x(LH, nBandL, HH, nBandH, H, nDstStepX, nBandL, nBandH, nBandH); |
794 | | |
795 | | /* vertical (L + H -> LL) */ |
796 | 0 | progressive_rfx_idwt_y(L, nDstStepX, H, nDstStepX, LLx, nDstStepY, nBandL, nBandH, |
797 | 0 | nBandL + nBandH); |
798 | 0 | } |
799 | | |
800 | | void rfx_dwt_2d_extrapolate_decode(INT16* WINPR_RESTRICT buffer, INT16* WINPR_RESTRICT dwt_buffer) |
801 | 0 | { |
802 | 0 | WINPR_ASSERT(buffer); |
803 | 0 | WINPR_ASSERT(dwt_buffer); |
804 | 0 | progressive_rfx_dwt_2d_decode_block(&buffer[3807], dwt_buffer, 3); |
805 | 0 | progressive_rfx_dwt_2d_decode_block(&buffer[3007], dwt_buffer, 2); |
806 | 0 | progressive_rfx_dwt_2d_decode_block(&buffer[0], dwt_buffer, 1); |
807 | 0 | } |
808 | | |
809 | | static inline int progressive_rfx_dwt_2d_decode(PROGRESSIVE_CONTEXT* WINPR_RESTRICT progressive, |
810 | | INT16* WINPR_RESTRICT buffer, |
811 | | INT16* WINPR_RESTRICT current, BOOL coeffDiff, |
812 | | BOOL extrapolate, BOOL reverse) |
813 | 0 | { |
814 | 0 | const primitives_t* prims = primitives_get(); |
815 | |
|
816 | 0 | if (!progressive || !buffer || !current) |
817 | 0 | return -1; |
818 | | |
819 | 0 | const uint32_t belements = 4096; |
820 | 0 | const uint32_t bsize = belements * sizeof(INT16); |
821 | 0 | if (reverse) |
822 | 0 | memcpy(buffer, current, bsize); |
823 | 0 | else if (!coeffDiff) |
824 | 0 | memcpy(current, buffer, bsize); |
825 | 0 | else |
826 | 0 | { |
827 | 0 | const pstatus_t rc = prims->add_16s_inplace(buffer, current, belements); |
828 | 0 | if (rc != PRIMITIVES_SUCCESS) |
829 | 0 | return -1; |
830 | 0 | } |
831 | | |
832 | 0 | INT16* temp = (INT16*)BufferPool_Take(progressive->bufferPool, -1); /* DWT buffer */ |
833 | |
|
834 | 0 | if (!temp) |
835 | 0 | return -2; |
836 | | |
837 | 0 | if (!extrapolate) |
838 | 0 | { |
839 | 0 | progressive->rfx_context->dwt_2d_decode(buffer, temp); |
840 | 0 | } |
841 | 0 | else |
842 | 0 | { |
843 | 0 | WINPR_ASSERT(progressive->rfx_context->dwt_2d_extrapolate_decode); |
844 | 0 | progressive->rfx_context->dwt_2d_extrapolate_decode(buffer, temp); |
845 | 0 | } |
846 | 0 | BufferPool_Return(progressive->bufferPool, temp); |
847 | 0 | return 1; |
848 | 0 | } |
849 | | |
850 | | static inline BOOL progressive_rfx_decode_block(const primitives_t* prims, |
851 | | INT16* WINPR_RESTRICT buffer, UINT32 length, |
852 | | UINT32 shift) |
853 | 0 | { |
854 | 0 | if (shift == 0) |
855 | 0 | return TRUE; |
856 | | |
857 | 0 | return prims->lShiftC_16s_inplace(buffer, shift, length) == PRIMITIVES_SUCCESS; |
858 | 0 | } |
859 | | |
860 | | static inline int |
861 | | progressive_rfx_decode_component(PROGRESSIVE_CONTEXT* WINPR_RESTRICT progressive, |
862 | | const RFX_COMPONENT_CODEC_QUANT* WINPR_RESTRICT shift, |
863 | | const BYTE* WINPR_RESTRICT data, UINT32 length, |
864 | | INT16* WINPR_RESTRICT buffer, INT16* WINPR_RESTRICT current, |
865 | | INT16* WINPR_RESTRICT sign, BOOL coeffDiff, |
866 | | WINPR_ATTR_UNUSED BOOL subbandDiff, BOOL extrapolate) |
867 | 0 | { |
868 | 0 | int status = 0; |
869 | 0 | const primitives_t* prims = primitives_get(); |
870 | |
|
871 | 0 | status = progressive->rfx_context->rlgr_decode(RLGR1, data, length, buffer, 4096); |
872 | |
|
873 | 0 | if (status < 0) |
874 | 0 | return status; |
875 | | |
876 | 0 | CopyMemory(sign, buffer, 4096ULL * 2ULL); |
877 | 0 | if (!extrapolate) |
878 | 0 | { |
879 | 0 | rfx_differential_decode(buffer + 4032, 64); |
880 | 0 | if (!progressive_rfx_decode_block(prims, &buffer[0], 1024, shift->HL1)) /* HL1 */ |
881 | 0 | return -1; |
882 | 0 | if (!progressive_rfx_decode_block(prims, &buffer[1024], 1024, shift->LH1)) /* LH1 */ |
883 | 0 | return -1; |
884 | 0 | if (!progressive_rfx_decode_block(prims, &buffer[2048], 1024, shift->HH1)) /* HH1 */ |
885 | 0 | return -1; |
886 | 0 | if (!progressive_rfx_decode_block(prims, &buffer[3072], 256, shift->HL2)) /* HL2 */ |
887 | 0 | return -1; |
888 | 0 | if (!progressive_rfx_decode_block(prims, &buffer[3328], 256, shift->LH2)) /* LH2 */ |
889 | 0 | return -1; |
890 | 0 | if (!progressive_rfx_decode_block(prims, &buffer[3584], 256, shift->HH2)) /* HH2 */ |
891 | 0 | return -1; |
892 | 0 | if (!progressive_rfx_decode_block(prims, &buffer[3840], 64, shift->HL3)) /* HL3 */ |
893 | 0 | return -1; |
894 | 0 | if (!progressive_rfx_decode_block(prims, &buffer[3904], 64, shift->LH3)) /* LH3 */ |
895 | 0 | return -1; |
896 | 0 | if (!progressive_rfx_decode_block(prims, &buffer[3968], 64, shift->HH3)) /* HH3 */ |
897 | 0 | return -1; |
898 | 0 | if (!progressive_rfx_decode_block(prims, &buffer[4032], 64, shift->LL3)) /* LL3 */ |
899 | 0 | return -1; |
900 | 0 | } |
901 | 0 | else |
902 | 0 | { |
903 | 0 | if (!progressive_rfx_decode_block(prims, &buffer[0], 1023, shift->HL1)) /* HL1 */ |
904 | 0 | return -1; |
905 | 0 | if (!progressive_rfx_decode_block(prims, &buffer[1023], 1023, shift->LH1)) /* LH1 */ |
906 | 0 | return -1; |
907 | 0 | if (!progressive_rfx_decode_block(prims, &buffer[2046], 961, shift->HH1)) /* HH1 */ |
908 | 0 | return -1; |
909 | 0 | if (!progressive_rfx_decode_block(prims, &buffer[3007], 272, shift->HL2)) /* HL2 */ |
910 | 0 | return -1; |
911 | 0 | if (!progressive_rfx_decode_block(prims, &buffer[3279], 272, shift->LH2)) /* LH2 */ |
912 | 0 | return -1; |
913 | 0 | if (!progressive_rfx_decode_block(prims, &buffer[3551], 256, shift->HH2)) /* HH2 */ |
914 | 0 | return -1; |
915 | 0 | if (!progressive_rfx_decode_block(prims, &buffer[3807], 72, shift->HL3)) /* HL3 */ |
916 | 0 | return -1; |
917 | 0 | if (!progressive_rfx_decode_block(prims, &buffer[3879], 72, shift->LH3)) /* LH3 */ |
918 | 0 | return -1; |
919 | 0 | if (!progressive_rfx_decode_block(prims, &buffer[3951], 64, shift->HH3)) /* HH3 */ |
920 | 0 | return -1; |
921 | 0 | rfx_differential_decode(&buffer[4015], 81); /* LL3 */ |
922 | 0 | if (!progressive_rfx_decode_block(prims, &buffer[4015], 81, shift->LL3)) /* LL3 */ |
923 | 0 | return -1; |
924 | 0 | } |
925 | 0 | return progressive_rfx_dwt_2d_decode(progressive, buffer, current, coeffDiff, extrapolate, |
926 | 0 | FALSE); |
927 | 0 | } |
928 | | |
929 | | static inline int |
930 | | progressive_decompress_tile_first(PROGRESSIVE_CONTEXT* WINPR_RESTRICT progressive, |
931 | | RFX_PROGRESSIVE_TILE* WINPR_RESTRICT tile, |
932 | | PROGRESSIVE_BLOCK_REGION* WINPR_RESTRICT region, |
933 | | const PROGRESSIVE_BLOCK_CONTEXT* WINPR_RESTRICT context) |
934 | 0 | { |
935 | 0 | int rc = 0; |
936 | 0 | BOOL diff = 0; |
937 | 0 | BOOL sub = 0; |
938 | 0 | BOOL extrapolate = 0; |
939 | 0 | BYTE* pBuffer = nullptr; |
940 | 0 | INT16* pSign[3]; |
941 | 0 | INT16* pSrcDst[3]; |
942 | 0 | INT16* pCurrent[3]; |
943 | 0 | RFX_COMPONENT_CODEC_QUANT shiftY = WINPR_C_ARRAY_INIT; |
944 | 0 | RFX_COMPONENT_CODEC_QUANT shiftCb = WINPR_C_ARRAY_INIT; |
945 | 0 | RFX_COMPONENT_CODEC_QUANT shiftCr = WINPR_C_ARRAY_INIT; |
946 | 0 | RFX_COMPONENT_CODEC_QUANT* quantY = nullptr; |
947 | 0 | RFX_COMPONENT_CODEC_QUANT* quantCb = nullptr; |
948 | 0 | RFX_COMPONENT_CODEC_QUANT* quantCr = nullptr; |
949 | 0 | RFX_COMPONENT_CODEC_QUANT* quantProgY = nullptr; |
950 | 0 | RFX_COMPONENT_CODEC_QUANT* quantProgCb = nullptr; |
951 | 0 | RFX_COMPONENT_CODEC_QUANT* quantProgCr = nullptr; |
952 | 0 | RFX_PROGRESSIVE_CODEC_QUANT* quantProgVal = nullptr; |
953 | 0 | static const prim_size_t roi_64x64 = { 64, 64 }; |
954 | 0 | const primitives_t* prims = primitives_get(); |
955 | |
|
956 | 0 | tile->pass = 1; |
957 | 0 | diff = tile->flags & RFX_TILE_DIFFERENCE; |
958 | 0 | sub = context->flags & RFX_SUBBAND_DIFFING; |
959 | 0 | extrapolate = region->flags & RFX_DWT_REDUCE_EXTRAPOLATE; |
960 | |
|
961 | | #if defined(WITH_DEBUG_CODECS) |
962 | | WLog_Print(progressive->log, WLOG_DEBUG, |
963 | | "ProgressiveTile%s: quantIdx Y: %" PRIu8 " Cb: %" PRIu8 " Cr: %" PRIu8 |
964 | | " xIdx: %" PRIu16 " yIdx: %" PRIu16 " flags: 0x%02" PRIX8 " quality: %" PRIu8 |
965 | | " yLen: %" PRIu16 " cbLen: %" PRIu16 " crLen: %" PRIu16 " tailLen: %" PRIu16 "", |
966 | | (tile->blockType == PROGRESSIVE_WBT_TILE_FIRST) ? "First" : "Simple", |
967 | | tile->quantIdxY, tile->quantIdxCb, tile->quantIdxCr, tile->xIdx, tile->yIdx, |
968 | | tile->flags, tile->quality, tile->yLen, tile->cbLen, tile->crLen, tile->tailLen); |
969 | | #endif |
970 | |
|
971 | 0 | if (tile->quantIdxY >= region->numQuant) |
972 | 0 | { |
973 | 0 | WLog_ERR(TAG, "quantIdxY %" PRIu8 " > numQuant %" PRIu8, tile->quantIdxY, region->numQuant); |
974 | 0 | return -1; |
975 | 0 | } |
976 | | |
977 | 0 | quantY = &(region->quantVals[tile->quantIdxY]); |
978 | |
|
979 | 0 | if (tile->quantIdxCb >= region->numQuant) |
980 | 0 | { |
981 | 0 | WLog_ERR(TAG, "quantIdxCb %" PRIu8 " > numQuant %" PRIu8, tile->quantIdxCb, |
982 | 0 | region->numQuant); |
983 | 0 | return -1; |
984 | 0 | } |
985 | | |
986 | 0 | quantCb = &(region->quantVals[tile->quantIdxCb]); |
987 | |
|
988 | 0 | if (tile->quantIdxCr >= region->numQuant) |
989 | 0 | { |
990 | 0 | WLog_ERR(TAG, "quantIdxCr %" PRIu8 " > numQuant %" PRIu8, tile->quantIdxCr, |
991 | 0 | region->numQuant); |
992 | 0 | return -1; |
993 | 0 | } |
994 | | |
995 | 0 | quantCr = &(region->quantVals[tile->quantIdxCr]); |
996 | |
|
997 | 0 | if (tile->quality == 0xFF) |
998 | 0 | { |
999 | 0 | quantProgVal = &(progressive->quantProgValFull); |
1000 | 0 | } |
1001 | 0 | else |
1002 | 0 | { |
1003 | 0 | if (tile->quality >= region->numProgQuant) |
1004 | 0 | { |
1005 | 0 | WLog_ERR(TAG, "quality %" PRIu8 " > numProgQuant %" PRIu8, tile->quality, |
1006 | 0 | region->numProgQuant); |
1007 | 0 | return -1; |
1008 | 0 | } |
1009 | | |
1010 | 0 | quantProgVal = &(region->quantProgVals[tile->quality]); |
1011 | 0 | } |
1012 | | |
1013 | 0 | quantProgY = &(quantProgVal->yQuantValues); |
1014 | 0 | quantProgCb = &(quantProgVal->cbQuantValues); |
1015 | 0 | quantProgCr = &(quantProgVal->crQuantValues); |
1016 | |
|
1017 | 0 | tile->yQuant = *quantY; |
1018 | 0 | tile->cbQuant = *quantCb; |
1019 | 0 | tile->crQuant = *quantCr; |
1020 | 0 | tile->yProgQuant = *quantProgY; |
1021 | 0 | tile->cbProgQuant = *quantProgCb; |
1022 | 0 | tile->crProgQuant = *quantProgCr; |
1023 | |
|
1024 | 0 | progressive_rfx_quant_add(quantY, quantProgY, &(tile->yBitPos)); |
1025 | 0 | progressive_rfx_quant_add(quantCb, quantProgCb, &(tile->cbBitPos)); |
1026 | 0 | progressive_rfx_quant_add(quantCr, quantProgCr, &(tile->crBitPos)); |
1027 | 0 | progressive_rfx_quant_add(quantY, quantProgY, &shiftY); |
1028 | 0 | if (!progressive_rfx_quant_lsub(&shiftY, 1)) /* -6 + 5 = -1 */ |
1029 | 0 | goto fail; |
1030 | 0 | progressive_rfx_quant_add(quantCb, quantProgCb, &shiftCb); |
1031 | 0 | if (!progressive_rfx_quant_lsub(&shiftCb, 1)) /* -6 + 5 = -1 */ |
1032 | 0 | goto fail; |
1033 | 0 | progressive_rfx_quant_add(quantCr, quantProgCr, &shiftCr); |
1034 | 0 | if (!progressive_rfx_quant_lsub(&shiftCr, 1)) /* -6 + 5 = -1 */ |
1035 | 0 | goto fail; |
1036 | | |
1037 | 0 | pSign[0] = (INT16*)((&tile->sign[((8192 + 32) * 0) + 16])); /* Y/R buffer */ |
1038 | 0 | pSign[1] = (INT16*)((&tile->sign[((8192 + 32) * 1) + 16])); /* Cb/G buffer */ |
1039 | 0 | pSign[2] = (INT16*)((&tile->sign[((8192 + 32) * 2) + 16])); /* Cr/B buffer */ |
1040 | |
|
1041 | 0 | pCurrent[0] = (INT16*)((&tile->current[((8192 + 32) * 0) + 16])); /* Y/R buffer */ |
1042 | 0 | pCurrent[1] = (INT16*)((&tile->current[((8192 + 32) * 1) + 16])); /* Cb/G buffer */ |
1043 | 0 | pCurrent[2] = (INT16*)((&tile->current[((8192 + 32) * 2) + 16])); /* Cr/B buffer */ |
1044 | |
|
1045 | 0 | pBuffer = (BYTE*)BufferPool_Take(progressive->bufferPool, -1); |
1046 | 0 | pSrcDst[0] = (INT16*)((&pBuffer[((8192 + 32) * 0) + 16])); /* Y/R buffer */ |
1047 | 0 | pSrcDst[1] = (INT16*)((&pBuffer[((8192 + 32) * 1) + 16])); /* Cb/G buffer */ |
1048 | 0 | pSrcDst[2] = (INT16*)((&pBuffer[((8192 + 32) * 2) + 16])); /* Cr/B buffer */ |
1049 | |
|
1050 | 0 | rc = progressive_rfx_decode_component(progressive, &shiftY, tile->yData, tile->yLen, pSrcDst[0], |
1051 | 0 | pCurrent[0], pSign[0], diff, sub, extrapolate); /* Y */ |
1052 | 0 | if (rc < 0) |
1053 | 0 | goto fail; |
1054 | 0 | rc = progressive_rfx_decode_component(progressive, &shiftCb, tile->cbData, tile->cbLen, |
1055 | 0 | pSrcDst[1], pCurrent[1], pSign[1], diff, sub, |
1056 | 0 | extrapolate); /* Cb */ |
1057 | 0 | if (rc < 0) |
1058 | 0 | goto fail; |
1059 | 0 | rc = progressive_rfx_decode_component(progressive, &shiftCr, tile->crData, tile->crLen, |
1060 | 0 | pSrcDst[2], pCurrent[2], pSign[2], diff, sub, |
1061 | 0 | extrapolate); /* Cr */ |
1062 | 0 | if (rc < 0) |
1063 | 0 | goto fail; |
1064 | | |
1065 | 0 | { |
1066 | 0 | const INT16** ptr = WINPR_REINTERPRET_CAST(pSrcDst, INT16**, const INT16**); |
1067 | 0 | rc = prims->yCbCrToRGB_16s8u_P3AC4R(ptr, 64 * 2, tile->data, tile->stride, |
1068 | 0 | progressive->format, &roi_64x64); |
1069 | 0 | } |
1070 | 0 | fail: |
1071 | 0 | BufferPool_Return(progressive->bufferPool, pBuffer); |
1072 | 0 | return rc; |
1073 | 0 | } |
1074 | | |
1075 | | static inline INT16 progressive_rfx_srl_read(RFX_PROGRESSIVE_UPGRADE_STATE* WINPR_RESTRICT state, |
1076 | | UINT32 numBits) |
1077 | 0 | { |
1078 | 0 | WINPR_ASSERT(state); |
1079 | |
|
1080 | 0 | wBitStream* bs = state->srl; |
1081 | 0 | WINPR_ASSERT(bs); |
1082 | |
|
1083 | 0 | if (state->nz) |
1084 | 0 | { |
1085 | 0 | state->nz--; |
1086 | 0 | return 0; |
1087 | 0 | } |
1088 | | |
1089 | 0 | const UINT32 k = state->kp / 8; |
1090 | |
|
1091 | 0 | if (!state->mode) |
1092 | 0 | { |
1093 | | /* zero encoding */ |
1094 | 0 | const UINT32 bit = (bs->accumulator & 0x80000000) ? 1 : 0; |
1095 | 0 | BitStream_Shift(bs, 1); |
1096 | |
|
1097 | 0 | if (!bit) |
1098 | 0 | { |
1099 | | /* '0' bit, nz >= (1 << k), nz = (1 << k) */ |
1100 | 0 | state->nz = (1 << k); |
1101 | 0 | state->kp += 4; |
1102 | |
|
1103 | 0 | if (state->kp > 80) |
1104 | 0 | state->kp = 80; |
1105 | |
|
1106 | 0 | state->nz--; |
1107 | 0 | return 0; |
1108 | 0 | } |
1109 | 0 | else |
1110 | 0 | { |
1111 | | /* '1' bit, nz < (1 << k), nz = next k bits */ |
1112 | 0 | state->nz = 0; |
1113 | 0 | state->mode = 1; /* unary encoding is next */ |
1114 | |
|
1115 | 0 | if (k) |
1116 | 0 | { |
1117 | 0 | bs->mask = ((1u << k) - 1); |
1118 | 0 | state->nz = |
1119 | 0 | WINPR_ASSERTING_INT_CAST(int16_t, ((bs->accumulator >> (32u - k)) & bs->mask)); |
1120 | 0 | BitStream_Shift(bs, k); |
1121 | 0 | } |
1122 | |
|
1123 | 0 | if (state->nz) |
1124 | 0 | { |
1125 | 0 | state->nz--; |
1126 | 0 | return 0; |
1127 | 0 | } |
1128 | 0 | } |
1129 | 0 | } |
1130 | | |
1131 | 0 | state->mode = 0; /* zero encoding is next */ |
1132 | | /* unary encoding */ |
1133 | | /* read sign bit */ |
1134 | 0 | const UINT32 sign = (bs->accumulator & 0x80000000) ? 1 : 0; |
1135 | 0 | BitStream_Shift(bs, 1); |
1136 | |
|
1137 | 0 | if (state->kp < 6) |
1138 | 0 | state->kp = 0; |
1139 | 0 | else |
1140 | 0 | state->kp -= 6; |
1141 | |
|
1142 | 0 | if (numBits == 1) |
1143 | 0 | return sign ? -1 : 1; |
1144 | | |
1145 | 0 | UINT32 mag = 1; |
1146 | 0 | const UINT32 max = (1u << numBits) - 1; |
1147 | |
|
1148 | 0 | while (mag < max) |
1149 | 0 | { |
1150 | 0 | const UINT32 bit = (bs->accumulator & 0x80000000) ? 1 : 0; |
1151 | 0 | BitStream_Shift(bs, 1); |
1152 | |
|
1153 | 0 | if (bit) |
1154 | 0 | break; |
1155 | | |
1156 | 0 | mag++; |
1157 | 0 | } |
1158 | |
|
1159 | 0 | if (mag > INT16_MAX) |
1160 | 0 | mag = INT16_MAX; |
1161 | 0 | return (INT16)(sign ? -1 * (int)mag : (INT16)mag); |
1162 | 0 | } |
1163 | | |
1164 | | static inline int |
1165 | | progressive_rfx_upgrade_state_finish(RFX_PROGRESSIVE_UPGRADE_STATE* WINPR_RESTRICT state) |
1166 | 0 | { |
1167 | 0 | UINT32 pad = 0; |
1168 | 0 | wBitStream* srl = nullptr; |
1169 | 0 | wBitStream* raw = nullptr; |
1170 | 0 | if (!state) |
1171 | 0 | return -1; |
1172 | | |
1173 | 0 | srl = state->srl; |
1174 | 0 | raw = state->raw; |
1175 | | /* Read trailing bits from RAW/SRL bit streams */ |
1176 | 0 | pad = (raw->position % 8) ? (8 - (raw->position % 8)) : 0; |
1177 | |
|
1178 | 0 | if (pad) |
1179 | 0 | BitStream_Shift(raw, pad); |
1180 | |
|
1181 | 0 | pad = (srl->position % 8) ? (8 - (srl->position % 8)) : 0; |
1182 | |
|
1183 | 0 | if (pad) |
1184 | 0 | BitStream_Shift(srl, pad); |
1185 | |
|
1186 | 0 | if (BitStream_GetRemainingLength(srl) == 8) |
1187 | 0 | BitStream_Shift(srl, 8); |
1188 | |
|
1189 | 0 | return 1; |
1190 | 0 | } |
1191 | | |
1192 | | static inline int16_t rawShift(wBitStream* raw, UINT32 numBits) |
1193 | 0 | { |
1194 | 0 | WINPR_ASSERT(raw); |
1195 | 0 | WINPR_ASSERT(numBits > 0); |
1196 | |
|
1197 | 0 | raw->mask = ((1u << numBits) - 1); |
1198 | 0 | const int16_t input = (int16_t)((raw->accumulator >> (32 - numBits)) & raw->mask); |
1199 | 0 | BitStream_Shift(raw, numBits); |
1200 | 0 | return input; |
1201 | 0 | } |
1202 | | |
1203 | | static inline int progressive_rfx_upgrade_block(RFX_PROGRESSIVE_UPGRADE_STATE* WINPR_RESTRICT state, |
1204 | | INT16* WINPR_RESTRICT buffer, |
1205 | | INT16* WINPR_RESTRICT sign, UINT32 length, |
1206 | | UINT32 shift, WINPR_ATTR_UNUSED UINT32 bitPos, |
1207 | | UINT32 numBits) |
1208 | 0 | { |
1209 | 0 | if (numBits < 1) |
1210 | 0 | return 1; |
1211 | | |
1212 | 0 | wBitStream* raw = state->raw; |
1213 | 0 | int32_t input = 0; |
1214 | |
|
1215 | 0 | if (!state->nonLL) |
1216 | 0 | { |
1217 | 0 | for (UINT32 index = 0; index < length; index++) |
1218 | 0 | { |
1219 | 0 | input = rawShift(raw, numBits); |
1220 | |
|
1221 | 0 | const int32_t shifted = input << shift; |
1222 | 0 | const int32_t val = buffer[index] + shifted; |
1223 | 0 | const int16_t ival = WINPR_ASSERTING_INT_CAST(int16_t, val); |
1224 | 0 | buffer[index] = ival; |
1225 | 0 | } |
1226 | |
|
1227 | 0 | return 1; |
1228 | 0 | } |
1229 | | |
1230 | 0 | for (UINT32 index = 0; index < length; index++) |
1231 | 0 | { |
1232 | 0 | if (sign[index] > 0) |
1233 | 0 | { |
1234 | | /* sign > 0, read from raw */ |
1235 | 0 | input = rawShift(raw, numBits); |
1236 | 0 | } |
1237 | 0 | else if (sign[index] < 0) |
1238 | 0 | { |
1239 | | /* sign < 0, read from raw */ |
1240 | 0 | input = rawShift(raw, numBits); |
1241 | 0 | input *= -1; |
1242 | 0 | } |
1243 | 0 | else |
1244 | 0 | { |
1245 | | /* sign == 0, read from srl */ |
1246 | 0 | input = progressive_rfx_srl_read(state, numBits); |
1247 | 0 | sign[index] = WINPR_ASSERTING_INT_CAST(int16_t, input); |
1248 | 0 | } |
1249 | |
|
1250 | 0 | const int32_t val = input << shift; |
1251 | 0 | const int32_t ival = buffer[index] + val; |
1252 | 0 | buffer[index] = WINPR_ASSERTING_INT_CAST(INT16, ival); |
1253 | 0 | } |
1254 | |
|
1255 | 0 | return 1; |
1256 | 0 | } |
1257 | | |
1258 | | static inline int progressive_rfx_upgrade_component( |
1259 | | PROGRESSIVE_CONTEXT* WINPR_RESTRICT progressive, |
1260 | | const RFX_COMPONENT_CODEC_QUANT* WINPR_RESTRICT shift, |
1261 | | const RFX_COMPONENT_CODEC_QUANT* WINPR_RESTRICT bitPos, |
1262 | | const RFX_COMPONENT_CODEC_QUANT* WINPR_RESTRICT numBits, INT16* WINPR_RESTRICT buffer, |
1263 | | INT16* WINPR_RESTRICT current, INT16* WINPR_RESTRICT sign, const BYTE* WINPR_RESTRICT srlData, |
1264 | | UINT32 srlLen, const BYTE* WINPR_RESTRICT rawData, UINT32 rawLen, BOOL coeffDiff, |
1265 | | WINPR_ATTR_UNUSED BOOL subbandDiff, BOOL extrapolate) |
1266 | 0 | { |
1267 | 0 | int rc = 0; |
1268 | 0 | UINT32 aRawLen = 0; |
1269 | 0 | UINT32 aSrlLen = 0; |
1270 | 0 | wBitStream s_srl = WINPR_C_ARRAY_INIT; |
1271 | 0 | wBitStream s_raw = WINPR_C_ARRAY_INIT; |
1272 | 0 | RFX_PROGRESSIVE_UPGRADE_STATE state = WINPR_C_ARRAY_INIT; |
1273 | |
|
1274 | 0 | state.kp = 8; |
1275 | 0 | state.mode = 0; |
1276 | 0 | state.srl = &s_srl; |
1277 | 0 | state.raw = &s_raw; |
1278 | 0 | BitStream_Attach(state.srl, srlData, srlLen); |
1279 | 0 | BitStream_Fetch(state.srl); |
1280 | 0 | BitStream_Attach(state.raw, rawData, rawLen); |
1281 | 0 | BitStream_Fetch(state.raw); |
1282 | |
|
1283 | 0 | state.nonLL = TRUE; |
1284 | 0 | rc = progressive_rfx_upgrade_block(&state, ¤t[0], &sign[0], 1023, shift->HL1, bitPos->HL1, |
1285 | 0 | numBits->HL1); /* HL1 */ |
1286 | 0 | if (rc < 0) |
1287 | 0 | return rc; |
1288 | 0 | rc = progressive_rfx_upgrade_block(&state, ¤t[1023], &sign[1023], 1023, shift->LH1, |
1289 | 0 | bitPos->LH1, numBits->LH1); /* LH1 */ |
1290 | 0 | if (rc < 0) |
1291 | 0 | return rc; |
1292 | 0 | rc = progressive_rfx_upgrade_block(&state, ¤t[2046], &sign[2046], 961, shift->HH1, |
1293 | 0 | bitPos->HH1, numBits->HH1); /* HH1 */ |
1294 | 0 | if (rc < 0) |
1295 | 0 | return rc; |
1296 | 0 | rc = progressive_rfx_upgrade_block(&state, ¤t[3007], &sign[3007], 272, shift->HL2, |
1297 | 0 | bitPos->HL2, numBits->HL2); /* HL2 */ |
1298 | 0 | if (rc < 0) |
1299 | 0 | return rc; |
1300 | 0 | rc = progressive_rfx_upgrade_block(&state, ¤t[3279], &sign[3279], 272, shift->LH2, |
1301 | 0 | bitPos->LH2, numBits->LH2); /* LH2 */ |
1302 | 0 | if (rc < 0) |
1303 | 0 | return rc; |
1304 | 0 | rc = progressive_rfx_upgrade_block(&state, ¤t[3551], &sign[3551], 256, shift->HH2, |
1305 | 0 | bitPos->HH2, numBits->HH2); /* HH2 */ |
1306 | 0 | if (rc < 0) |
1307 | 0 | return rc; |
1308 | 0 | rc = progressive_rfx_upgrade_block(&state, ¤t[3807], &sign[3807], 72, shift->HL3, |
1309 | 0 | bitPos->HL3, numBits->HL3); /* HL3 */ |
1310 | 0 | if (rc < 0) |
1311 | 0 | return rc; |
1312 | 0 | rc = progressive_rfx_upgrade_block(&state, ¤t[3879], &sign[3879], 72, shift->LH3, |
1313 | 0 | bitPos->LH3, numBits->LH3); /* LH3 */ |
1314 | 0 | if (rc < 0) |
1315 | 0 | return rc; |
1316 | 0 | rc = progressive_rfx_upgrade_block(&state, ¤t[3951], &sign[3951], 64, shift->HH3, |
1317 | 0 | bitPos->HH3, numBits->HH3); /* HH3 */ |
1318 | 0 | if (rc < 0) |
1319 | 0 | return rc; |
1320 | | |
1321 | 0 | state.nonLL = FALSE; |
1322 | 0 | rc = progressive_rfx_upgrade_block(&state, ¤t[4015], &sign[4015], 81, shift->LL3, |
1323 | 0 | bitPos->LL3, numBits->LL3); /* LL3 */ |
1324 | 0 | if (rc < 0) |
1325 | 0 | return rc; |
1326 | 0 | rc = progressive_rfx_upgrade_state_finish(&state); |
1327 | 0 | if (rc < 0) |
1328 | 0 | return rc; |
1329 | 0 | aRawLen = (state.raw->position + 7) / 8; |
1330 | 0 | aSrlLen = (state.srl->position + 7) / 8; |
1331 | |
|
1332 | 0 | if ((aRawLen != rawLen) || (aSrlLen != srlLen)) |
1333 | 0 | { |
1334 | 0 | int pRawLen = 0; |
1335 | 0 | int pSrlLen = 0; |
1336 | |
|
1337 | 0 | if (rawLen) |
1338 | 0 | pRawLen = (int)((((float)aRawLen) / ((float)rawLen)) * 100.0f); |
1339 | |
|
1340 | 0 | if (srlLen) |
1341 | 0 | pSrlLen = (int)((((float)aSrlLen) / ((float)srlLen)) * 100.0f); |
1342 | |
|
1343 | 0 | WLog_Print(progressive->log, WLOG_WARN, |
1344 | 0 | "RAW: %" PRIu32 "/%" PRIu32 " %d%% (%" PRIu32 "/%" PRIu32 ":%" PRIu32 |
1345 | 0 | ")\tSRL: %" PRIu32 "/%" PRIu32 " %d%% (%" PRIu32 "/%" PRIu32 ":%" PRIu32 ")", |
1346 | 0 | aRawLen, rawLen, pRawLen, state.raw->position, rawLen * 8, |
1347 | 0 | (rawLen * 8) - state.raw->position, aSrlLen, srlLen, pSrlLen, |
1348 | 0 | state.srl->position, srlLen * 8, (srlLen * 8) - state.srl->position); |
1349 | 0 | return -1; |
1350 | 0 | } |
1351 | | |
1352 | 0 | return progressive_rfx_dwt_2d_decode(progressive, buffer, current, coeffDiff, extrapolate, |
1353 | 0 | TRUE); |
1354 | 0 | } |
1355 | | |
1356 | | static inline int |
1357 | | progressive_decompress_tile_upgrade(PROGRESSIVE_CONTEXT* WINPR_RESTRICT progressive, |
1358 | | RFX_PROGRESSIVE_TILE* WINPR_RESTRICT tile, |
1359 | | PROGRESSIVE_BLOCK_REGION* WINPR_RESTRICT region, |
1360 | | const PROGRESSIVE_BLOCK_CONTEXT* WINPR_RESTRICT context) |
1361 | 0 | { |
1362 | 0 | int status = 0; |
1363 | 0 | BOOL coeffDiff = 0; |
1364 | 0 | BOOL sub = 0; |
1365 | 0 | BOOL extrapolate = 0; |
1366 | 0 | BYTE* pBuffer = nullptr; |
1367 | 0 | INT16* pSign[3] = WINPR_C_ARRAY_INIT; |
1368 | 0 | INT16* pSrcDst[3] = WINPR_C_ARRAY_INIT; |
1369 | 0 | INT16* pCurrent[3] = WINPR_C_ARRAY_INIT; |
1370 | 0 | RFX_COMPONENT_CODEC_QUANT shiftY = WINPR_C_ARRAY_INIT; |
1371 | 0 | RFX_COMPONENT_CODEC_QUANT shiftCb = WINPR_C_ARRAY_INIT; |
1372 | 0 | RFX_COMPONENT_CODEC_QUANT shiftCr = WINPR_C_ARRAY_INIT; |
1373 | 0 | RFX_COMPONENT_CODEC_QUANT yBitPos = WINPR_C_ARRAY_INIT; |
1374 | 0 | RFX_COMPONENT_CODEC_QUANT cbBitPos = WINPR_C_ARRAY_INIT; |
1375 | 0 | RFX_COMPONENT_CODEC_QUANT crBitPos = WINPR_C_ARRAY_INIT; |
1376 | 0 | RFX_COMPONENT_CODEC_QUANT yNumBits = WINPR_C_ARRAY_INIT; |
1377 | 0 | RFX_COMPONENT_CODEC_QUANT cbNumBits = WINPR_C_ARRAY_INIT; |
1378 | 0 | RFX_COMPONENT_CODEC_QUANT crNumBits = WINPR_C_ARRAY_INIT; |
1379 | 0 | RFX_COMPONENT_CODEC_QUANT* quantY = nullptr; |
1380 | 0 | RFX_COMPONENT_CODEC_QUANT* quantCb = nullptr; |
1381 | 0 | RFX_COMPONENT_CODEC_QUANT* quantCr = nullptr; |
1382 | 0 | RFX_COMPONENT_CODEC_QUANT* quantProgY = nullptr; |
1383 | 0 | RFX_COMPONENT_CODEC_QUANT* quantProgCb = nullptr; |
1384 | 0 | RFX_COMPONENT_CODEC_QUANT* quantProgCr = nullptr; |
1385 | 0 | RFX_PROGRESSIVE_CODEC_QUANT* quantProg = nullptr; |
1386 | 0 | static const prim_size_t roi_64x64 = { 64, 64 }; |
1387 | 0 | const primitives_t* prims = primitives_get(); |
1388 | |
|
1389 | 0 | coeffDiff = tile->flags & RFX_TILE_DIFFERENCE; |
1390 | 0 | sub = context->flags & RFX_SUBBAND_DIFFING; |
1391 | 0 | extrapolate = region->flags & RFX_DWT_REDUCE_EXTRAPOLATE; |
1392 | |
|
1393 | 0 | tile->pass++; |
1394 | |
|
1395 | | #if defined(WITH_DEBUG_CODECS) |
1396 | | WLog_Print(progressive->log, WLOG_DEBUG, |
1397 | | "ProgressiveTileUpgrade: pass: %" PRIu16 " quantIdx Y: %" PRIu8 " Cb: %" PRIu8 |
1398 | | " Cr: %" PRIu8 " xIdx: %" PRIu16 " yIdx: %" PRIu16 " quality: %" PRIu8 |
1399 | | " ySrlLen: %" PRIu16 " yRawLen: %" PRIu16 " cbSrlLen: %" PRIu16 " cbRawLen: %" PRIu16 |
1400 | | " crSrlLen: %" PRIu16 " crRawLen: %" PRIu16 "", |
1401 | | tile->pass, tile->quantIdxY, tile->quantIdxCb, tile->quantIdxCr, tile->xIdx, |
1402 | | tile->yIdx, tile->quality, tile->ySrlLen, tile->yRawLen, tile->cbSrlLen, |
1403 | | tile->cbRawLen, tile->crSrlLen, tile->crRawLen); |
1404 | | #endif |
1405 | |
|
1406 | 0 | if (tile->quantIdxY >= region->numQuant) |
1407 | 0 | { |
1408 | 0 | WLog_ERR(TAG, "quantIdxY %" PRIu8 " > numQuant %" PRIu8, tile->quantIdxY, region->numQuant); |
1409 | 0 | return -1; |
1410 | 0 | } |
1411 | | |
1412 | 0 | quantY = &(region->quantVals[tile->quantIdxY]); |
1413 | |
|
1414 | 0 | if (tile->quantIdxCb >= region->numQuant) |
1415 | 0 | { |
1416 | 0 | WLog_ERR(TAG, "quantIdxCb %" PRIu8 " > numQuant %" PRIu8, tile->quantIdxCb, |
1417 | 0 | region->numQuant); |
1418 | 0 | return -1; |
1419 | 0 | } |
1420 | | |
1421 | 0 | quantCb = &(region->quantVals[tile->quantIdxCb]); |
1422 | |
|
1423 | 0 | if (tile->quantIdxCr >= region->numQuant) |
1424 | 0 | { |
1425 | 0 | WLog_ERR(TAG, "quantIdxCr %" PRIu8 " > numQuant %" PRIu8, tile->quantIdxCr, |
1426 | 0 | region->numQuant); |
1427 | 0 | return -1; |
1428 | 0 | } |
1429 | | |
1430 | 0 | quantCr = &(region->quantVals[tile->quantIdxCr]); |
1431 | |
|
1432 | 0 | if (tile->quality == 0xFF) |
1433 | 0 | { |
1434 | 0 | quantProg = &(progressive->quantProgValFull); |
1435 | 0 | } |
1436 | 0 | else |
1437 | 0 | { |
1438 | 0 | if (tile->quality >= region->numProgQuant) |
1439 | 0 | { |
1440 | 0 | WLog_ERR(TAG, "quality %" PRIu8 " > numProgQuant %" PRIu8, tile->quality, |
1441 | 0 | region->numProgQuant); |
1442 | 0 | return -1; |
1443 | 0 | } |
1444 | | |
1445 | 0 | quantProg = &(region->quantProgVals[tile->quality]); |
1446 | 0 | } |
1447 | | |
1448 | 0 | quantProgY = &(quantProg->yQuantValues); |
1449 | 0 | quantProgCb = &(quantProg->cbQuantValues); |
1450 | 0 | quantProgCr = &(quantProg->crQuantValues); |
1451 | |
|
1452 | 0 | if (!progressive_rfx_quant_cmp_equal(quantY, &(tile->yQuant))) |
1453 | 0 | WLog_Print(progressive->log, WLOG_WARN, "non-progressive quantY has changed!"); |
1454 | |
|
1455 | 0 | if (!progressive_rfx_quant_cmp_equal(quantCb, &(tile->cbQuant))) |
1456 | 0 | WLog_Print(progressive->log, WLOG_WARN, "non-progressive quantCb has changed!"); |
1457 | |
|
1458 | 0 | if (!progressive_rfx_quant_cmp_equal(quantCr, &(tile->crQuant))) |
1459 | 0 | WLog_Print(progressive->log, WLOG_WARN, "non-progressive quantCr has changed!"); |
1460 | |
|
1461 | 0 | if (!(context->flags & RFX_SUBBAND_DIFFING)) |
1462 | 0 | WLog_WARN(TAG, "PROGRESSIVE_BLOCK_CONTEXT::flags & RFX_SUBBAND_DIFFING not set"); |
1463 | |
|
1464 | 0 | progressive_rfx_quant_add(quantY, quantProgY, &yBitPos); |
1465 | 0 | progressive_rfx_quant_add(quantCb, quantProgCb, &cbBitPos); |
1466 | 0 | progressive_rfx_quant_add(quantCr, quantProgCr, &crBitPos); |
1467 | 0 | if (!progressive_rfx_quant_sub(&(tile->yBitPos), &yBitPos, &yNumBits)) |
1468 | 0 | goto fail; |
1469 | 0 | if (!progressive_rfx_quant_sub(&(tile->cbBitPos), &cbBitPos, &cbNumBits)) |
1470 | 0 | goto fail; |
1471 | 0 | if (!progressive_rfx_quant_sub(&(tile->crBitPos), &crBitPos, &crNumBits)) |
1472 | 0 | goto fail; |
1473 | 0 | progressive_rfx_quant_add(quantY, quantProgY, &shiftY); |
1474 | 0 | if (!progressive_rfx_quant_lsub(&shiftY, 1)) /* -6 + 5 = -1 */ |
1475 | 0 | goto fail; |
1476 | 0 | progressive_rfx_quant_add(quantCb, quantProgCb, &shiftCb); |
1477 | 0 | if (!progressive_rfx_quant_lsub(&shiftCb, 1)) /* -6 + 5 = -1 */ |
1478 | 0 | goto fail; |
1479 | 0 | progressive_rfx_quant_add(quantCr, quantProgCr, &shiftCr); |
1480 | 0 | if (!progressive_rfx_quant_lsub(&shiftCr, 1)) /* -6 + 5 = -1 */ |
1481 | 0 | goto fail; |
1482 | | |
1483 | 0 | tile->yBitPos = yBitPos; |
1484 | 0 | tile->cbBitPos = cbBitPos; |
1485 | 0 | tile->crBitPos = crBitPos; |
1486 | 0 | tile->yQuant = *quantY; |
1487 | 0 | tile->cbQuant = *quantCb; |
1488 | 0 | tile->crQuant = *quantCr; |
1489 | 0 | tile->yProgQuant = *quantProgY; |
1490 | 0 | tile->cbProgQuant = *quantProgCb; |
1491 | 0 | tile->crProgQuant = *quantProgCr; |
1492 | |
|
1493 | 0 | pSign[0] = (INT16*)((&tile->sign[((8192 + 32) * 0) + 16])); /* Y/R buffer */ |
1494 | 0 | pSign[1] = (INT16*)((&tile->sign[((8192 + 32) * 1) + 16])); /* Cb/G buffer */ |
1495 | 0 | pSign[2] = (INT16*)((&tile->sign[((8192 + 32) * 2) + 16])); /* Cr/B buffer */ |
1496 | |
|
1497 | 0 | pCurrent[0] = (INT16*)((&tile->current[((8192 + 32) * 0) + 16])); /* Y/R buffer */ |
1498 | 0 | pCurrent[1] = (INT16*)((&tile->current[((8192 + 32) * 1) + 16])); /* Cb/G buffer */ |
1499 | 0 | pCurrent[2] = (INT16*)((&tile->current[((8192 + 32) * 2) + 16])); /* Cr/B buffer */ |
1500 | |
|
1501 | 0 | pBuffer = (BYTE*)BufferPool_Take(progressive->bufferPool, -1); |
1502 | 0 | pSrcDst[0] = (INT16*)((&pBuffer[((8192 + 32) * 0) + 16])); /* Y/R buffer */ |
1503 | 0 | pSrcDst[1] = (INT16*)((&pBuffer[((8192 + 32) * 1) + 16])); /* Cb/G buffer */ |
1504 | 0 | pSrcDst[2] = (INT16*)((&pBuffer[((8192 + 32) * 2) + 16])); /* Cr/B buffer */ |
1505 | |
|
1506 | 0 | status = progressive_rfx_upgrade_component(progressive, &shiftY, quantProgY, &yNumBits, |
1507 | 0 | pSrcDst[0], pCurrent[0], pSign[0], tile->ySrlData, |
1508 | 0 | tile->ySrlLen, tile->yRawData, tile->yRawLen, |
1509 | 0 | coeffDiff, sub, extrapolate); /* Y */ |
1510 | |
|
1511 | 0 | if (status < 0) |
1512 | 0 | goto fail; |
1513 | | |
1514 | 0 | status = progressive_rfx_upgrade_component(progressive, &shiftCb, quantProgCb, &cbNumBits, |
1515 | 0 | pSrcDst[1], pCurrent[1], pSign[1], tile->cbSrlData, |
1516 | 0 | tile->cbSrlLen, tile->cbRawData, tile->cbRawLen, |
1517 | 0 | coeffDiff, sub, extrapolate); /* Cb */ |
1518 | |
|
1519 | 0 | if (status < 0) |
1520 | 0 | goto fail; |
1521 | | |
1522 | 0 | status = progressive_rfx_upgrade_component(progressive, &shiftCr, quantProgCr, &crNumBits, |
1523 | 0 | pSrcDst[2], pCurrent[2], pSign[2], tile->crSrlData, |
1524 | 0 | tile->crSrlLen, tile->crRawData, tile->crRawLen, |
1525 | 0 | coeffDiff, sub, extrapolate); /* Cr */ |
1526 | |
|
1527 | 0 | if (status < 0) |
1528 | 0 | goto fail; |
1529 | | |
1530 | 0 | { |
1531 | 0 | const INT16** ptr = WINPR_REINTERPRET_CAST(pSrcDst, INT16**, const INT16**); |
1532 | 0 | status = prims->yCbCrToRGB_16s8u_P3AC4R(ptr, 64 * 2, tile->data, tile->stride, |
1533 | 0 | progressive->format, &roi_64x64); |
1534 | 0 | } |
1535 | 0 | fail: |
1536 | 0 | BufferPool_Return(progressive->bufferPool, pBuffer); |
1537 | 0 | return status; |
1538 | 0 | } |
1539 | | |
1540 | | static inline BOOL progressive_tile_read_upgrade( |
1541 | | PROGRESSIVE_CONTEXT* WINPR_RESTRICT progressive, wStream* WINPR_RESTRICT s, UINT16 blockType, |
1542 | | UINT32 blockLen, PROGRESSIVE_SURFACE_CONTEXT* WINPR_RESTRICT surface, |
1543 | | PROGRESSIVE_BLOCK_REGION* WINPR_RESTRICT region, |
1544 | | WINPR_ATTR_UNUSED const PROGRESSIVE_BLOCK_CONTEXT* WINPR_RESTRICT context) |
1545 | 72 | { |
1546 | 72 | RFX_PROGRESSIVE_TILE tile = WINPR_C_ARRAY_INIT; |
1547 | 72 | const size_t expect = 20; |
1548 | | |
1549 | 72 | if (!Stream_CheckAndLogRequiredLength(TAG, s, expect)) |
1550 | 1 | return FALSE; |
1551 | | |
1552 | 71 | tile.blockType = blockType; |
1553 | 71 | tile.blockLen = blockLen; |
1554 | 71 | tile.flags = 0; |
1555 | | |
1556 | 71 | Stream_Read_UINT8(s, tile.quantIdxY); |
1557 | 71 | Stream_Read_UINT8(s, tile.quantIdxCb); |
1558 | 71 | Stream_Read_UINT8(s, tile.quantIdxCr); |
1559 | 71 | Stream_Read_UINT16(s, tile.xIdx); |
1560 | 71 | Stream_Read_UINT16(s, tile.yIdx); |
1561 | 71 | Stream_Read_UINT8(s, tile.quality); |
1562 | 71 | Stream_Read_UINT16(s, tile.ySrlLen); |
1563 | 71 | Stream_Read_UINT16(s, tile.yRawLen); |
1564 | 71 | Stream_Read_UINT16(s, tile.cbSrlLen); |
1565 | 71 | Stream_Read_UINT16(s, tile.cbRawLen); |
1566 | 71 | Stream_Read_UINT16(s, tile.crSrlLen); |
1567 | 71 | Stream_Read_UINT16(s, tile.crRawLen); |
1568 | | |
1569 | 71 | tile.ySrlData = Stream_Pointer(s); |
1570 | 71 | if (!Stream_SafeSeek(s, tile.ySrlLen)) |
1571 | 6 | { |
1572 | 6 | WLog_Print(progressive->log, WLOG_ERROR, " Failed to seek %" PRIu32 " bytes", tile.ySrlLen); |
1573 | 6 | return FALSE; |
1574 | 6 | } |
1575 | | |
1576 | 65 | tile.yRawData = Stream_Pointer(s); |
1577 | 65 | if (!Stream_SafeSeek(s, tile.yRawLen)) |
1578 | 1 | { |
1579 | 1 | WLog_Print(progressive->log, WLOG_ERROR, " Failed to seek %" PRIu32 " bytes", tile.yRawLen); |
1580 | 1 | return FALSE; |
1581 | 1 | } |
1582 | | |
1583 | 64 | tile.cbSrlData = Stream_Pointer(s); |
1584 | 64 | if (!Stream_SafeSeek(s, tile.cbSrlLen)) |
1585 | 3 | { |
1586 | 3 | WLog_Print(progressive->log, WLOG_ERROR, " Failed to seek %" PRIu32 " bytes", |
1587 | 3 | tile.cbSrlLen); |
1588 | 3 | return FALSE; |
1589 | 3 | } |
1590 | | |
1591 | 61 | tile.cbRawData = Stream_Pointer(s); |
1592 | 61 | if (!Stream_SafeSeek(s, tile.cbRawLen)) |
1593 | 6 | { |
1594 | 6 | WLog_Print(progressive->log, WLOG_ERROR, " Failed to seek %" PRIu32 " bytes", |
1595 | 6 | tile.cbRawLen); |
1596 | 6 | return FALSE; |
1597 | 6 | } |
1598 | | |
1599 | 55 | tile.crSrlData = Stream_Pointer(s); |
1600 | 55 | if (!Stream_SafeSeek(s, tile.crSrlLen)) |
1601 | 2 | { |
1602 | 2 | WLog_Print(progressive->log, WLOG_ERROR, " Failed to seek %" PRIu32 " bytes", |
1603 | 2 | tile.crSrlLen); |
1604 | 2 | return FALSE; |
1605 | 2 | } |
1606 | | |
1607 | 53 | tile.crRawData = Stream_Pointer(s); |
1608 | 53 | if (!Stream_SafeSeek(s, tile.crRawLen)) |
1609 | 4 | { |
1610 | 4 | WLog_Print(progressive->log, WLOG_ERROR, " Failed to seek %" PRIu32 " bytes", |
1611 | 4 | tile.crRawLen); |
1612 | 4 | return FALSE; |
1613 | 4 | } |
1614 | | |
1615 | 49 | return progressive_surface_tile_replace(surface, region, &tile, TRUE); |
1616 | 53 | } |
1617 | | |
1618 | | static inline BOOL |
1619 | | progressive_tile_read(PROGRESSIVE_CONTEXT* WINPR_RESTRICT progressive, BOOL simple, |
1620 | | wStream* WINPR_RESTRICT s, UINT16 blockType, UINT32 blockLen, |
1621 | | PROGRESSIVE_SURFACE_CONTEXT* WINPR_RESTRICT surface, |
1622 | | PROGRESSIVE_BLOCK_REGION* WINPR_RESTRICT region, |
1623 | | WINPR_ATTR_UNUSED const PROGRESSIVE_BLOCK_CONTEXT* WINPR_RESTRICT context) |
1624 | 60 | { |
1625 | 60 | RFX_PROGRESSIVE_TILE tile = WINPR_C_ARRAY_INIT; |
1626 | 60 | size_t expect = simple ? 16 : 17; |
1627 | | |
1628 | 60 | if (!Stream_CheckAndLogRequiredLength(TAG, s, expect)) |
1629 | 2 | return FALSE; |
1630 | | |
1631 | 58 | tile.blockType = blockType; |
1632 | 58 | tile.blockLen = blockLen; |
1633 | | |
1634 | 58 | Stream_Read_UINT8(s, tile.quantIdxY); |
1635 | 58 | Stream_Read_UINT8(s, tile.quantIdxCb); |
1636 | 58 | Stream_Read_UINT8(s, tile.quantIdxCr); |
1637 | 58 | Stream_Read_UINT16(s, tile.xIdx); |
1638 | 58 | Stream_Read_UINT16(s, tile.yIdx); |
1639 | 58 | Stream_Read_UINT8(s, tile.flags); |
1640 | | |
1641 | 58 | if (!simple) |
1642 | 35 | Stream_Read_UINT8(s, tile.quality); |
1643 | 23 | else |
1644 | 23 | tile.quality = 0xFF; |
1645 | 58 | Stream_Read_UINT16(s, tile.yLen); |
1646 | 58 | Stream_Read_UINT16(s, tile.cbLen); |
1647 | 58 | Stream_Read_UINT16(s, tile.crLen); |
1648 | 58 | Stream_Read_UINT16(s, tile.tailLen); |
1649 | | |
1650 | 58 | tile.yData = Stream_Pointer(s); |
1651 | 58 | if (!Stream_SafeSeek(s, tile.yLen)) |
1652 | 5 | { |
1653 | 5 | WLog_Print(progressive->log, WLOG_ERROR, " Failed to seek %" PRIu32 " bytes", tile.yLen); |
1654 | 5 | return FALSE; |
1655 | 5 | } |
1656 | | |
1657 | 53 | tile.cbData = Stream_Pointer(s); |
1658 | 53 | if (!Stream_SafeSeek(s, tile.cbLen)) |
1659 | 6 | { |
1660 | 6 | WLog_Print(progressive->log, WLOG_ERROR, " Failed to seek %" PRIu32 " bytes", tile.cbLen); |
1661 | 6 | return FALSE; |
1662 | 6 | } |
1663 | | |
1664 | 47 | tile.crData = Stream_Pointer(s); |
1665 | 47 | if (!Stream_SafeSeek(s, tile.crLen)) |
1666 | 2 | { |
1667 | 2 | WLog_Print(progressive->log, WLOG_ERROR, " Failed to seek %" PRIu32 " bytes", tile.crLen); |
1668 | 2 | return FALSE; |
1669 | 2 | } |
1670 | | |
1671 | 45 | tile.tailData = Stream_Pointer(s); |
1672 | 45 | if (!Stream_SafeSeek(s, tile.tailLen)) |
1673 | 4 | { |
1674 | 4 | WLog_Print(progressive->log, WLOG_ERROR, " Failed to seek %" PRIu32 " bytes", tile.tailLen); |
1675 | 4 | return FALSE; |
1676 | 4 | } |
1677 | | |
1678 | 41 | return progressive_surface_tile_replace(surface, region, &tile, FALSE); |
1679 | 45 | } |
1680 | | |
1681 | | static void CALLBACK progressive_process_tiles_tile_work_callback(PTP_CALLBACK_INSTANCE instance, |
1682 | | void* context, PTP_WORK work) |
1683 | 0 | { |
1684 | 0 | PROGRESSIVE_TILE_PROCESS_WORK_PARAM* param = (PROGRESSIVE_TILE_PROCESS_WORK_PARAM*)context; |
1685 | |
|
1686 | 0 | WINPR_UNUSED(instance); |
1687 | 0 | WINPR_UNUSED(work); |
1688 | |
|
1689 | 0 | switch (param->tile->blockType) |
1690 | 0 | { |
1691 | 0 | case PROGRESSIVE_WBT_TILE_SIMPLE: |
1692 | 0 | case PROGRESSIVE_WBT_TILE_FIRST: |
1693 | 0 | progressive_decompress_tile_first(param->progressive, param->tile, param->region, |
1694 | 0 | param->context); |
1695 | 0 | break; |
1696 | | |
1697 | 0 | case PROGRESSIVE_WBT_TILE_UPGRADE: |
1698 | 0 | progressive_decompress_tile_upgrade(param->progressive, param->tile, param->region, |
1699 | 0 | param->context); |
1700 | 0 | break; |
1701 | 0 | default: |
1702 | 0 | WLog_Print(param->progressive->log, WLOG_ERROR, "Invalid block type %04" PRIx16 " (%s)", |
1703 | 0 | param->tile->blockType, |
1704 | 0 | rfx_get_progressive_block_type_string(param->tile->blockType)); |
1705 | 0 | break; |
1706 | 0 | } |
1707 | 0 | } |
1708 | | |
1709 | | static inline SSIZE_T |
1710 | | progressive_process_tiles(PROGRESSIVE_CONTEXT* WINPR_RESTRICT progressive, |
1711 | | wStream* WINPR_RESTRICT s, |
1712 | | PROGRESSIVE_BLOCK_REGION* WINPR_RESTRICT region, |
1713 | | PROGRESSIVE_SURFACE_CONTEXT* WINPR_RESTRICT surface, |
1714 | | const PROGRESSIVE_BLOCK_CONTEXT* WINPR_RESTRICT context) |
1715 | 607 | { |
1716 | 607 | int status = 0; |
1717 | 607 | size_t end = 0; |
1718 | 607 | const size_t start = Stream_GetPosition(s); |
1719 | 607 | UINT16 blockType = 0; |
1720 | 607 | UINT32 blockLen = 0; |
1721 | 607 | UINT32 count = 0; |
1722 | 607 | UINT16 close_cnt = 0; |
1723 | | |
1724 | 607 | WINPR_ASSERT(progressive); |
1725 | 607 | WINPR_ASSERT(region); |
1726 | | |
1727 | 607 | if (!Stream_CheckAndLogRequiredLength(TAG, s, region->tileDataSize)) |
1728 | 0 | return -1; |
1729 | | |
1730 | 658 | while ((Stream_GetRemainingLength(s) >= 6) && |
1731 | 287 | (region->tileDataSize > (Stream_GetPosition(s) - start))) |
1732 | 255 | { |
1733 | 255 | const size_t pos = Stream_GetPosition(s); |
1734 | | |
1735 | 255 | Stream_Read_UINT16(s, blockType); |
1736 | 255 | Stream_Read_UINT32(s, blockLen); |
1737 | | |
1738 | | #if defined(WITH_DEBUG_CODECS) |
1739 | | WLog_Print(progressive->log, WLOG_DEBUG, "%s", |
1740 | | rfx_get_progressive_block_type_string(blockType)); |
1741 | | #endif |
1742 | | |
1743 | 255 | if (blockLen < 6) |
1744 | 6 | { |
1745 | 6 | WLog_Print(progressive->log, WLOG_ERROR, "Expected >= %" PRIu32 " remaining %" PRIu32, |
1746 | 6 | 6u, blockLen); |
1747 | 6 | return -1003; |
1748 | 6 | } |
1749 | 249 | if (!Stream_CheckAndLogRequiredLength(TAG, s, blockLen - 6)) |
1750 | 81 | return -1003; |
1751 | | |
1752 | 168 | switch (blockType) |
1753 | 168 | { |
1754 | 24 | case PROGRESSIVE_WBT_TILE_SIMPLE: |
1755 | 24 | if (!progressive_tile_read(progressive, TRUE, s, blockType, blockLen, surface, |
1756 | 24 | region, context)) |
1757 | 19 | return -1022; |
1758 | 5 | break; |
1759 | | |
1760 | 36 | case PROGRESSIVE_WBT_TILE_FIRST: |
1761 | 36 | if (!progressive_tile_read(progressive, FALSE, s, blockType, blockLen, surface, |
1762 | 36 | region, context)) |
1763 | 14 | return -1027; |
1764 | 22 | break; |
1765 | | |
1766 | 72 | case PROGRESSIVE_WBT_TILE_UPGRADE: |
1767 | 72 | if (!progressive_tile_read_upgrade(progressive, s, blockType, blockLen, surface, |
1768 | 72 | region, context)) |
1769 | 29 | return -1032; |
1770 | 43 | break; |
1771 | 43 | default: |
1772 | 36 | WLog_ERR(TAG, "Invalid block type %04" PRIx16 " (%s)", blockType, |
1773 | 36 | rfx_get_progressive_block_type_string(blockType)); |
1774 | 36 | return -1039; |
1775 | 168 | } |
1776 | | |
1777 | 70 | size_t rem = Stream_GetPosition(s); |
1778 | 70 | if ((rem - pos) != blockLen) |
1779 | 19 | { |
1780 | 19 | WLog_Print(progressive->log, WLOG_ERROR, |
1781 | 19 | "Actual block read %" PRIuz " but expected %" PRIu32, rem - pos, blockLen); |
1782 | 19 | return -1040; |
1783 | 19 | } |
1784 | 51 | count++; |
1785 | 51 | } |
1786 | | |
1787 | 403 | end = Stream_GetPosition(s); |
1788 | 403 | if ((end - start) != region->tileDataSize) |
1789 | 12 | { |
1790 | 12 | WLog_Print(progressive->log, WLOG_ERROR, |
1791 | 12 | "Actual total blocks read %" PRIuz " but expected %" PRIu32, end - start, |
1792 | 12 | region->tileDataSize); |
1793 | 12 | return -1041; |
1794 | 12 | } |
1795 | | |
1796 | 391 | if (count != region->numTiles) |
1797 | 35 | { |
1798 | 35 | WLog_Print(progressive->log, WLOG_WARN, |
1799 | 35 | "numTiles inconsistency: actual: %" PRIu32 ", expected: %" PRIu16 "\n", count, |
1800 | 35 | region->numTiles); |
1801 | 35 | return -1044; |
1802 | 35 | } |
1803 | | |
1804 | 356 | for (UINT32 idx = 0; idx < region->numTiles; idx++) |
1805 | 0 | { |
1806 | 0 | RFX_PROGRESSIVE_TILE* tile = region->tiles[idx]; |
1807 | 0 | PROGRESSIVE_TILE_PROCESS_WORK_PARAM* param = &progressive->params[idx]; |
1808 | 0 | param->progressive = progressive; |
1809 | 0 | param->region = region; |
1810 | 0 | param->context = context; |
1811 | 0 | param->tile = tile; |
1812 | |
|
1813 | 0 | if (progressive->rfx_context->priv->UseThreads) |
1814 | 0 | { |
1815 | 0 | progressive->work_objects[idx] = CreateThreadpoolWork( |
1816 | 0 | progressive_process_tiles_tile_work_callback, (void*)param, nullptr); |
1817 | 0 | if (!progressive->work_objects[idx]) |
1818 | 0 | { |
1819 | 0 | WLog_Print(progressive->log, WLOG_ERROR, |
1820 | 0 | "Failed to create ThreadpoolWork for tile %" PRIu32, idx); |
1821 | 0 | status = -1; |
1822 | 0 | break; |
1823 | 0 | } |
1824 | | |
1825 | 0 | SubmitThreadpoolWork(progressive->work_objects[idx]); |
1826 | |
|
1827 | 0 | close_cnt = WINPR_ASSERTING_INT_CAST(UINT16, idx + 1); |
1828 | 0 | } |
1829 | 0 | else |
1830 | 0 | { |
1831 | 0 | progressive_process_tiles_tile_work_callback(nullptr, param, nullptr); |
1832 | 0 | } |
1833 | | |
1834 | 0 | if (status < 0) |
1835 | 0 | { |
1836 | 0 | WLog_Print(progressive->log, WLOG_ERROR, "Failed to decompress %s at %" PRIu16, |
1837 | 0 | rfx_get_progressive_block_type_string(tile->blockType), idx); |
1838 | 0 | goto fail; |
1839 | 0 | } |
1840 | 0 | } |
1841 | | |
1842 | 356 | if (progressive->rfx_context->priv->UseThreads) |
1843 | 356 | { |
1844 | 356 | for (UINT32 idx = 0; idx < close_cnt; idx++) |
1845 | 0 | { |
1846 | 0 | WaitForThreadpoolWorkCallbacks(progressive->work_objects[idx], FALSE); |
1847 | 0 | CloseThreadpoolWork(progressive->work_objects[idx]); |
1848 | 0 | } |
1849 | 356 | } |
1850 | | |
1851 | 356 | fail: |
1852 | | |
1853 | 356 | if (status < 0) |
1854 | 0 | return -1; |
1855 | | |
1856 | 356 | return (SSIZE_T)(end - start); |
1857 | 356 | } |
1858 | | |
1859 | | static inline SSIZE_T progressive_wb_sync(PROGRESSIVE_CONTEXT* WINPR_RESTRICT progressive, |
1860 | | wStream* WINPR_RESTRICT s, UINT16 blockType, |
1861 | | UINT32 blockLen) |
1862 | 985 | { |
1863 | 985 | const UINT32 magic = 0xCACCACCA; |
1864 | 985 | const UINT16 version = 0x0100; |
1865 | 985 | PROGRESSIVE_BLOCK_SYNC sync = WINPR_C_ARRAY_INIT; |
1866 | | |
1867 | 985 | sync.blockType = blockType; |
1868 | 985 | sync.blockLen = blockLen; |
1869 | | |
1870 | 985 | if (sync.blockLen != 12) |
1871 | 30 | { |
1872 | 30 | WLog_Print(progressive->log, WLOG_ERROR, |
1873 | 30 | "PROGRESSIVE_BLOCK_SYNC::blockLen = 0x%08" PRIx32 " != 0x%08" PRIx32, |
1874 | 30 | sync.blockLen, 12u); |
1875 | 30 | return -1005; |
1876 | 30 | } |
1877 | | |
1878 | 955 | if (!Stream_CheckAndLogRequiredLength(TAG, s, 6)) |
1879 | 0 | return -1004; |
1880 | | |
1881 | | #if defined(WITH_DEBUG_CODECS) |
1882 | | WLog_Print(progressive->log, WLOG_DEBUG, "ProgressiveSync"); |
1883 | | #endif |
1884 | | |
1885 | 955 | Stream_Read_UINT32(s, sync.magic); |
1886 | 955 | Stream_Read_UINT16(s, sync.version); |
1887 | | |
1888 | 955 | if (sync.magic != magic) |
1889 | 61 | { |
1890 | 61 | WLog_Print(progressive->log, WLOG_ERROR, |
1891 | 61 | "PROGRESSIVE_BLOCK_SYNC::magic = 0x%08" PRIx32 " != 0x%08" PRIx32, sync.magic, |
1892 | 61 | magic); |
1893 | 61 | return -1005; |
1894 | 61 | } |
1895 | | |
1896 | 894 | if (sync.version != 0x0100) |
1897 | 22 | { |
1898 | 22 | WLog_Print(progressive->log, WLOG_ERROR, |
1899 | 22 | "PROGRESSIVE_BLOCK_SYNC::version = 0x%04" PRIx16 " != 0x%04" PRIu16, |
1900 | 22 | sync.version, version); |
1901 | 22 | return -1006; |
1902 | 22 | } |
1903 | | |
1904 | 872 | if ((progressive->state & FLAG_WBT_SYNC) != 0) |
1905 | 837 | WLog_WARN(TAG, "Duplicate PROGRESSIVE_BLOCK_SYNC, ignoring"); |
1906 | | |
1907 | 872 | progressive->state |= FLAG_WBT_SYNC; |
1908 | 872 | return 0; |
1909 | 894 | } |
1910 | | |
1911 | | static inline SSIZE_T progressive_wb_frame_begin(PROGRESSIVE_CONTEXT* WINPR_RESTRICT progressive, |
1912 | | wStream* WINPR_RESTRICT s, UINT16 blockType, |
1913 | | UINT32 blockLen) |
1914 | 661 | { |
1915 | 661 | PROGRESSIVE_BLOCK_FRAME_BEGIN frameBegin = WINPR_C_ARRAY_INIT; |
1916 | | |
1917 | 661 | frameBegin.blockType = blockType; |
1918 | 661 | frameBegin.blockLen = blockLen; |
1919 | | |
1920 | 661 | if (frameBegin.blockLen != 12) |
1921 | 59 | { |
1922 | 59 | WLog_Print(progressive->log, WLOG_ERROR, |
1923 | 59 | " RFX_PROGRESSIVE_FRAME_BEGIN::blockLen = 0x%08" PRIx32 " != 0x%08" PRIx32, |
1924 | 59 | frameBegin.blockLen, 12u); |
1925 | 59 | return -1005; |
1926 | 59 | } |
1927 | | |
1928 | 602 | if (!Stream_CheckAndLogRequiredLength(TAG, s, 6)) |
1929 | 0 | return -1007; |
1930 | | |
1931 | 602 | Stream_Read_UINT32(s, frameBegin.frameIndex); |
1932 | 602 | Stream_Read_UINT16(s, frameBegin.regionCount); |
1933 | | |
1934 | | #if defined(WITH_DEBUG_CODECS) |
1935 | | WLog_Print(progressive->log, WLOG_DEBUG, |
1936 | | "ProgressiveFrameBegin: frameIndex: %" PRIu32 " regionCount: %" PRIu16 "", |
1937 | | frameBegin.frameIndex, frameBegin.regionCount); |
1938 | | #endif |
1939 | | |
1940 | | /** |
1941 | | * If the number of elements specified by the regionCount field is |
1942 | | * larger than the actual number of elements in the regions field, |
1943 | | * the decoder SHOULD ignore this inconsistency. |
1944 | | */ |
1945 | | |
1946 | 602 | if ((progressive->state & FLAG_WBT_FRAME_BEGIN) != 0) |
1947 | 1 | { |
1948 | 1 | WLog_ERR(TAG, "Duplicate RFX_PROGRESSIVE_FRAME_BEGIN in stream, this is not allowed!"); |
1949 | 1 | return -1008; |
1950 | 1 | } |
1951 | | |
1952 | 601 | if ((progressive->state & FLAG_WBT_FRAME_END) != 0) |
1953 | 1 | { |
1954 | 1 | WLog_ERR(TAG, "RFX_PROGRESSIVE_FRAME_BEGIN after RFX_PROGRESSIVE_FRAME_END in stream, this " |
1955 | 1 | "is not allowed!"); |
1956 | 1 | return -1008; |
1957 | 1 | } |
1958 | | |
1959 | 600 | progressive->state |= FLAG_WBT_FRAME_BEGIN; |
1960 | 600 | return 0; |
1961 | 601 | } |
1962 | | |
1963 | | static inline SSIZE_T progressive_wb_frame_end(PROGRESSIVE_CONTEXT* WINPR_RESTRICT progressive, |
1964 | | wStream* WINPR_RESTRICT s, UINT16 blockType, |
1965 | | UINT32 blockLen) |
1966 | 2.77k | { |
1967 | 2.77k | PROGRESSIVE_BLOCK_FRAME_END frameEnd = WINPR_C_ARRAY_INIT; |
1968 | | |
1969 | 2.77k | frameEnd.blockType = blockType; |
1970 | 2.77k | frameEnd.blockLen = blockLen; |
1971 | | |
1972 | 2.77k | if (frameEnd.blockLen != 6) |
1973 | 76 | { |
1974 | 76 | WLog_Print(progressive->log, WLOG_ERROR, |
1975 | 76 | " RFX_PROGRESSIVE_FRAME_END::blockLen = 0x%08" PRIx32 " != 0x%08" PRIx32, |
1976 | 76 | frameEnd.blockLen, 6u); |
1977 | 76 | return -1005; |
1978 | 76 | } |
1979 | | |
1980 | 2.69k | if (Stream_GetRemainingLength(s) != 0) |
1981 | 0 | { |
1982 | 0 | WLog_Print(progressive->log, WLOG_ERROR, |
1983 | 0 | "ProgressiveFrameEnd short %" PRIuz ", expected %u", |
1984 | 0 | Stream_GetRemainingLength(s), 0U); |
1985 | 0 | return -1008; |
1986 | 0 | } |
1987 | | |
1988 | | #if defined(WITH_DEBUG_CODECS) |
1989 | | WLog_Print(progressive->log, WLOG_DEBUG, "ProgressiveFrameEnd"); |
1990 | | #endif |
1991 | | |
1992 | 2.69k | if ((progressive->state & FLAG_WBT_FRAME_BEGIN) == 0) |
1993 | 2.46k | WLog_WARN(TAG, "RFX_PROGRESSIVE_FRAME_END before RFX_PROGRESSIVE_FRAME_BEGIN, ignoring"); |
1994 | 2.69k | if ((progressive->state & FLAG_WBT_FRAME_END) != 0) |
1995 | 2.61k | WLog_WARN(TAG, "Duplicate RFX_PROGRESSIVE_FRAME_END, ignoring"); |
1996 | | |
1997 | 2.69k | progressive->state |= FLAG_WBT_FRAME_END; |
1998 | 2.69k | return 0; |
1999 | 2.69k | } |
2000 | | |
2001 | | static inline SSIZE_T progressive_wb_context(PROGRESSIVE_CONTEXT* WINPR_RESTRICT progressive, |
2002 | | wStream* WINPR_RESTRICT s, UINT16 blockType, |
2003 | | UINT32 blockLen) |
2004 | 547 | { |
2005 | 547 | PROGRESSIVE_BLOCK_CONTEXT* context = &progressive->context; |
2006 | 547 | context->blockType = blockType; |
2007 | 547 | context->blockLen = blockLen; |
2008 | | |
2009 | 547 | if (context->blockLen != 10) |
2010 | 61 | { |
2011 | 61 | WLog_Print(progressive->log, WLOG_ERROR, |
2012 | 61 | "RFX_PROGRESSIVE_CONTEXT::blockLen = 0x%08" PRIx32 " != 0x%08x", |
2013 | 61 | context->blockLen, 10u); |
2014 | 61 | return -1005; |
2015 | 61 | } |
2016 | | |
2017 | 486 | if (!Stream_CheckAndLogRequiredLength(TAG, s, 4)) |
2018 | 0 | return -1009; |
2019 | | |
2020 | 486 | Stream_Read_UINT8(s, context->ctxId); |
2021 | 486 | Stream_Read_UINT16(s, context->tileSize); |
2022 | 486 | Stream_Read_UINT8(s, context->flags); |
2023 | | |
2024 | 486 | if (context->ctxId != 0x00) |
2025 | 233 | WLog_WARN(TAG, "RFX_PROGRESSIVE_CONTEXT::ctxId != 0x00: %" PRIu8, context->ctxId); |
2026 | | |
2027 | 486 | if (context->tileSize != 64) |
2028 | 35 | { |
2029 | 35 | WLog_ERR(TAG, "RFX_PROGRESSIVE_CONTEXT::tileSize != 0x40: %" PRIu16, context->tileSize); |
2030 | 35 | return -1010; |
2031 | 35 | } |
2032 | | |
2033 | 451 | if ((progressive->state & FLAG_WBT_FRAME_BEGIN) != 0) |
2034 | 66 | WLog_WARN(TAG, "RFX_PROGRESSIVE_CONTEXT received after RFX_PROGRESSIVE_FRAME_BEGIN"); |
2035 | 451 | if ((progressive->state & FLAG_WBT_FRAME_END) != 0) |
2036 | 202 | WLog_WARN(TAG, "RFX_PROGRESSIVE_CONTEXT received after RFX_PROGRESSIVE_FRAME_END"); |
2037 | 451 | if ((progressive->state & FLAG_WBT_CONTEXT) != 0) |
2038 | 405 | WLog_WARN(TAG, "Duplicate RFX_PROGRESSIVE_CONTEXT received, ignoring."); |
2039 | | |
2040 | | #if defined(WITH_DEBUG_CODECS) |
2041 | | WLog_Print(progressive->log, WLOG_DEBUG, "ProgressiveContext: flags: 0x%02" PRIX8 "", |
2042 | | context->flags); |
2043 | | #endif |
2044 | | |
2045 | 451 | progressive->state |= FLAG_WBT_CONTEXT; |
2046 | 451 | return 0; |
2047 | 486 | } |
2048 | | |
2049 | | static inline SSIZE_T |
2050 | | progressive_wb_read_region_header(PROGRESSIVE_CONTEXT* WINPR_RESTRICT progressive, |
2051 | | wStream* WINPR_RESTRICT s, UINT16 blockType, UINT32 blockLen, |
2052 | | PROGRESSIVE_BLOCK_REGION* WINPR_RESTRICT region) |
2053 | 1.64k | { |
2054 | 1.64k | region->usedTiles = 0; |
2055 | | |
2056 | 1.64k | if (!Stream_CheckAndLogRequiredLength(TAG, s, 12)) |
2057 | 7 | return -1011; |
2058 | | |
2059 | 1.64k | region->blockType = blockType; |
2060 | 1.64k | region->blockLen = blockLen; |
2061 | 1.64k | Stream_Read_UINT8(s, region->tileSize); |
2062 | 1.64k | Stream_Read_UINT16(s, region->numRects); |
2063 | 1.64k | Stream_Read_UINT8(s, region->numQuant); |
2064 | 1.64k | Stream_Read_UINT8(s, region->numProgQuant); |
2065 | 1.64k | Stream_Read_UINT8(s, region->flags); |
2066 | 1.64k | Stream_Read_UINT16(s, region->numTiles); |
2067 | 1.64k | Stream_Read_UINT32(s, region->tileDataSize); |
2068 | | |
2069 | 1.64k | if (region->tileSize != 64) |
2070 | 25 | { |
2071 | 25 | WLog_Print(progressive->log, WLOG_ERROR, |
2072 | 25 | "ProgressiveRegion tile size %" PRIu8 ", expected %u", region->tileSize, 64U); |
2073 | 25 | return -1012; |
2074 | 25 | } |
2075 | | |
2076 | 1.61k | if (region->numRects < 1) |
2077 | 3 | { |
2078 | 3 | WLog_Print(progressive->log, WLOG_ERROR, "ProgressiveRegion missing rect count %" PRIu16, |
2079 | 3 | region->numRects); |
2080 | 3 | return -1013; |
2081 | 3 | } |
2082 | | |
2083 | 1.61k | if (region->numQuant > 7) |
2084 | 12 | { |
2085 | 12 | WLog_Print(progressive->log, WLOG_ERROR, |
2086 | 12 | "ProgressiveRegion quant count too high %" PRIu8 ", expected < %u", |
2087 | 12 | region->numQuant, 7U); |
2088 | 12 | return -1014; |
2089 | 12 | } |
2090 | | |
2091 | 1.60k | const SSIZE_T rc = WINPR_ASSERTING_INT_CAST(SSIZE_T, Stream_GetRemainingLength(s)); |
2092 | 1.60k | const SSIZE_T expect = region->numRects * 8ll + region->numQuant * 5ll + |
2093 | 1.60k | region->numProgQuant * 16ll + region->tileDataSize; |
2094 | 1.60k | SSIZE_T len = rc; |
2095 | 1.60k | if (expect != rc) |
2096 | 768 | { |
2097 | 768 | if (len / 8LL < region->numRects) |
2098 | 41 | { |
2099 | 41 | WLog_Print(progressive->log, WLOG_ERROR, |
2100 | 41 | "ProgressiveRegion data short for region->rects"); |
2101 | 41 | return -1015; |
2102 | 41 | } |
2103 | 727 | len -= region->numRects * 8LL; |
2104 | | |
2105 | 727 | if (len / 5LL < region->numQuant) |
2106 | 3 | { |
2107 | 3 | WLog_Print(progressive->log, WLOG_ERROR, |
2108 | 3 | "ProgressiveRegion data short for region->cQuant"); |
2109 | 3 | return -1018; |
2110 | 3 | } |
2111 | 724 | len -= region->numQuant * 5LL; |
2112 | | |
2113 | 724 | if (len / 16LL < region->numProgQuant) |
2114 | 1 | { |
2115 | 1 | WLog_Print(progressive->log, WLOG_ERROR, |
2116 | 1 | "ProgressiveRegion data short for region->cProgQuant"); |
2117 | 1 | return -1021; |
2118 | 1 | } |
2119 | 723 | len -= region->numProgQuant * 16LL; |
2120 | | |
2121 | 723 | if (len < region->tileDataSize * 1ll) |
2122 | 53 | { |
2123 | 53 | WLog_Print(progressive->log, WLOG_ERROR, |
2124 | 53 | "ProgressiveRegion data short for region->tiles"); |
2125 | 53 | return -1024; |
2126 | 53 | } |
2127 | 670 | len -= region->tileDataSize; |
2128 | | |
2129 | 670 | if (len > 0) |
2130 | 670 | WLog_Print(progressive->log, WLOG_WARN, |
2131 | 670 | "Unused bytes detected, %" PRIdz " bytes not processed", len); |
2132 | 670 | } |
2133 | | |
2134 | 1.50k | return rc; |
2135 | 1.60k | } |
2136 | | |
2137 | | static inline SSIZE_T progressive_wb_skip_region(PROGRESSIVE_CONTEXT* WINPR_RESTRICT progressive, |
2138 | | wStream* WINPR_RESTRICT s, UINT16 blockType, |
2139 | | UINT32 blockLen) |
2140 | 1.00k | { |
2141 | 1.00k | PROGRESSIVE_BLOCK_REGION* WINPR_RESTRICT region = &progressive->region; |
2142 | | |
2143 | 1.00k | const SSIZE_T rc = |
2144 | 1.00k | progressive_wb_read_region_header(progressive, s, blockType, blockLen, region); |
2145 | 1.00k | if (rc < 0) |
2146 | 134 | return rc; |
2147 | | |
2148 | 869 | if (!Stream_SafeSeek(s, WINPR_ASSERTING_INT_CAST(size_t, rc))) |
2149 | 0 | return -1111; |
2150 | | |
2151 | 869 | return rc; |
2152 | 869 | } |
2153 | | |
2154 | | static inline SSIZE_T progressive_wb_region(PROGRESSIVE_CONTEXT* WINPR_RESTRICT progressive, |
2155 | | wStream* WINPR_RESTRICT s, UINT16 blockType, |
2156 | | UINT32 blockLen, |
2157 | | PROGRESSIVE_SURFACE_CONTEXT* WINPR_RESTRICT surface, |
2158 | | PROGRESSIVE_BLOCK_REGION* WINPR_RESTRICT region) |
2159 | 1.64k | { |
2160 | 1.64k | SSIZE_T rc = -1; |
2161 | 1.64k | UINT16 boxLeft = 0; |
2162 | 1.64k | UINT16 boxTop = 0; |
2163 | 1.64k | UINT16 boxRight = 0; |
2164 | 1.64k | UINT16 boxBottom = 0; |
2165 | 1.64k | UINT16 idxLeft = 0; |
2166 | 1.64k | UINT16 idxTop = 0; |
2167 | 1.64k | UINT16 idxRight = 0; |
2168 | 1.64k | UINT16 idxBottom = 0; |
2169 | 1.64k | const PROGRESSIVE_BLOCK_CONTEXT* context = &progressive->context; |
2170 | | |
2171 | 1.64k | if ((progressive->state & FLAG_WBT_FRAME_BEGIN) == 0) |
2172 | 476 | { |
2173 | 476 | WLog_WARN(TAG, "RFX_PROGRESSIVE_REGION before RFX_PROGRESSIVE_FRAME_BEGIN, ignoring"); |
2174 | 476 | return progressive_wb_skip_region(progressive, s, blockType, blockLen); |
2175 | 476 | } |
2176 | 1.17k | if ((progressive->state & FLAG_WBT_FRAME_END) != 0) |
2177 | 527 | { |
2178 | 527 | WLog_WARN(TAG, "RFX_PROGRESSIVE_REGION after RFX_PROGRESSIVE_FRAME_END, ignoring"); |
2179 | 527 | return progressive_wb_skip_region(progressive, s, blockType, blockLen); |
2180 | 527 | } |
2181 | | |
2182 | 645 | progressive->state |= FLAG_WBT_REGION; |
2183 | | |
2184 | 645 | rc = progressive_wb_read_region_header(progressive, s, blockType, blockLen, region); |
2185 | 645 | if (rc < 0) |
2186 | 11 | return rc; |
2187 | | |
2188 | 22.1k | for (UINT16 index = 0; index < region->numRects; index++) |
2189 | 21.5k | { |
2190 | 21.5k | RFX_RECT* rect = &(region->rects[index]); |
2191 | 21.5k | Stream_Read_UINT16(s, rect->x); |
2192 | 21.5k | Stream_Read_UINT16(s, rect->y); |
2193 | 21.5k | Stream_Read_UINT16(s, rect->width); |
2194 | 21.5k | Stream_Read_UINT16(s, rect->height); |
2195 | 21.5k | } |
2196 | | |
2197 | 686 | for (BYTE index = 0; index < region->numQuant; index++) |
2198 | 79 | { |
2199 | 79 | RFX_COMPONENT_CODEC_QUANT* quantVal = &(region->quantVals[index]); |
2200 | 79 | progressive_component_codec_quant_read(s, quantVal); |
2201 | | |
2202 | 79 | if (!progressive_rfx_quant_lcmp_greater_equal(quantVal, 6)) |
2203 | 27 | { |
2204 | 27 | WLog_Print(progressive->log, WLOG_ERROR, |
2205 | 27 | "ProgressiveRegion region->cQuant[%" PRIu32 "] < 6", index); |
2206 | 27 | return -1; |
2207 | 27 | } |
2208 | | |
2209 | 52 | if (!progressive_rfx_quant_lcmp_less_equal(quantVal, 15)) |
2210 | 0 | { |
2211 | 0 | WLog_Print(progressive->log, WLOG_ERROR, |
2212 | 0 | "ProgressiveRegion region->cQuant[%" PRIu32 "] > 15", index); |
2213 | 0 | return -1; |
2214 | 0 | } |
2215 | 52 | } |
2216 | | |
2217 | 1.63k | for (BYTE index = 0; index < region->numProgQuant; index++) |
2218 | 1.03k | { |
2219 | 1.03k | RFX_PROGRESSIVE_CODEC_QUANT* quantProgVal = &(region->quantProgVals[index]); |
2220 | | |
2221 | 1.03k | Stream_Read_UINT8(s, quantProgVal->quality); |
2222 | | |
2223 | 1.03k | progressive_component_codec_quant_read(s, &(quantProgVal->yQuantValues)); |
2224 | 1.03k | progressive_component_codec_quant_read(s, &(quantProgVal->cbQuantValues)); |
2225 | 1.03k | progressive_component_codec_quant_read(s, &(quantProgVal->crQuantValues)); |
2226 | 1.03k | } |
2227 | | |
2228 | | #if defined(WITH_DEBUG_CODECS) |
2229 | | WLog_Print(progressive->log, WLOG_DEBUG, |
2230 | | "ProgressiveRegion: numRects: %" PRIu16 " numTiles: %" PRIu16 |
2231 | | " tileDataSize: %" PRIu32 " flags: 0x%02" PRIX8 " numQuant: %" PRIu8 |
2232 | | " numProgQuant: %" PRIu8 "", |
2233 | | region->numRects, region->numTiles, region->tileDataSize, region->flags, |
2234 | | region->numQuant, region->numProgQuant); |
2235 | | #endif |
2236 | | |
2237 | 607 | boxLeft = WINPR_ASSERTING_INT_CAST(UINT16, surface->gridWidth); |
2238 | 607 | boxTop = WINPR_ASSERTING_INT_CAST(UINT16, surface->gridHeight); |
2239 | 607 | boxRight = 0; |
2240 | 607 | boxBottom = 0; |
2241 | | |
2242 | 22.0k | for (UINT16 index = 0; index < region->numRects; index++) |
2243 | 21.4k | { |
2244 | 21.4k | RFX_RECT* rect = &(region->rects[index]); |
2245 | 21.4k | idxLeft = rect->x / 64; |
2246 | 21.4k | idxTop = rect->y / 64; |
2247 | 21.4k | idxRight = (rect->x + rect->width + 63) / 64; |
2248 | 21.4k | idxBottom = (rect->y + rect->height + 63) / 64; |
2249 | | |
2250 | 21.4k | if (idxLeft < boxLeft) |
2251 | 445 | boxLeft = idxLeft; |
2252 | | |
2253 | 21.4k | if (idxTop < boxTop) |
2254 | 469 | boxTop = idxTop; |
2255 | | |
2256 | 21.4k | if (idxRight > boxRight) |
2257 | 1.08k | boxRight = idxRight; |
2258 | | |
2259 | 21.4k | if (idxBottom > boxBottom) |
2260 | 1.14k | boxBottom = idxBottom; |
2261 | | |
2262 | | #if defined(WITH_DEBUG_CODECS) |
2263 | | WLog_Print(progressive->log, WLOG_DEBUG, |
2264 | | "rect[%" PRIu16 "]: x: %" PRIu16 " y: %" PRIu16 " w: %" PRIu16 " h: %" PRIu16 "", |
2265 | | index, rect->x, rect->y, rect->width, rect->height); |
2266 | | #endif |
2267 | 21.4k | } |
2268 | | |
2269 | 607 | const SSIZE_T res = progressive_process_tiles(progressive, s, region, surface, context); |
2270 | 607 | if (res < 0) |
2271 | 251 | return -1; |
2272 | 356 | return rc; |
2273 | 607 | } |
2274 | | |
2275 | | static inline SSIZE_T progressive_parse_block(PROGRESSIVE_CONTEXT* WINPR_RESTRICT progressive, |
2276 | | wStream* WINPR_RESTRICT s, |
2277 | | PROGRESSIVE_SURFACE_CONTEXT* WINPR_RESTRICT surface, |
2278 | | PROGRESSIVE_BLOCK_REGION* WINPR_RESTRICT region) |
2279 | 11.3k | { |
2280 | 11.3k | UINT16 blockType = 0; |
2281 | 11.3k | UINT32 blockLen = 0; |
2282 | 11.3k | SSIZE_T rc = -1; |
2283 | 11.3k | wStream sub = WINPR_C_ARRAY_INIT; |
2284 | | |
2285 | 11.3k | WINPR_ASSERT(progressive); |
2286 | | |
2287 | 11.3k | if (!Stream_CheckAndLogRequiredLength(TAG, s, 6)) |
2288 | 605 | return -1; |
2289 | | |
2290 | 10.7k | Stream_Read_UINT16(s, blockType); |
2291 | 10.7k | Stream_Read_UINT32(s, blockLen); |
2292 | | |
2293 | 10.7k | if (blockLen < 6) |
2294 | 1.43k | { |
2295 | 1.43k | WLog_WARN(TAG, "Invalid blockLen %" PRIu32 ", expected >= 6", blockLen); |
2296 | 1.43k | return -1; |
2297 | 1.43k | } |
2298 | 9.33k | if (!Stream_CheckAndLogRequiredLength(TAG, s, blockLen - 6)) |
2299 | 2.40k | return -1; |
2300 | 6.92k | Stream_StaticConstInit(&sub, Stream_Pointer(s), blockLen - 6); |
2301 | 6.92k | Stream_Seek(s, blockLen - 6); |
2302 | | |
2303 | 6.92k | switch (blockType) |
2304 | 6.92k | { |
2305 | 985 | case PROGRESSIVE_WBT_SYNC: |
2306 | 985 | rc = progressive_wb_sync(progressive, &sub, blockType, blockLen); |
2307 | 985 | break; |
2308 | | |
2309 | 661 | case PROGRESSIVE_WBT_FRAME_BEGIN: |
2310 | 661 | rc = progressive_wb_frame_begin(progressive, &sub, blockType, blockLen); |
2311 | 661 | break; |
2312 | | |
2313 | 2.77k | case PROGRESSIVE_WBT_FRAME_END: |
2314 | 2.77k | rc = progressive_wb_frame_end(progressive, &sub, blockType, blockLen); |
2315 | 2.77k | break; |
2316 | | |
2317 | 547 | case PROGRESSIVE_WBT_CONTEXT: |
2318 | 547 | rc = progressive_wb_context(progressive, &sub, blockType, blockLen); |
2319 | 547 | break; |
2320 | | |
2321 | 1.64k | case PROGRESSIVE_WBT_REGION: |
2322 | 1.64k | rc = progressive_wb_region(progressive, &sub, blockType, blockLen, surface, region); |
2323 | 1.64k | break; |
2324 | | |
2325 | 315 | default: |
2326 | 315 | WLog_Print(progressive->log, WLOG_ERROR, "Invalid block type %04" PRIx16, blockType); |
2327 | 315 | return -1; |
2328 | 6.92k | } |
2329 | | |
2330 | 6.61k | if (rc < 0) |
2331 | 769 | return -1; |
2332 | | |
2333 | 5.84k | if (Stream_GetRemainingLength(&sub) > 0) |
2334 | 19 | { |
2335 | 19 | WLog_Print(progressive->log, WLOG_ERROR, |
2336 | 19 | "block len %" PRIu32 " does not match read data %" PRIuz, blockLen, |
2337 | 19 | blockLen - Stream_GetRemainingLength(&sub)); |
2338 | 19 | return -1; |
2339 | 19 | } |
2340 | | |
2341 | 5.82k | return rc; |
2342 | 5.84k | } |
2343 | | |
2344 | | static inline BOOL update_tiles(PROGRESSIVE_CONTEXT* WINPR_RESTRICT progressive, |
2345 | | PROGRESSIVE_SURFACE_CONTEXT* WINPR_RESTRICT surface, |
2346 | | BYTE* WINPR_RESTRICT pDstData, UINT32 DstFormat, UINT32 nDstStep, |
2347 | | UINT32 nXDst, UINT32 nYDst, |
2348 | | PROGRESSIVE_BLOCK_REGION* WINPR_RESTRICT region, |
2349 | | REGION16* WINPR_RESTRICT invalidRegion) |
2350 | 342 | { |
2351 | 342 | BOOL rc = TRUE; |
2352 | 342 | REGION16 clippingRects = WINPR_C_ARRAY_INIT; |
2353 | 342 | region16_init(&clippingRects); |
2354 | | |
2355 | 12.1k | for (UINT32 i = 0; i < region->numRects; i++) |
2356 | 11.8k | { |
2357 | 11.8k | RECTANGLE_16 clippingRect = WINPR_C_ARRAY_INIT; |
2358 | 11.8k | const RFX_RECT* rect = &(region->rects[i]); |
2359 | | |
2360 | 11.8k | clippingRect.left = (UINT16)nXDst + rect->x; |
2361 | 11.8k | clippingRect.top = (UINT16)nYDst + rect->y; |
2362 | 11.8k | clippingRect.right = clippingRect.left + rect->width; |
2363 | 11.8k | clippingRect.bottom = clippingRect.top + rect->height; |
2364 | 11.8k | if (!region16_union_rect(&clippingRects, &clippingRects, &clippingRect)) |
2365 | 0 | { |
2366 | 0 | region16_uninit(&clippingRects); |
2367 | 0 | return FALSE; |
2368 | 0 | } |
2369 | 11.8k | } |
2370 | | |
2371 | 342 | for (UINT32 i = 0; i < surface->numUpdatedTiles; i++) |
2372 | 0 | { |
2373 | 0 | UINT32 nbUpdateRects = 0; |
2374 | 0 | const RECTANGLE_16* updateRects = nullptr; |
2375 | 0 | RECTANGLE_16 updateRect = WINPR_C_ARRAY_INIT; |
2376 | |
|
2377 | 0 | WINPR_ASSERT(surface->updatedTileIndices); |
2378 | 0 | const UINT32 index = surface->updatedTileIndices[i]; |
2379 | |
|
2380 | 0 | WINPR_ASSERT(index < surface->tilesSize); |
2381 | 0 | RFX_PROGRESSIVE_TILE* tile = surface->tiles[index]; |
2382 | 0 | WINPR_ASSERT(tile); |
2383 | |
|
2384 | 0 | const UINT32 dl = nXDst + tile->x; |
2385 | 0 | updateRect.left = WINPR_ASSERTING_INT_CAST(UINT16, dl); |
2386 | |
|
2387 | 0 | const UINT32 dt = nYDst + tile->y; |
2388 | 0 | updateRect.top = WINPR_ASSERTING_INT_CAST(UINT16, dt); |
2389 | 0 | updateRect.right = updateRect.left + 64; |
2390 | 0 | updateRect.bottom = updateRect.top + 64; |
2391 | |
|
2392 | 0 | REGION16 updateRegion = WINPR_C_ARRAY_INIT; |
2393 | 0 | region16_init(&updateRegion); |
2394 | 0 | if (!region16_intersect_rect(&updateRegion, &clippingRects, &updateRect)) |
2395 | 0 | { |
2396 | 0 | region16_uninit(&updateRegion); |
2397 | 0 | goto fail; |
2398 | 0 | } |
2399 | 0 | updateRects = region16_rects(&updateRegion, &nbUpdateRects); |
2400 | |
|
2401 | 0 | for (UINT32 j = 0; j < nbUpdateRects; j++) |
2402 | 0 | { |
2403 | 0 | rc = FALSE; |
2404 | 0 | const RECTANGLE_16* rect = &updateRects[j]; |
2405 | 0 | if (rect->left < updateRect.left) |
2406 | 0 | break; |
2407 | 0 | const UINT32 nXSrc = rect->left - updateRect.left; |
2408 | 0 | const UINT32 nYSrc = rect->top - updateRect.top; |
2409 | 0 | const UINT32 width = rect->right - rect->left; |
2410 | 0 | const UINT32 height = rect->bottom - rect->top; |
2411 | |
|
2412 | 0 | if (rect->left + width > surface->width) |
2413 | 0 | break; |
2414 | 0 | if (rect->top + height > surface->height) |
2415 | 0 | break; |
2416 | 0 | rc = freerdp_image_copy_no_overlap( |
2417 | 0 | pDstData, DstFormat, nDstStep, rect->left, rect->top, width, height, tile->data, |
2418 | 0 | progressive->format, tile->stride, nXSrc, nYSrc, nullptr, FREERDP_KEEP_DST_ALPHA); |
2419 | 0 | if (!rc) |
2420 | 0 | break; |
2421 | | |
2422 | 0 | if (invalidRegion) |
2423 | 0 | { |
2424 | 0 | if (!region16_union_rect(invalidRegion, invalidRegion, rect)) |
2425 | 0 | { |
2426 | 0 | region16_uninit(&updateRegion); |
2427 | 0 | goto fail; |
2428 | 0 | } |
2429 | 0 | } |
2430 | 0 | } |
2431 | | |
2432 | 0 | region16_uninit(&updateRegion); |
2433 | 0 | if (!rc) |
2434 | 0 | goto fail; |
2435 | 0 | tile->dirty = FALSE; |
2436 | 0 | } |
2437 | | |
2438 | 342 | fail: |
2439 | 342 | region16_uninit(&clippingRects); |
2440 | 342 | return rc; |
2441 | 342 | } |
2442 | | |
2443 | | INT32 progressive_decompress(PROGRESSIVE_CONTEXT* WINPR_RESTRICT progressive, |
2444 | | const BYTE* WINPR_RESTRICT pSrcData, UINT32 SrcSize, |
2445 | | BYTE* WINPR_RESTRICT pDstData, UINT32 DstFormat, UINT32 nDstStep, |
2446 | | UINT32 nXDst, UINT32 nYDst, REGION16* WINPR_RESTRICT invalidRegion, |
2447 | | UINT16 surfaceId, UINT32 frameId) |
2448 | 5.89k | { |
2449 | 5.89k | INT32 rc = 1; |
2450 | | |
2451 | 5.89k | WINPR_ASSERT(progressive); |
2452 | 5.89k | PROGRESSIVE_SURFACE_CONTEXT* surface = progressive_get_surface_data(progressive, surfaceId); |
2453 | | |
2454 | 5.89k | if (!surface) |
2455 | 0 | { |
2456 | 0 | WLog_Print(progressive->log, WLOG_ERROR, "ProgressiveRegion no surface for %" PRIu16, |
2457 | 0 | surfaceId); |
2458 | 0 | return -1001; |
2459 | 0 | } |
2460 | | |
2461 | 5.89k | PROGRESSIVE_BLOCK_REGION* WINPR_RESTRICT region = &progressive->region; |
2462 | 5.89k | WINPR_ASSERT(region); |
2463 | | |
2464 | 5.89k | if (surface->frameId != frameId) |
2465 | 0 | { |
2466 | 0 | surface->frameId = frameId; |
2467 | 0 | surface->numUpdatedTiles = 0; |
2468 | 0 | } |
2469 | | |
2470 | 5.89k | wStream ss = WINPR_C_ARRAY_INIT; |
2471 | 5.89k | wStream* s = Stream_StaticConstInit(&ss, pSrcData, SrcSize); |
2472 | 5.89k | WINPR_ASSERT(s); |
2473 | | |
2474 | 5.89k | switch (DstFormat) |
2475 | 5.89k | { |
2476 | 0 | case PIXEL_FORMAT_RGBA32: |
2477 | 0 | case PIXEL_FORMAT_RGBX32: |
2478 | 0 | case PIXEL_FORMAT_BGRA32: |
2479 | 5.89k | case PIXEL_FORMAT_BGRX32: |
2480 | 5.89k | progressive->format = DstFormat; |
2481 | 5.89k | break; |
2482 | 0 | default: |
2483 | 0 | progressive->format = PIXEL_FORMAT_XRGB32; |
2484 | 0 | break; |
2485 | 5.89k | } |
2486 | | |
2487 | 5.89k | const size_t start = Stream_GetPosition(s); |
2488 | 5.89k | progressive->state = 0; /* Set state to not initialized */ |
2489 | 11.7k | while (Stream_GetRemainingLength(s) > 0) |
2490 | 11.3k | { |
2491 | 11.3k | if (progressive_parse_block(progressive, s, surface, region) < 0) |
2492 | 5.54k | goto fail; |
2493 | 11.3k | } |
2494 | | |
2495 | 342 | { |
2496 | 342 | const size_t end = Stream_GetPosition(s); |
2497 | 342 | if ((end - start) != SrcSize) |
2498 | 0 | { |
2499 | 0 | WLog_Print(progressive->log, WLOG_ERROR, |
2500 | 0 | "total block len %" PRIuz " does not match read data %" PRIu32, end - start, |
2501 | 0 | SrcSize); |
2502 | 0 | rc = -1041; |
2503 | 0 | goto fail; |
2504 | 0 | } |
2505 | 342 | } |
2506 | | |
2507 | 342 | if (!update_tiles(progressive, surface, pDstData, DstFormat, nDstStep, nXDst, nYDst, region, |
2508 | 342 | invalidRegion)) |
2509 | 0 | return -2002; |
2510 | 5.89k | fail: |
2511 | 5.89k | return rc; |
2512 | 342 | } |
2513 | | |
2514 | | BOOL progressive_rfx_write_message_progressive_simple( |
2515 | | PROGRESSIVE_CONTEXT* WINPR_RESTRICT progressive, wStream* WINPR_RESTRICT s, |
2516 | | const RFX_MESSAGE* WINPR_RESTRICT msg) |
2517 | 0 | { |
2518 | 0 | RFX_CONTEXT* context = nullptr; |
2519 | |
|
2520 | 0 | WINPR_ASSERT(progressive); |
2521 | 0 | WINPR_ASSERT(s); |
2522 | 0 | WINPR_ASSERT(msg); |
2523 | 0 | context = progressive->rfx_context; |
2524 | 0 | return rfx_write_message_progressive_simple(context, s, msg); |
2525 | 0 | } |
2526 | | |
2527 | | int progressive_compress(PROGRESSIVE_CONTEXT* WINPR_RESTRICT progressive, |
2528 | | const BYTE* WINPR_RESTRICT pSrcData, UINT32 SrcSize, UINT32 SrcFormat, |
2529 | | UINT32 Width, UINT32 Height, UINT32 ScanLine, |
2530 | | const REGION16* WINPR_RESTRICT invalidRegion, |
2531 | | BYTE** WINPR_RESTRICT ppDstData, UINT32* WINPR_RESTRICT pDstSize) |
2532 | 0 | { |
2533 | 0 | BOOL rc = FALSE; |
2534 | 0 | int res = -6; |
2535 | 0 | wStream* s = nullptr; |
2536 | 0 | UINT32 numRects = 0; |
2537 | 0 | RFX_RECT* rects = nullptr; |
2538 | 0 | RFX_MESSAGE* message = nullptr; |
2539 | |
|
2540 | 0 | if (!progressive || !pSrcData || !ppDstData || !pDstSize) |
2541 | 0 | { |
2542 | 0 | return -1; |
2543 | 0 | } |
2544 | | |
2545 | 0 | if (ScanLine == 0) |
2546 | 0 | { |
2547 | 0 | switch (SrcFormat) |
2548 | 0 | { |
2549 | 0 | case PIXEL_FORMAT_ABGR32: |
2550 | 0 | case PIXEL_FORMAT_ARGB32: |
2551 | 0 | case PIXEL_FORMAT_XBGR32: |
2552 | 0 | case PIXEL_FORMAT_XRGB32: |
2553 | 0 | case PIXEL_FORMAT_BGRA32: |
2554 | 0 | case PIXEL_FORMAT_BGRX32: |
2555 | 0 | case PIXEL_FORMAT_RGBA32: |
2556 | 0 | case PIXEL_FORMAT_RGBX32: |
2557 | 0 | ScanLine = Width * 4; |
2558 | 0 | break; |
2559 | 0 | default: |
2560 | 0 | return -2; |
2561 | 0 | } |
2562 | 0 | } |
2563 | | |
2564 | 0 | if (SrcSize < Height * ScanLine) |
2565 | 0 | return -4; |
2566 | | |
2567 | 0 | if (!invalidRegion) |
2568 | 0 | { |
2569 | 0 | numRects = (Width + 63) / 64; |
2570 | 0 | numRects *= (Height + 63) / 64; |
2571 | 0 | } |
2572 | 0 | else |
2573 | 0 | { |
2574 | 0 | const int nr = region16_n_rects(invalidRegion); |
2575 | 0 | numRects = WINPR_ASSERTING_INT_CAST(uint32_t, nr); |
2576 | 0 | } |
2577 | |
|
2578 | 0 | if (numRects == 0) |
2579 | 0 | return 0; |
2580 | | |
2581 | 0 | if (!Stream_EnsureRemainingCapacity(progressive->rects, numRects * sizeof(RFX_RECT))) |
2582 | 0 | return -5; |
2583 | 0 | rects = Stream_BufferAs(progressive->rects, RFX_RECT); |
2584 | 0 | if (invalidRegion) |
2585 | 0 | { |
2586 | 0 | const RECTANGLE_16* region_rects = region16_rects(invalidRegion, nullptr); |
2587 | 0 | for (UINT32 idx = 0; idx < numRects; idx++) |
2588 | 0 | { |
2589 | 0 | const RECTANGLE_16* r = ®ion_rects[idx]; |
2590 | 0 | RFX_RECT* rect = &rects[idx]; |
2591 | |
|
2592 | 0 | rect->x = r->left; |
2593 | 0 | rect->y = r->top; |
2594 | 0 | rect->width = r->right - r->left; |
2595 | 0 | rect->height = r->bottom - r->top; |
2596 | 0 | } |
2597 | 0 | } |
2598 | 0 | else |
2599 | 0 | { |
2600 | 0 | UINT16 x = 0; |
2601 | 0 | UINT16 y = 0; |
2602 | |
|
2603 | 0 | for (UINT32 i = 0; i < numRects; i++) |
2604 | 0 | { |
2605 | 0 | RFX_RECT* r = &rects[i]; |
2606 | 0 | r->x = x; |
2607 | 0 | r->y = y; |
2608 | |
|
2609 | 0 | WINPR_ASSERT(Width >= x); |
2610 | 0 | WINPR_ASSERT(Height >= y); |
2611 | 0 | r->width = MIN(64, WINPR_ASSERTING_INT_CAST(UINT16, Width - x)); |
2612 | 0 | r->height = MIN(64, WINPR_ASSERTING_INT_CAST(UINT16, Height - y)); |
2613 | |
|
2614 | 0 | if (x + 64UL >= Width) |
2615 | 0 | { |
2616 | 0 | y += 64; |
2617 | 0 | x = 0; |
2618 | 0 | } |
2619 | 0 | else |
2620 | 0 | x += 64; |
2621 | |
|
2622 | 0 | WINPR_ASSERT(r->x % 64 == 0); |
2623 | 0 | WINPR_ASSERT(r->y % 64 == 0); |
2624 | 0 | WINPR_ASSERT(r->width <= 64); |
2625 | 0 | WINPR_ASSERT(r->height <= 64); |
2626 | 0 | } |
2627 | 0 | } |
2628 | 0 | s = progressive->buffer; |
2629 | 0 | Stream_ResetPosition(s); |
2630 | |
|
2631 | 0 | progressive->rfx_context->mode = RLGR1; |
2632 | |
|
2633 | 0 | progressive->rfx_context->width = WINPR_ASSERTING_INT_CAST(UINT16, Width); |
2634 | 0 | progressive->rfx_context->height = WINPR_ASSERTING_INT_CAST(UINT16, Height); |
2635 | 0 | rfx_context_set_pixel_format(progressive->rfx_context, SrcFormat); |
2636 | 0 | message = rfx_encode_message(progressive->rfx_context, rects, numRects, pSrcData, Width, Height, |
2637 | 0 | ScanLine); |
2638 | 0 | if (!message) |
2639 | 0 | { |
2640 | 0 | WLog_ERR(TAG, "failed to encode rfx message"); |
2641 | 0 | goto fail; |
2642 | 0 | } |
2643 | | |
2644 | 0 | rc = progressive_rfx_write_message_progressive_simple(progressive, s, message); |
2645 | 0 | rfx_message_free(progressive->rfx_context, message); |
2646 | 0 | if (!rc) |
2647 | 0 | goto fail; |
2648 | | |
2649 | 0 | { |
2650 | 0 | const size_t pos = Stream_GetPosition(s); |
2651 | 0 | WINPR_ASSERT(pos <= UINT32_MAX); |
2652 | 0 | *pDstSize = (UINT32)pos; |
2653 | 0 | } |
2654 | 0 | *ppDstData = Stream_Buffer(s); |
2655 | 0 | res = 1; |
2656 | 0 | fail: |
2657 | 0 | return res; |
2658 | 0 | } |
2659 | | |
2660 | | BOOL progressive_context_reset(PROGRESSIVE_CONTEXT* WINPR_RESTRICT progressive) |
2661 | 0 | { |
2662 | 0 | return (progressive != nullptr); |
2663 | 0 | } |
2664 | | |
2665 | | PROGRESSIVE_CONTEXT* progressive_context_new(BOOL Compressor) |
2666 | 5.89k | { |
2667 | 5.89k | return progressive_context_new_ex(Compressor, 0); |
2668 | 5.89k | } |
2669 | | |
2670 | | PROGRESSIVE_CONTEXT* progressive_context_new_ex(BOOL Compressor, UINT32 ThreadingFlags) |
2671 | 5.89k | { |
2672 | 5.89k | PROGRESSIVE_CONTEXT* progressive = |
2673 | 5.89k | (PROGRESSIVE_CONTEXT*)winpr_aligned_calloc(1, sizeof(PROGRESSIVE_CONTEXT), 32); |
2674 | | |
2675 | 5.89k | if (!progressive) |
2676 | 0 | return nullptr; |
2677 | | |
2678 | 5.89k | progressive->Compressor = Compressor; |
2679 | 5.89k | progressive->quantProgValFull.quality = 100; |
2680 | 5.89k | progressive->log = WLog_Get(TAG); |
2681 | 5.89k | if (!progressive->log) |
2682 | 0 | goto fail; |
2683 | 5.89k | progressive->rfx_context = rfx_context_new_ex(Compressor, ThreadingFlags); |
2684 | 5.89k | if (!progressive->rfx_context) |
2685 | 0 | goto fail; |
2686 | 5.89k | progressive->buffer = Stream_New(nullptr, 1024); |
2687 | 5.89k | if (!progressive->buffer) |
2688 | 0 | goto fail; |
2689 | 5.89k | progressive->rects = Stream_New(nullptr, 1024); |
2690 | 5.89k | if (!progressive->rects) |
2691 | 0 | goto fail; |
2692 | 5.89k | progressive->bufferPool = BufferPool_New(TRUE, (8192LL + 32LL) * 3LL, 16); |
2693 | 5.89k | if (!progressive->bufferPool) |
2694 | 0 | goto fail; |
2695 | 5.89k | progressive->SurfaceContexts = HashTable_New(TRUE); |
2696 | 5.89k | if (!progressive->SurfaceContexts) |
2697 | 0 | goto fail; |
2698 | | |
2699 | 5.89k | { |
2700 | 5.89k | wObject* obj = HashTable_ValueObject(progressive->SurfaceContexts); |
2701 | 5.89k | WINPR_ASSERT(obj); |
2702 | 5.89k | obj->fnObjectFree = progressive_surface_context_free; |
2703 | 5.89k | } |
2704 | 5.89k | return progressive; |
2705 | 0 | fail: |
2706 | 0 | WINPR_PRAGMA_DIAG_PUSH |
2707 | 0 | WINPR_PRAGMA_DIAG_IGNORED_MISMATCHED_DEALLOC |
2708 | 0 | progressive_context_free(progressive); |
2709 | 0 | WINPR_PRAGMA_DIAG_POP |
2710 | 0 | return nullptr; |
2711 | 5.89k | } |
2712 | | |
2713 | | void progressive_context_free(PROGRESSIVE_CONTEXT* progressive) |
2714 | 5.89k | { |
2715 | 5.89k | if (!progressive) |
2716 | 0 | return; |
2717 | | |
2718 | 5.89k | Stream_Free(progressive->buffer, TRUE); |
2719 | 5.89k | Stream_Free(progressive->rects, TRUE); |
2720 | 5.89k | rfx_context_free(progressive->rfx_context); |
2721 | | |
2722 | 5.89k | BufferPool_Free(progressive->bufferPool); |
2723 | 5.89k | HashTable_Free(progressive->SurfaceContexts); |
2724 | | |
2725 | 5.89k | winpr_aligned_free(progressive); |
2726 | 5.89k | } |