/src/FreeRDP/libfreerdp/codec/nsc.c
Line | Count | Source |
1 | | /** |
2 | | * FreeRDP: A Remote Desktop Protocol Implementation |
3 | | * NSCodec Codec |
4 | | * |
5 | | * Copyright 2011 Samsung, Author Jiten Pathy |
6 | | * Copyright 2012 Vic Lee |
7 | | * Copyright 2016 Armin Novak <armin.novak@thincast.com> |
8 | | * Copyright 2016 Thincast Technologies GmbH |
9 | | * |
10 | | * Licensed under the Apache License, Version 2.0 (the "License"); |
11 | | * you may not use this file except in compliance with the License. |
12 | | * You may obtain a copy of the License at |
13 | | * |
14 | | * http://www.apache.org/licenses/LICENSE-2.0 |
15 | | * |
16 | | * Unless required by applicable law or agreed to in writing, software |
17 | | * distributed under the License is distributed on an "AS IS" BASIS, |
18 | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
19 | | * See the License for the specific language governing permissions and |
20 | | * limitations under the License. |
21 | | */ |
22 | | |
23 | | #include <freerdp/config.h> |
24 | | |
25 | | #include <stdio.h> |
26 | | #include <stdlib.h> |
27 | | #include <string.h> |
28 | | |
29 | | #include <winpr/assert.h> |
30 | | #include <winpr/cast.h> |
31 | | #include <winpr/crt.h> |
32 | | |
33 | | #include <freerdp/codec/nsc.h> |
34 | | #include <freerdp/codec/color.h> |
35 | | |
36 | | #include "nsc_types.h" |
37 | | #include "nsc_encode.h" |
38 | | |
39 | | #include "sse/nsc_sse2.h" |
40 | | #include "neon/nsc_neon.h" |
41 | | |
42 | | #include <freerdp/log.h> |
43 | | |
44 | | static BOOL nsc_decode(NSC_CONTEXT* WINPR_RESTRICT context) |
45 | 779 | { |
46 | 779 | size_t pos = 0; |
47 | | |
48 | 779 | if (!context) |
49 | 0 | return FALSE; |
50 | | |
51 | 779 | const UINT16 rw = ROUND_UP_TO(context->width, 8); |
52 | 779 | WINPR_ASSERT(context->ColorLossLevel >= 1); |
53 | 779 | const BYTE shift = WINPR_ASSERTING_INT_CAST(BYTE, context->ColorLossLevel - |
54 | 779 | 1); /* colorloss recovery + YCoCg shift */ |
55 | 779 | BYTE* bmpdata = context->BitmapData; |
56 | | |
57 | 779 | if (!bmpdata) |
58 | 0 | return FALSE; |
59 | | |
60 | 15.8k | for (size_t y = 0; y < context->height; y++) |
61 | 15.0k | { |
62 | 15.0k | const BYTE* yplane = nullptr; |
63 | 15.0k | const BYTE* coplane = nullptr; |
64 | 15.0k | const BYTE* cgplane = nullptr; |
65 | 15.0k | const BYTE* aplane = context->priv->PlaneBuffers[3] + y * context->width; /* A */ |
66 | | |
67 | 15.0k | if (context->ChromaSubsamplingLevel) |
68 | 11.5k | { |
69 | 11.5k | yplane = context->priv->PlaneBuffers[0] + y * rw; /* Y */ |
70 | 11.5k | coplane = context->priv->PlaneBuffers[1] + (y >> 1) * (rw >> 1); /* Co, supersampled */ |
71 | 11.5k | cgplane = context->priv->PlaneBuffers[2] + (y >> 1) * (rw >> 1); /* Cg, supersampled */ |
72 | 11.5k | } |
73 | 3.52k | else |
74 | 3.52k | { |
75 | 3.52k | yplane = context->priv->PlaneBuffers[0] + y * context->width; /* Y */ |
76 | 3.52k | coplane = context->priv->PlaneBuffers[1] + y * context->width; /* Co */ |
77 | 3.52k | cgplane = context->priv->PlaneBuffers[2] + y * context->width; /* Cg */ |
78 | 3.52k | } |
79 | | |
80 | 622k | for (UINT32 x = 0; x < context->width; x++) |
81 | 607k | { |
82 | 607k | INT16 y_val = (INT16)*yplane; |
83 | 607k | INT16 co_val = (INT16)(INT8)(((INT16)*coplane) << shift); |
84 | 607k | INT16 cg_val = (INT16)(INT8)(((INT16)*cgplane) << shift); |
85 | 607k | INT16 r_val = WINPR_ASSERTING_INT_CAST(int16_t, y_val + co_val - cg_val); |
86 | 607k | INT16 g_val = WINPR_ASSERTING_INT_CAST(int16_t, y_val + cg_val); |
87 | 607k | INT16 b_val = WINPR_ASSERTING_INT_CAST(int16_t, y_val - co_val - cg_val); |
88 | | |
89 | 607k | if (pos + 4 > context->BitmapDataLength) |
90 | 0 | return FALSE; |
91 | | |
92 | 607k | pos += 4; |
93 | 607k | *bmpdata++ = MINMAX(b_val, 0, 0xFF); |
94 | 607k | *bmpdata++ = MINMAX(g_val, 0, 0xFF); |
95 | 607k | *bmpdata++ = MINMAX(r_val, 0, 0xFF); |
96 | 607k | *bmpdata++ = *aplane; |
97 | 607k | yplane++; |
98 | 607k | coplane += (context->ChromaSubsamplingLevel ? x % 2 : 1); |
99 | 607k | cgplane += (context->ChromaSubsamplingLevel ? x % 2 : 1); |
100 | 607k | aplane++; |
101 | 607k | } |
102 | 15.0k | } |
103 | | |
104 | 779 | return TRUE; |
105 | 779 | } |
106 | | |
107 | | static BOOL nsc_rle_decode(const BYTE* WINPR_RESTRICT in, size_t inSize, BYTE* WINPR_RESTRICT out, |
108 | | UINT32 outSize, UINT32 originalSize) |
109 | 1.46k | { |
110 | 1.46k | UINT32 left = originalSize; |
111 | | |
112 | 38.1k | while (left > 4) |
113 | 37.5k | { |
114 | 37.5k | if (inSize < 1) |
115 | 99 | return FALSE; |
116 | 37.4k | inSize--; |
117 | | |
118 | 37.4k | const BYTE value = *in++; |
119 | 37.4k | UINT32 len = 0; |
120 | | |
121 | 37.4k | if (left == 5) |
122 | 359 | { |
123 | 359 | if (outSize < 1) |
124 | 0 | return FALSE; |
125 | | |
126 | 359 | outSize--; |
127 | 359 | *out++ = value; |
128 | 359 | left--; |
129 | 359 | } |
130 | 37.1k | else if (inSize < 1) |
131 | 263 | return FALSE; |
132 | 36.8k | else if (value == *in) |
133 | 19.8k | { |
134 | 19.8k | inSize--; |
135 | 19.8k | in++; |
136 | | |
137 | 19.8k | if (inSize < 1) |
138 | 59 | return FALSE; |
139 | 19.7k | else if (*in < 0xFF) |
140 | 18.9k | { |
141 | 18.9k | inSize--; |
142 | 18.9k | len = (UINT32)*in++; |
143 | 18.9k | len += 2; |
144 | 18.9k | } |
145 | 841 | else |
146 | 841 | { |
147 | 841 | if (inSize < 5) |
148 | 38 | return FALSE; |
149 | 803 | inSize -= 5; |
150 | 803 | in++; |
151 | 803 | len = ((UINT32)(*in++)); |
152 | 803 | len |= ((UINT32)(*in++)) << 8U; |
153 | 803 | len |= ((UINT32)(*in++)) << 16U; |
154 | 803 | len |= ((UINT32)(*in++)) << 24U; |
155 | 803 | } |
156 | | |
157 | 19.7k | if ((outSize < len) || (left < len)) |
158 | 411 | return FALSE; |
159 | | |
160 | 19.3k | outSize -= len; |
161 | 19.3k | FillMemory(out, len, value); |
162 | 19.3k | out += len; |
163 | 19.3k | left -= len; |
164 | 19.3k | } |
165 | 17.0k | else |
166 | 17.0k | { |
167 | 17.0k | if (outSize < 1) |
168 | 0 | return FALSE; |
169 | | |
170 | 17.0k | outSize--; |
171 | 17.0k | *out++ = value; |
172 | 17.0k | left--; |
173 | 17.0k | } |
174 | 37.4k | } |
175 | | |
176 | 592 | if ((outSize < 4) || (left < 4)) |
177 | 49 | return FALSE; |
178 | | |
179 | 543 | if (inSize < 4) |
180 | 59 | return FALSE; |
181 | 484 | memcpy(out, in, 4); |
182 | 484 | return TRUE; |
183 | 543 | } |
184 | | |
185 | | static BOOL nsc_rle_decompress_data(NSC_CONTEXT* WINPR_RESTRICT context) |
186 | 1.75k | { |
187 | 1.75k | if (!context) |
188 | 0 | return FALSE; |
189 | | |
190 | 1.75k | const BYTE* rle = context->Planes; |
191 | 1.75k | size_t rleSize = context->PlanesSize; |
192 | 1.75k | WINPR_ASSERT(rle); |
193 | | |
194 | 5.88k | for (size_t i = 0; i < 4; i++) |
195 | 5.10k | { |
196 | 5.10k | const UINT32 originalSize = context->OrgByteCount[i]; |
197 | 5.10k | const UINT32 planeSize = context->PlaneByteCount[i]; |
198 | | |
199 | 5.10k | if (rleSize < planeSize) |
200 | 0 | return FALSE; |
201 | | |
202 | 5.10k | if (planeSize == 0) |
203 | 2.75k | { |
204 | 2.75k | if (context->priv->PlaneBuffersLength < originalSize) |
205 | 0 | return FALSE; |
206 | | |
207 | 2.75k | FillMemory(context->priv->PlaneBuffers[i], originalSize, 0xFF); |
208 | 2.75k | } |
209 | 2.35k | else if (planeSize < originalSize) |
210 | 1.46k | { |
211 | 1.46k | if (!nsc_rle_decode(rle, rleSize, context->priv->PlaneBuffers[i], |
212 | 1.46k | context->priv->PlaneBuffersLength, originalSize)) |
213 | 978 | return FALSE; |
214 | 1.46k | } |
215 | 890 | else |
216 | 890 | { |
217 | 890 | if (context->priv->PlaneBuffersLength < originalSize) |
218 | 0 | return FALSE; |
219 | | |
220 | 890 | if (rleSize < originalSize) |
221 | 0 | return FALSE; |
222 | | |
223 | 890 | CopyMemory(context->priv->PlaneBuffers[i], rle, originalSize); |
224 | 890 | } |
225 | | |
226 | 4.12k | rle += planeSize; |
227 | 4.12k | rleSize -= planeSize; |
228 | 4.12k | } |
229 | | |
230 | 779 | return TRUE; |
231 | 1.75k | } |
232 | | |
233 | | static BOOL nsc_stream_initialize(NSC_CONTEXT* WINPR_RESTRICT context, wStream* WINPR_RESTRICT s) |
234 | 2.25k | { |
235 | 2.25k | WINPR_ASSERT(context); |
236 | 2.25k | WINPR_ASSERT(context->priv); |
237 | 2.25k | if (!Stream_CheckAndLogRequiredLengthWLog(context->priv->log, s, 20)) |
238 | 85 | return FALSE; |
239 | | |
240 | 2.17k | size_t total = 0; |
241 | 10.8k | for (size_t i = 0; i < 4; i++) |
242 | 8.69k | { |
243 | 8.69k | Stream_Read_UINT32(s, context->PlaneByteCount[i]); |
244 | 8.69k | total += context->PlaneByteCount[i]; |
245 | 8.69k | } |
246 | | |
247 | 2.17k | Stream_Read_UINT8(s, context->ColorLossLevel); /* ColorLossLevel (1 byte) */ |
248 | 2.17k | if ((context->ColorLossLevel < 1) || (context->ColorLossLevel > 7)) |
249 | 108 | { |
250 | 108 | WLog_Print(context->priv->log, WLOG_ERROR, |
251 | 108 | "ColorLossLevel=%" PRIu8 " out of range, must be [1,7] inclusive", |
252 | 108 | context->ColorLossLevel); |
253 | 108 | return FALSE; |
254 | 108 | } |
255 | 2.06k | Stream_Read_UINT8(s, context->ChromaSubsamplingLevel); /* ChromaSubsamplingLevel (1 byte) */ |
256 | 2.06k | Stream_Seek(s, 2); /* Reserved (2 bytes) */ |
257 | 2.06k | context->Planes = Stream_Pointer(s); |
258 | 2.06k | context->PlanesSize = total; |
259 | 2.06k | return Stream_CheckAndLogRequiredLengthWLog(context->priv->log, s, total); |
260 | 2.17k | } |
261 | | |
262 | | static BOOL nsc_context_initialize(NSC_CONTEXT* WINPR_RESTRICT context, wStream* WINPR_RESTRICT s) |
263 | 2.25k | { |
264 | 2.25k | if (!nsc_stream_initialize(context, s)) |
265 | 502 | return FALSE; |
266 | | |
267 | 1.75k | const size_t blength = 4ull * context->width * context->height; |
268 | | |
269 | 1.75k | if (!context->BitmapData || (blength > context->BitmapDataLength)) |
270 | 1.75k | { |
271 | 1.75k | void* tmp = winpr_aligned_recalloc(context->BitmapData, blength + 16, sizeof(BYTE), 32); |
272 | | |
273 | 1.75k | if (!tmp) |
274 | 0 | return FALSE; |
275 | | |
276 | 1.75k | context->BitmapData = tmp; |
277 | 1.75k | context->BitmapDataLength = blength; |
278 | 1.75k | } |
279 | | |
280 | 1.75k | const UINT32 tempWidth = ROUND_UP_TO(context->width, 8); |
281 | 1.75k | const UINT32 tempHeight = ROUND_UP_TO(context->height, 2); |
282 | | /* The maximum length a decoded plane can reach in all cases */ |
283 | 1.75k | const size_t plength = 1ull * tempWidth * tempHeight; |
284 | 1.75k | if (plength > UINT32_MAX) |
285 | 0 | return FALSE; |
286 | | |
287 | 1.75k | if (plength > context->priv->PlaneBuffersLength) |
288 | 1.73k | { |
289 | 8.68k | for (size_t i = 0; i < 4; i++) |
290 | 6.94k | { |
291 | 6.94k | void* tmp = (BYTE*)winpr_aligned_recalloc(context->priv->PlaneBuffers[i], plength, |
292 | 6.94k | sizeof(BYTE), 32); |
293 | | |
294 | 6.94k | if (!tmp) |
295 | 0 | return FALSE; |
296 | | |
297 | 6.94k | context->priv->PlaneBuffers[i] = tmp; |
298 | 6.94k | } |
299 | | |
300 | 1.73k | context->priv->PlaneBuffersLength = (UINT32)plength; |
301 | 1.73k | } |
302 | | |
303 | 8.78k | for (size_t i = 0; i < 4; i++) |
304 | 7.02k | context->OrgByteCount[i] = context->width * context->height; |
305 | | |
306 | 1.75k | if (context->ChromaSubsamplingLevel) |
307 | 1.05k | { |
308 | 1.05k | context->OrgByteCount[0] = tempWidth * context->height; |
309 | 1.05k | context->OrgByteCount[1] = (tempWidth >> 1) * (tempHeight >> 1); |
310 | 1.05k | context->OrgByteCount[2] = context->OrgByteCount[1]; |
311 | 1.05k | } |
312 | | |
313 | 1.75k | return TRUE; |
314 | 1.75k | } |
315 | | |
316 | | static void nsc_profiler_print(NSC_CONTEXT_PRIV* WINPR_RESTRICT priv) |
317 | 18.5k | { |
318 | 18.5k | WINPR_UNUSED(priv); |
319 | | |
320 | 18.5k | PROFILER_PRINT_HEADER |
321 | 18.5k | PROFILER_PRINT(priv->prof_nsc_rle_decompress_data) |
322 | 18.5k | PROFILER_PRINT(priv->prof_nsc_decode) |
323 | 18.5k | PROFILER_PRINT(priv->prof_nsc_rle_compress_data) |
324 | 18.5k | PROFILER_PRINT(priv->prof_nsc_encode) |
325 | 18.5k | PROFILER_PRINT_FOOTER |
326 | 18.5k | } |
327 | | |
328 | | BOOL nsc_context_reset(NSC_CONTEXT* WINPR_RESTRICT context, UINT32 width, UINT32 height) |
329 | 0 | { |
330 | 0 | if (!context) |
331 | 0 | return FALSE; |
332 | | |
333 | 0 | if ((width > UINT16_MAX) || (height > UINT16_MAX)) |
334 | 0 | return FALSE; |
335 | | |
336 | 0 | context->width = (UINT16)width; |
337 | 0 | context->height = (UINT16)height; |
338 | 0 | return TRUE; |
339 | 0 | } |
340 | | |
341 | | NSC_CONTEXT* nsc_context_new(void) |
342 | 18.5k | { |
343 | 18.5k | NSC_CONTEXT* context = (NSC_CONTEXT*)winpr_aligned_calloc(1, sizeof(NSC_CONTEXT), 32); |
344 | | |
345 | 18.5k | if (!context) |
346 | 0 | return nullptr; |
347 | | |
348 | 18.5k | context->priv = (NSC_CONTEXT_PRIV*)winpr_aligned_calloc(1, sizeof(NSC_CONTEXT_PRIV), 32); |
349 | | |
350 | 18.5k | if (!context->priv) |
351 | 0 | goto error; |
352 | | |
353 | 18.5k | context->priv->log = WLog_Get("com.freerdp.codec.nsc"); |
354 | 18.5k | context->BitmapData = nullptr; |
355 | 18.5k | context->decode = nsc_decode; |
356 | 18.5k | context->encode = nsc_encode; |
357 | | |
358 | 18.5k | PROFILER_CREATE(context->priv->prof_nsc_rle_decompress_data, "nsc_rle_decompress_data") |
359 | 18.5k | PROFILER_CREATE(context->priv->prof_nsc_decode, "nsc_decode") |
360 | 18.5k | PROFILER_CREATE(context->priv->prof_nsc_rle_compress_data, "nsc_rle_compress_data") |
361 | 18.5k | PROFILER_CREATE(context->priv->prof_nsc_encode, "nsc_encode") |
362 | | /* Default encoding parameters */ |
363 | 18.5k | context->ColorLossLevel = 3; |
364 | 18.5k | context->ChromaSubsamplingLevel = 1; |
365 | | /* init optimized methods */ |
366 | 18.5k | nsc_init_sse2(context); |
367 | 18.5k | nsc_init_neon(context); |
368 | 18.5k | return context; |
369 | 0 | error: |
370 | 0 | WINPR_PRAGMA_DIAG_PUSH |
371 | 0 | WINPR_PRAGMA_DIAG_IGNORED_MISMATCHED_DEALLOC |
372 | 0 | nsc_context_free(context); |
373 | 0 | WINPR_PRAGMA_DIAG_POP |
374 | 0 | return nullptr; |
375 | 18.5k | } |
376 | | |
377 | | void nsc_context_planebuffers_free(NSC_CONTEXT_PRIV* priv) |
378 | 18.5k | { |
379 | 18.5k | if (!priv) |
380 | 0 | return; |
381 | | |
382 | 111k | for (size_t i = 0; i < ARRAYSIZE(priv->PlaneBuffers); i++) |
383 | 92.9k | { |
384 | 92.9k | BYTE* cur = priv->PlaneBuffers[i]; |
385 | 92.9k | priv->PlaneBuffers[i] = nullptr; |
386 | 92.9k | winpr_aligned_free(cur); |
387 | 92.9k | } |
388 | | |
389 | 18.5k | priv->PlaneBuffersLength = 0; |
390 | 18.5k | } |
391 | | |
392 | | void nsc_context_free(NSC_CONTEXT* context) |
393 | 18.5k | { |
394 | 18.5k | if (!context) |
395 | 0 | return; |
396 | | |
397 | 18.5k | if (context->priv) |
398 | 18.5k | { |
399 | 18.5k | nsc_context_planebuffers_free(context->priv); |
400 | | |
401 | 18.5k | nsc_profiler_print(context->priv); |
402 | 18.5k | PROFILER_FREE(context->priv->prof_nsc_rle_decompress_data) |
403 | 18.5k | PROFILER_FREE(context->priv->prof_nsc_decode) |
404 | 18.5k | PROFILER_FREE(context->priv->prof_nsc_rle_compress_data) |
405 | 18.5k | PROFILER_FREE(context->priv->prof_nsc_encode) |
406 | 18.5k | winpr_aligned_free(context->priv); |
407 | 18.5k | } |
408 | | |
409 | 18.5k | winpr_aligned_free(context->BitmapData); |
410 | 18.5k | winpr_aligned_free(context); |
411 | 18.5k | } |
412 | | |
413 | | #if defined(WITH_FREERDP_DEPRECATED) |
414 | | BOOL nsc_context_set_pixel_format(NSC_CONTEXT* context, UINT32 pixel_format) |
415 | | { |
416 | | return nsc_context_set_parameters(context, NSC_COLOR_FORMAT, pixel_format); |
417 | | } |
418 | | #endif |
419 | | |
420 | | BOOL nsc_context_set_parameters(NSC_CONTEXT* WINPR_RESTRICT context, NSC_PARAMETER what, |
421 | | UINT32 value) |
422 | 34.0k | { |
423 | 34.0k | if (!context) |
424 | 0 | return FALSE; |
425 | | |
426 | 34.0k | switch (what) |
427 | 34.0k | { |
428 | 0 | case NSC_COLOR_LOSS_LEVEL: |
429 | 0 | context->ColorLossLevel = value; |
430 | 0 | break; |
431 | 0 | case NSC_ALLOW_SUBSAMPLING: |
432 | 0 | context->ChromaSubsamplingLevel = value; |
433 | 0 | break; |
434 | 0 | case NSC_DYNAMIC_COLOR_FIDELITY: |
435 | 0 | context->DynamicColorFidelity = value != 0; |
436 | 0 | break; |
437 | 34.0k | case NSC_COLOR_FORMAT: |
438 | 34.0k | context->format = value; |
439 | 34.0k | break; |
440 | 0 | default: |
441 | 0 | return FALSE; |
442 | 34.0k | } |
443 | 34.0k | return TRUE; |
444 | 34.0k | } |
445 | | |
446 | | BOOL nsc_process_message(NSC_CONTEXT* WINPR_RESTRICT context, UINT16 bpp, UINT32 width, |
447 | | UINT32 height, const BYTE* data, UINT32 length, |
448 | | BYTE* WINPR_RESTRICT pDstData, UINT32 DstFormat, UINT32 nDstStride, |
449 | | UINT32 nXDst, UINT32 nYDst, UINT32 nWidth, UINT32 nHeight, UINT32 flip) |
450 | 2.25k | { |
451 | 2.25k | if (!context) |
452 | 0 | return FALSE; |
453 | | |
454 | 2.25k | WINPR_ASSERT(context->priv); |
455 | | |
456 | 2.25k | wStream sbuffer = WINPR_C_ARRAY_INIT; |
457 | 2.25k | BOOL ret = 0; |
458 | 2.25k | if (!data || !pDstData) |
459 | 0 | { |
460 | 0 | WLog_Print(context->priv->log, WLOG_ERROR, "Invalid argument: data=%p, pDstData=%p", |
461 | 0 | (const void*)data, (void*)pDstData); |
462 | 0 | return FALSE; |
463 | 0 | } |
464 | | |
465 | 2.25k | if (nXDst > nWidth) |
466 | 0 | { |
467 | 0 | WLog_Print(context->priv->log, WLOG_ERROR, "nXDst %" PRIu32 " > nWidth %" PRIu32, nXDst, |
468 | 0 | nWidth); |
469 | 0 | return FALSE; |
470 | 0 | } |
471 | 2.25k | if (nYDst > nHeight) |
472 | 0 | { |
473 | 0 | WLog_Print(context->priv->log, WLOG_ERROR, "nYDst %" PRIu32 " > nHeight %" PRIu32, nYDst, |
474 | 0 | nHeight); |
475 | 0 | return FALSE; |
476 | 0 | } |
477 | | |
478 | 2.25k | wStream* s = Stream_StaticConstInit(&sbuffer, data, length); |
479 | 2.25k | if (!s) |
480 | 0 | return FALSE; |
481 | | |
482 | 2.25k | const UINT32 minStride = nWidth * FreeRDPGetBytesPerPixel(DstFormat); |
483 | 2.25k | if (nDstStride == 0) |
484 | 696 | nDstStride = minStride; |
485 | 2.25k | if (nDstStride < minStride) |
486 | 0 | { |
487 | 0 | WLog_Print(context->priv->log, WLOG_ERROR, |
488 | 0 | "nDstStride %" PRIu32 " < minimum stride %" PRIu32, nDstStride, minStride); |
489 | 0 | return FALSE; |
490 | 0 | } |
491 | | |
492 | 2.25k | switch (bpp) |
493 | 2.25k | { |
494 | 1.21k | case 32: |
495 | 1.21k | context->format = PIXEL_FORMAT_BGRA32; |
496 | 1.21k | break; |
497 | | |
498 | 521 | case 24: |
499 | 521 | context->format = PIXEL_FORMAT_BGR24; |
500 | 521 | break; |
501 | | |
502 | 521 | case 16: |
503 | 521 | context->format = PIXEL_FORMAT_BGR16; |
504 | 521 | break; |
505 | | |
506 | 0 | case 8: |
507 | 0 | context->format = PIXEL_FORMAT_RGB8; |
508 | 0 | break; |
509 | | |
510 | 0 | case 4: |
511 | 0 | context->format = PIXEL_FORMAT_A4; |
512 | 0 | break; |
513 | | |
514 | 0 | default: |
515 | 0 | return FALSE; |
516 | 2.25k | } |
517 | | |
518 | 2.25k | context->width = WINPR_ASSERTING_INT_CAST(UINT16, width); |
519 | 2.25k | context->height = WINPR_ASSERTING_INT_CAST(UINT16, height); |
520 | 2.25k | ret = nsc_context_initialize(context, s); |
521 | | |
522 | 2.25k | if (!ret) |
523 | 502 | return FALSE; |
524 | | |
525 | | /* RLE decode */ |
526 | 1.75k | { |
527 | 1.75k | BOOL rc = 0; |
528 | 1.75k | PROFILER_ENTER(context->priv->prof_nsc_rle_decompress_data) |
529 | 1.75k | rc = nsc_rle_decompress_data(context); |
530 | 1.75k | PROFILER_EXIT(context->priv->prof_nsc_rle_decompress_data) |
531 | | |
532 | 1.75k | if (!rc) |
533 | 978 | return FALSE; |
534 | 1.75k | } |
535 | | /* Colorloss recover, Chroma supersample and AYCoCg to ARGB Conversion in one step */ |
536 | 779 | { |
537 | 779 | BOOL rc = 0; |
538 | 779 | PROFILER_ENTER(context->priv->prof_nsc_decode) |
539 | 779 | rc = context->decode(context); |
540 | 779 | PROFILER_EXIT(context->priv->prof_nsc_decode) |
541 | | |
542 | 779 | if (!rc) |
543 | 0 | return FALSE; |
544 | 779 | } |
545 | | |
546 | 779 | uint32_t cwidth = width; |
547 | 779 | if (1ull * nXDst + width > nWidth) |
548 | 0 | cwidth = nWidth - nXDst; |
549 | | |
550 | 779 | uint32_t cheight = height; |
551 | 779 | if (1ull * nYDst + height > nHeight) |
552 | 0 | cheight = nHeight - nYDst; |
553 | | |
554 | 779 | return (freerdp_image_copy_no_overlap(pDstData, DstFormat, nDstStride, nXDst, nYDst, cwidth, |
555 | 779 | cheight, context->BitmapData, PIXEL_FORMAT_BGRA32, 0, 0, |
556 | 779 | 0, nullptr, flip)); |
557 | 779 | } |