22#include <freerdp/config.h>
24#include <winpr/assert.h>
25#include <winpr/cast.h>
27#include <winpr/print.h>
28#include <winpr/bitstream.h>
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>
36#include "rfx_differential.h"
37#include "rfx_quantization.h"
40#include "rfx_constants.h"
42#include "progressive.h"
44#define TAG FREERDP_TAG("codec.progressive")
57} RFX_PROGRESSIVE_UPGRADE_STATE;
60progressive_component_codec_quant_read(
wStream* WINPR_RESTRICT s,
64 Stream_Read_UINT8(s, b);
65 quantVal->LL3 = b & 0x0F;
66 quantVal->HL3 = b >> 4;
67 Stream_Read_UINT8(s, b);
68 quantVal->LH3 = b & 0x0F;
69 quantVal->HH3 = b >> 4;
70 Stream_Read_UINT8(s, b);
71 quantVal->HL2 = b & 0x0F;
72 quantVal->LH2 = b >> 4;
73 Stream_Read_UINT8(s, b);
74 quantVal->HH2 = b & 0x0F;
75 quantVal->HL1 = b >> 4;
76 Stream_Read_UINT8(s, b);
77 quantVal->LH1 = b & 0x0F;
78 quantVal->HH1 = b >> 4;
85 dst->HL1 = q1->HL1 + q2->HL1;
86 dst->LH1 = q1->LH1 + q2->LH1;
87 dst->HH1 = q1->HH1 + q2->HH1;
88 dst->HL2 = q1->HL2 + q2->HL2;
89 dst->LH2 = q1->LH2 + q2->LH2;
90 dst->HH2 = q1->HH2 + q2->HH2;
91 dst->HL3 = q1->HL3 + q2->HL3;
92 dst->LH3 = q1->LH3 + q2->LH3;
93 dst->HH3 = q1->HH3 + q2->HH3;
94 dst->LL3 = q1->LL3 + q2->LL3;
147 if (q1->HH1 < q2->HL1)
149 dst->HL1 = q1->HL1 - q2->HL1;
151 if (q1->LH1 < q2->LH1)
153 dst->LH1 = q1->LH1 - q2->LH1;
155 if (q1->HH1 < q2->HH1)
157 dst->HH1 = q1->HH1 - q2->HH1;
159 if (q1->HL2 < q2->HL2)
161 dst->HL2 = q1->HL2 - q2->HL2;
163 if (q1->LH2 < q2->LH2)
165 dst->LH2 = q1->LH2 - q2->LH2;
167 if (q1->HH2 < q2->HH2)
169 dst->HH2 = q1->HH2 - q2->HH2;
171 if (q1->HL3 < q2->HL3)
173 dst->HL3 = q1->HL3 - q2->HL3;
175 if (q1->LH3 < q2->LH3)
177 dst->LH3 = q1->LH3 - q2->LH3;
179 if (q1->HH3 < q2->HH3)
181 dst->HH3 = q1->HH3 - q2->HH3;
183 if (q1->LL3 < q2->LL3)
185 dst->LL3 = q1->LL3 - q2->LL3;
266 if (q1->HL1 != q2->HL1)
269 if (q1->LH1 != q2->LH1)
272 if (q1->HH1 != q2->HH1)
275 if (q1->HL2 != q2->HL2)
278 if (q1->LH2 != q2->LH2)
281 if (q1->HH2 != q2->HH2)
284 if (q1->HL3 != q2->HL3)
287 if (q1->LH3 != q2->LH3)
290 if (q1->HH3 != q2->HH3)
293 if (q1->LL3 != q2->LL3)
299static inline BOOL progressive_set_surface_data(PROGRESSIVE_CONTEXT* WINPR_RESTRICT progressive,
304 key = ((ULONG_PTR)surfaceId) + 1;
307 return HashTable_Insert(progressive->SurfaceContexts, (
void*)key, pData);
309 HashTable_Remove(progressive->SurfaceContexts, (
void*)key);
314progressive_get_surface_data(PROGRESSIVE_CONTEXT* WINPR_RESTRICT progressive, UINT16 surfaceId)
316 void* key = (
void*)(((ULONG_PTR)surfaceId) + 1);
321 return HashTable_GetItemValue(progressive->SurfaceContexts, key);
328 winpr_aligned_free(tile->sign);
329 winpr_aligned_free(tile->current);
330 winpr_aligned_free(tile->data);
331 winpr_aligned_free(tile);
335static void progressive_surface_context_free(
void* ptr)
344 for (
size_t index = 0; index < surface->tilesSize; index++)
347 progressive_tile_free(tile);
351 winpr_aligned_free((
void*)surface->tiles);
352 winpr_aligned_free(surface->updatedTileIndices);
353 winpr_aligned_free(surface);
364 tile->stride = 4 * tile->width;
367 const size_t dataLen = 1ull * tile->stride * tile->height;
368 tile->data = (BYTE*)winpr_aligned_malloc(dataLen, 16);
371 memset(tile->data, 0xFF, dataLen);
375 const size_t signLen = (8192ULL + 32ULL) * 3ULL;
376 tile->sign = (BYTE*)winpr_aligned_malloc(signLen, 16);
383 const size_t currentLen = (8192ULL + 32ULL) * 3ULL;
384 tile->current = (BYTE*)winpr_aligned_malloc(currentLen, 16);
392 progressive_tile_free(tile);
401 WINPR_ASSERT(surface);
402 WINPR_ASSERT(surface->gridSize > 0);
406 oldIndex = surface->gridSize;
407 while (surface->gridSize < min)
408 surface->gridSize += 1024;
411 void* tmp = winpr_aligned_recalloc((
void*)surface->tiles, surface->gridSize,
415 surface->tilesSize = surface->gridSize;
418 for (
size_t x = oldIndex; x < surface->tilesSize; x++)
420 surface->tiles[x] = progressive_tile_new();
421 if (!surface->tiles[x])
426 winpr_aligned_recalloc(surface->updatedTileIndices, surface->gridSize,
sizeof(UINT32), 32);
430 surface->updatedTileIndices = tmp;
444 surface->id = surfaceId;
445 surface->width = width;
446 surface->height = height;
447 surface->gridWidth = (width + (64 - width % 64)) / 64;
448 surface->gridHeight = (height + (64 - height % 64)) / 64;
449 surface->gridSize = surface->gridWidth * surface->gridHeight;
451 if (!progressive_allocate_tile_cache(surface, surface->gridSize))
453 progressive_surface_context_free(surface);
462 PROGRESSIVE_BLOCK_REGION* WINPR_RESTRICT region,
468 if (!surface || !tile)
471 zIdx = (tile->yIdx * surface->gridWidth) + tile->xIdx;
473 if (zIdx >= surface->tilesSize)
475 WLog_ERR(TAG,
"Invalid zIndex %" PRIuz, zIdx);
479 t = surface->tiles[zIdx];
481 t->blockType = tile->blockType;
482 t->blockLen = tile->blockLen;
483 t->quantIdxY = tile->quantIdxY;
484 t->quantIdxCb = tile->quantIdxCb;
485 t->quantIdxCr = tile->quantIdxCr;
486 t->xIdx = tile->xIdx;
487 t->yIdx = tile->yIdx;
488 t->flags = tile->flags;
489 t->quality = tile->quality;
490 t->x = tile->xIdx * t->width;
491 t->y = tile->yIdx * t->height;
495 t->ySrlLen = tile->ySrlLen;
496 t->yRawLen = tile->yRawLen;
497 t->cbSrlLen = tile->cbSrlLen;
498 t->cbRawLen = tile->cbRawLen;
499 t->crSrlLen = tile->crSrlLen;
500 t->crRawLen = tile->crRawLen;
501 t->ySrlData = tile->ySrlData;
502 t->yRawData = tile->yRawData;
503 t->cbSrlData = tile->cbSrlData;
504 t->cbRawData = tile->cbRawData;
505 t->crSrlData = tile->crSrlData;
506 t->crRawData = tile->crRawData;
510 t->yLen = tile->yLen;
511 t->cbLen = tile->cbLen;
512 t->crLen = tile->crLen;
513 t->tailLen = tile->tailLen;
514 t->yData = tile->yData;
515 t->cbData = tile->cbData;
516 t->crData = tile->crData;
517 t->tailData = tile->tailData;
520 if (region->usedTiles >= region->numTiles)
522 WLog_ERR(TAG,
"Invalid tile count, only expected %" PRIu16
", got %" PRIu16,
523 region->numTiles, region->usedTiles);
527 region->tiles[region->usedTiles++] = t;
530 if (surface->numUpdatedTiles >= surface->gridSize)
532 if (!progressive_allocate_tile_cache(surface, surface->numUpdatedTiles + 1))
536 surface->updatedTileIndices[surface->numUpdatedTiles++] = (UINT32)zIdx;
543INT32 progressive_create_surface_context(PROGRESSIVE_CONTEXT* WINPR_RESTRICT progressive,
544 UINT16 surfaceId, UINT32 width, UINT32 height)
550 surface = progressive_surface_context_new(surfaceId, width, height);
555 if (!progressive_set_surface_data(progressive, surfaceId, (
void*)surface))
557 progressive_surface_context_free(surface);
565int progressive_delete_surface_context(PROGRESSIVE_CONTEXT* WINPR_RESTRICT progressive,
568 progressive_set_surface_data(progressive, surfaceId,
nullptr);
591static int16_t clampi16(
int val)
600static 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)
608 for (
size_t i = 0; i < nDstCount; i++)
610 const INT16* pL = pLowBand;
611 const INT16* pH = pHighBand;
612 INT16* pX = pDstBand;
615 INT16 X0 = clampi16((int32_t)L0 - H0);
616 INT16 X2 = clampi16((int32_t)L0 - H0);
618 for (
size_t j = 0; j < (nHighCount - 1); j++)
624 X2 = clampi16((int32_t)L0 - ((H0 + H1) / 2));
625 X1 = clampi16((int32_t)((X0 + X2) / 2) + (2 * H0));
633 if (nLowCount <= (nHighCount + 1))
635 if (nLowCount <= nHighCount)
638 pX[1] = clampi16((int32_t)X2 + (2 * H0));
644 X0 = clampi16((int32_t)L0 - H0);
646 pX[1] = clampi16((int32_t)((X0 + X2) / 2) + (2 * H0));
654 X0 = clampi16((int32_t)L0 - (H0 / 2));
656 pX[1] = clampi16((int32_t)((X0 + X2) / 2) + (2 * H0));
660 pX[3] = clampi16((int32_t)(X0 + L0) / 2);
663 pLowBand += nLowStep;
664 pHighBand += nHighStep;
665 pDstBand += nDstStep;
669static 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)
674 for (
size_t i = 0; i < nDstCount; i++)
678 const INT16* pL = pLowBand;
679 const INT16* pH = pHighBand;
680 INT16* pX = pDstBand;
685 int16_t X0 = clampi16((int32_t)L0 - H0);
686 int16_t X2 = clampi16((int32_t)L0 - H0);
688 for (
size_t j = 0; j < (nHighCount - 1); j++)
694 X2 = clampi16((int32_t)L0 - ((H0 + H1) / 2));
695 X1 = clampi16((int32_t)((X0 + X2) / 2) + (2 * H0));
704 if (nLowCount <= (nHighCount + 1))
706 if (nLowCount <= nHighCount)
710 *pX = clampi16((int32_t)X2 + (2 * H0));
715 X0 = clampi16((int32_t)L0 - H0);
718 *pX = clampi16((int32_t)((X0 + X2) / 2) + (2 * H0));
727 X0 = clampi16((int32_t)L0 - (H0 / 2));
730 *pX = clampi16((int32_t)((X0 + X2) / 2) + (2 * H0));
735 *pX = clampi16((int32_t)(X0 + L0) / 2);
744static inline size_t progressive_rfx_get_band_l_count(
size_t level)
746 return (64 >> level) + 1;
749static inline size_t progressive_rfx_get_band_h_count(
size_t level)
752 return (64 >> 1) - 1;
754 return (64 + (1u << (level - 1))) >> level;
757static inline void progressive_rfx_dwt_2d_decode_block(INT16* WINPR_RESTRICT buffer,
758 INT16* WINPR_RESTRICT temp,
size_t level)
760 size_t nDstStepX = 0;
761 size_t nDstStepY = 0;
762 const INT16* WINPR_RESTRICT HL =
nullptr;
763 const INT16* WINPR_RESTRICT LH =
nullptr;
764 const INT16* WINPR_RESTRICT HH =
nullptr;
765 INT16* WINPR_RESTRICT LL =
nullptr;
766 INT16* WINPR_RESTRICT L =
nullptr;
767 INT16* WINPR_RESTRICT H =
nullptr;
768 INT16* WINPR_RESTRICT LLx =
nullptr;
770 const size_t nBandL = progressive_rfx_get_band_l_count(level);
771 const size_t nBandH = progressive_rfx_get_band_h_count(level);
774 HL = &buffer[offset];
775 offset += (nBandH * nBandL);
776 LH = &buffer[offset];
777 offset += (nBandL * nBandH);
778 HH = &buffer[offset];
779 offset += (nBandH * nBandH);
780 LL = &buffer[offset];
781 nDstStepX = (nBandL + nBandH);
782 nDstStepY = (nBandL + nBandH);
785 offset += (nBandL * nDstStepX);
790 progressive_rfx_idwt_x(LL, nBandL, HL, nBandH, L, nDstStepX, nBandL, nBandH, nBandL);
793 progressive_rfx_idwt_x(LH, nBandL, HH, nBandH, H, nDstStepX, nBandL, nBandH, nBandH);
796 progressive_rfx_idwt_y(L, nDstStepX, H, nDstStepX, LLx, nDstStepY, nBandL, nBandH,
800void rfx_dwt_2d_extrapolate_decode(INT16* WINPR_RESTRICT buffer, INT16* WINPR_RESTRICT dwt_buffer)
802 WINPR_ASSERT(buffer);
803 WINPR_ASSERT(dwt_buffer);
804 progressive_rfx_dwt_2d_decode_block(&buffer[3807], dwt_buffer, 3);
805 progressive_rfx_dwt_2d_decode_block(&buffer[3007], dwt_buffer, 2);
806 progressive_rfx_dwt_2d_decode_block(&buffer[0], dwt_buffer, 1);
809static 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)
816 if (!progressive || !buffer || !current)
819 const uint32_t belements = 4096;
820 const uint32_t bsize = belements *
sizeof(INT16);
822 memcpy(buffer, current, bsize);
824 memcpy(current, buffer, bsize);
827 const pstatus_t rc = prims->
add_16s_inplace(buffer, current, belements);
828 if (rc != PRIMITIVES_SUCCESS)
832 INT16* temp = (INT16*)BufferPool_Take(progressive->bufferPool, -1);
839 progressive->rfx_context->dwt_2d_decode(buffer, temp);
843 WINPR_ASSERT(progressive->rfx_context->dwt_2d_extrapolate_decode);
844 progressive->rfx_context->dwt_2d_extrapolate_decode(buffer, temp);
846 BufferPool_Return(progressive->bufferPool, temp);
850static inline BOOL progressive_rfx_decode_block(
const primitives_t* prims,
851 INT16* WINPR_RESTRICT buffer, UINT32 length,
861progressive_rfx_decode_component(PROGRESSIVE_CONTEXT* WINPR_RESTRICT progressive,
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)
871 status = progressive->rfx_context->rlgr_decode(RLGR1, data, length, buffer, 4096);
876 CopyMemory(sign, buffer, 4096ULL * 2ULL);
879 rfx_differential_decode(buffer + 4032, 64);
880 if (!progressive_rfx_decode_block(prims, &buffer[0], 1024, shift->HL1))
882 if (!progressive_rfx_decode_block(prims, &buffer[1024], 1024, shift->LH1))
884 if (!progressive_rfx_decode_block(prims, &buffer[2048], 1024, shift->HH1))
886 if (!progressive_rfx_decode_block(prims, &buffer[3072], 256, shift->HL2))
888 if (!progressive_rfx_decode_block(prims, &buffer[3328], 256, shift->LH2))
890 if (!progressive_rfx_decode_block(prims, &buffer[3584], 256, shift->HH2))
892 if (!progressive_rfx_decode_block(prims, &buffer[3840], 64, shift->HL3))
894 if (!progressive_rfx_decode_block(prims, &buffer[3904], 64, shift->LH3))
896 if (!progressive_rfx_decode_block(prims, &buffer[3968], 64, shift->HH3))
898 if (!progressive_rfx_decode_block(prims, &buffer[4032], 64, shift->LL3))
903 if (!progressive_rfx_decode_block(prims, &buffer[0], 1023, shift->HL1))
905 if (!progressive_rfx_decode_block(prims, &buffer[1023], 1023, shift->LH1))
907 if (!progressive_rfx_decode_block(prims, &buffer[2046], 961, shift->HH1))
909 if (!progressive_rfx_decode_block(prims, &buffer[3007], 272, shift->HL2))
911 if (!progressive_rfx_decode_block(prims, &buffer[3279], 272, shift->LH2))
913 if (!progressive_rfx_decode_block(prims, &buffer[3551], 256, shift->HH2))
915 if (!progressive_rfx_decode_block(prims, &buffer[3807], 72, shift->HL3))
917 if (!progressive_rfx_decode_block(prims, &buffer[3879], 72, shift->LH3))
919 if (!progressive_rfx_decode_block(prims, &buffer[3951], 64, shift->HH3))
921 rfx_differential_decode(&buffer[4015], 81);
922 if (!progressive_rfx_decode_block(prims, &buffer[4015], 81, shift->LL3))
925 return progressive_rfx_dwt_2d_decode(progressive, buffer, current, coeffDiff, extrapolate,
930progressive_decompress_tile_first(PROGRESSIVE_CONTEXT* WINPR_RESTRICT progressive,
932 PROGRESSIVE_BLOCK_REGION* WINPR_RESTRICT region,
938 BOOL extrapolate = 0;
939 BYTE* pBuffer =
nullptr;
957 diff = tile->flags & RFX_TILE_DIFFERENCE;
958 sub = context->flags & RFX_SUBBAND_DIFFING;
959 extrapolate = region->flags & RFX_DWT_REDUCE_EXTRAPOLATE;
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);
971 if (tile->quantIdxY >= region->numQuant)
973 WLog_ERR(TAG,
"quantIdxY %" PRIu8
" > numQuant %" PRIu8, tile->quantIdxY, region->numQuant);
977 quantY = &(region->quantVals[tile->quantIdxY]);
979 if (tile->quantIdxCb >= region->numQuant)
981 WLog_ERR(TAG,
"quantIdxCb %" PRIu8
" > numQuant %" PRIu8, tile->quantIdxCb,
986 quantCb = &(region->quantVals[tile->quantIdxCb]);
988 if (tile->quantIdxCr >= region->numQuant)
990 WLog_ERR(TAG,
"quantIdxCr %" PRIu8
" > numQuant %" PRIu8, tile->quantIdxCr,
995 quantCr = &(region->quantVals[tile->quantIdxCr]);
997 if (tile->quality == 0xFF)
999 quantProgVal = &(progressive->quantProgValFull);
1003 if (tile->quality >= region->numProgQuant)
1005 WLog_ERR(TAG,
"quality %" PRIu8
" > numProgQuant %" PRIu8, tile->quality,
1006 region->numProgQuant);
1010 quantProgVal = &(region->quantProgVals[tile->quality]);
1013 quantProgY = &(quantProgVal->yQuantValues);
1014 quantProgCb = &(quantProgVal->cbQuantValues);
1015 quantProgCr = &(quantProgVal->crQuantValues);
1017 tile->yQuant = *quantY;
1018 tile->cbQuant = *quantCb;
1019 tile->crQuant = *quantCr;
1020 tile->yProgQuant = *quantProgY;
1021 tile->cbProgQuant = *quantProgCb;
1022 tile->crProgQuant = *quantProgCr;
1024 progressive_rfx_quant_add(quantY, quantProgY, &(tile->yBitPos));
1025 progressive_rfx_quant_add(quantCb, quantProgCb, &(tile->cbBitPos));
1026 progressive_rfx_quant_add(quantCr, quantProgCr, &(tile->crBitPos));
1027 progressive_rfx_quant_add(quantY, quantProgY, &shiftY);
1028 if (!progressive_rfx_quant_lsub(&shiftY, 1))
1030 progressive_rfx_quant_add(quantCb, quantProgCb, &shiftCb);
1031 if (!progressive_rfx_quant_lsub(&shiftCb, 1))
1033 progressive_rfx_quant_add(quantCr, quantProgCr, &shiftCr);
1034 if (!progressive_rfx_quant_lsub(&shiftCr, 1))
1037 pSign[0] = (INT16*)((&tile->sign[((8192 + 32) * 0) + 16]));
1038 pSign[1] = (INT16*)((&tile->sign[((8192 + 32) * 1) + 16]));
1039 pSign[2] = (INT16*)((&tile->sign[((8192 + 32) * 2) + 16]));
1041 pCurrent[0] = (INT16*)((&tile->current[((8192 + 32) * 0) + 16]));
1042 pCurrent[1] = (INT16*)((&tile->current[((8192 + 32) * 1) + 16]));
1043 pCurrent[2] = (INT16*)((&tile->current[((8192 + 32) * 2) + 16]));
1045 pBuffer = (BYTE*)BufferPool_Take(progressive->bufferPool, -1);
1046 pSrcDst[0] = (INT16*)((&pBuffer[((8192 + 32) * 0) + 16]));
1047 pSrcDst[1] = (INT16*)((&pBuffer[((8192 + 32) * 1) + 16]));
1048 pSrcDst[2] = (INT16*)((&pBuffer[((8192 + 32) * 2) + 16]));
1050 rc = progressive_rfx_decode_component(progressive, &shiftY, tile->yData, tile->yLen, pSrcDst[0],
1051 pCurrent[0], pSign[0], diff, sub, extrapolate);
1054 rc = progressive_rfx_decode_component(progressive, &shiftCb, tile->cbData, tile->cbLen,
1055 pSrcDst[1], pCurrent[1], pSign[1], diff, sub,
1059 rc = progressive_rfx_decode_component(progressive, &shiftCr, tile->crData, tile->crLen,
1060 pSrcDst[2], pCurrent[2], pSign[2], diff, sub,
1066 const INT16** ptr = WINPR_REINTERPRET_CAST(pSrcDst, INT16**,
const INT16**);
1067 rc = prims->yCbCrToRGB_16s8u_P3AC4R(ptr, 64 * 2, tile->data, tile->stride,
1068 progressive->format, &roi_64x64);
1071 BufferPool_Return(progressive->bufferPool, pBuffer);
1075static inline INT16 progressive_rfx_srl_read(RFX_PROGRESSIVE_UPGRADE_STATE* WINPR_RESTRICT state,
1078 WINPR_ASSERT(state);
1089 const UINT32 k = state->kp / 8;
1094 const UINT32 bit = (bs->accumulator & 0x80000000) ? 1 : 0;
1095 BitStream_Shift(bs, 1);
1100 state->nz = (1 << k);
1117 bs->mask = ((1u << k) - 1);
1119 WINPR_ASSERTING_INT_CAST(int16_t, ((bs->accumulator >> (32u - k)) & bs->mask));
1120 BitStream_Shift(bs, k);
1134 const UINT32 sign = (bs->accumulator & 0x80000000) ? 1 : 0;
1135 BitStream_Shift(bs, 1);
1143 return sign ? -1 : 1;
1146 const UINT32 max = (1u << numBits) - 1;
1150 const UINT32 bit = (bs->accumulator & 0x80000000) ? 1 : 0;
1151 BitStream_Shift(bs, 1);
1159 if (mag > INT16_MAX)
1161 return (INT16)(sign ? -1 * (int)mag : (INT16)mag);
1165progressive_rfx_upgrade_state_finish(RFX_PROGRESSIVE_UPGRADE_STATE* WINPR_RESTRICT state)
1176 pad = (raw->position % 8) ? (8 - (raw->position % 8)) : 0;
1179 BitStream_Shift(raw, pad);
1181 pad = (srl->position % 8) ? (8 - (srl->position % 8)) : 0;
1184 BitStream_Shift(srl, pad);
1186 if (BitStream_GetRemainingLength(srl) == 8)
1187 BitStream_Shift(srl, 8);
1192static inline int16_t rawShift(
wBitStream* raw, UINT32 numBits)
1195 WINPR_ASSERT(numBits > 0);
1197 raw->mask = ((1u << numBits) - 1);
1198 const int16_t input = (int16_t)((raw->accumulator >> (32 - numBits)) & raw->mask);
1199 BitStream_Shift(raw, numBits);
1203static 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,
1217 for (UINT32 index = 0; index < length; index++)
1219 input = rawShift(raw, numBits);
1221 const int32_t shifted = input << shift;
1222 const int32_t val = buffer[index] + shifted;
1223 const int16_t ival = WINPR_ASSERTING_INT_CAST(int16_t, val);
1224 buffer[index] = ival;
1230 for (UINT32 index = 0; index < length; index++)
1232 if (sign[index] > 0)
1235 input = rawShift(raw, numBits);
1237 else if (sign[index] < 0)
1240 input = rawShift(raw, numBits);
1246 input = progressive_rfx_srl_read(state, numBits);
1247 sign[index] = WINPR_ASSERTING_INT_CAST(int16_t, input);
1250 const int32_t val = input << shift;
1251 const int32_t ival = buffer[index] + val;
1252 buffer[index] = WINPR_ASSERTING_INT_CAST(INT16, ival);
1258static inline int progressive_rfx_upgrade_component(
1259 PROGRESSIVE_CONTEXT* WINPR_RESTRICT progressive,
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)
1272 RFX_PROGRESSIVE_UPGRADE_STATE state = WINPR_C_ARRAY_INIT;
1278 BitStream_Attach(state.srl, srlData, srlLen);
1279 BitStream_Fetch(state.srl);
1280 BitStream_Attach(state.raw, rawData, rawLen);
1281 BitStream_Fetch(state.raw);
1284 rc = progressive_rfx_upgrade_block(&state, ¤t[0], &sign[0], 1023, shift->HL1, bitPos->HL1,
1288 rc = progressive_rfx_upgrade_block(&state, ¤t[1023], &sign[1023], 1023, shift->LH1,
1289 bitPos->LH1, numBits->LH1);
1292 rc = progressive_rfx_upgrade_block(&state, ¤t[2046], &sign[2046], 961, shift->HH1,
1293 bitPos->HH1, numBits->HH1);
1296 rc = progressive_rfx_upgrade_block(&state, ¤t[3007], &sign[3007], 272, shift->HL2,
1297 bitPos->HL2, numBits->HL2);
1300 rc = progressive_rfx_upgrade_block(&state, ¤t[3279], &sign[3279], 272, shift->LH2,
1301 bitPos->LH2, numBits->LH2);
1304 rc = progressive_rfx_upgrade_block(&state, ¤t[3551], &sign[3551], 256, shift->HH2,
1305 bitPos->HH2, numBits->HH2);
1308 rc = progressive_rfx_upgrade_block(&state, ¤t[3807], &sign[3807], 72, shift->HL3,
1309 bitPos->HL3, numBits->HL3);
1312 rc = progressive_rfx_upgrade_block(&state, ¤t[3879], &sign[3879], 72, shift->LH3,
1313 bitPos->LH3, numBits->LH3);
1316 rc = progressive_rfx_upgrade_block(&state, ¤t[3951], &sign[3951], 64, shift->HH3,
1317 bitPos->HH3, numBits->HH3);
1321 state.nonLL = FALSE;
1322 rc = progressive_rfx_upgrade_block(&state, ¤t[4015], &sign[4015], 81, shift->LL3,
1323 bitPos->LL3, numBits->LL3);
1326 rc = progressive_rfx_upgrade_state_finish(&state);
1329 aRawLen = (state.raw->position + 7) / 8;
1330 aSrlLen = (state.srl->position + 7) / 8;
1332 if ((aRawLen != rawLen) || (aSrlLen != srlLen))
1338 pRawLen = (int)((((
float)aRawLen) / ((
float)rawLen)) * 100.0f);
1341 pSrlLen = (int)((((
float)aSrlLen) / ((
float)srlLen)) * 100.0f);
1343 WLog_Print(progressive->log, WLOG_WARN,
1344 "RAW: %" PRIu32
"/%" PRIu32
" %d%% (%" PRIu32
"/%" PRIu32
":%" PRIu32
1345 ")\tSRL: %" PRIu32
"/%" PRIu32
" %d%% (%" PRIu32
"/%" PRIu32
":%" PRIu32
")",
1346 aRawLen, rawLen, pRawLen, state.raw->position, rawLen * 8,
1347 (rawLen * 8) - state.raw->position, aSrlLen, srlLen, pSrlLen,
1348 state.srl->position, srlLen * 8, (srlLen * 8) - state.srl->position);
1352 return progressive_rfx_dwt_2d_decode(progressive, buffer, current, coeffDiff, extrapolate,
1357progressive_decompress_tile_upgrade(PROGRESSIVE_CONTEXT* WINPR_RESTRICT progressive,
1359 PROGRESSIVE_BLOCK_REGION* WINPR_RESTRICT region,
1365 BOOL extrapolate = 0;
1366 BYTE* pBuffer =
nullptr;
1367 INT16* pSign[3] = WINPR_C_ARRAY_INIT;
1368 INT16* pSrcDst[3] = WINPR_C_ARRAY_INIT;
1369 INT16* pCurrent[3] = WINPR_C_ARRAY_INIT;
1389 coeffDiff = tile->flags & RFX_TILE_DIFFERENCE;
1390 sub = context->flags & RFX_SUBBAND_DIFFING;
1391 extrapolate = region->flags & RFX_DWT_REDUCE_EXTRAPOLATE;
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);
1406 if (tile->quantIdxY >= region->numQuant)
1408 WLog_ERR(TAG,
"quantIdxY %" PRIu8
" > numQuant %" PRIu8, tile->quantIdxY, region->numQuant);
1412 quantY = &(region->quantVals[tile->quantIdxY]);
1414 if (tile->quantIdxCb >= region->numQuant)
1416 WLog_ERR(TAG,
"quantIdxCb %" PRIu8
" > numQuant %" PRIu8, tile->quantIdxCb,
1421 quantCb = &(region->quantVals[tile->quantIdxCb]);
1423 if (tile->quantIdxCr >= region->numQuant)
1425 WLog_ERR(TAG,
"quantIdxCr %" PRIu8
" > numQuant %" PRIu8, tile->quantIdxCr,
1430 quantCr = &(region->quantVals[tile->quantIdxCr]);
1432 if (tile->quality == 0xFF)
1434 quantProg = &(progressive->quantProgValFull);
1438 if (tile->quality >= region->numProgQuant)
1440 WLog_ERR(TAG,
"quality %" PRIu8
" > numProgQuant %" PRIu8, tile->quality,
1441 region->numProgQuant);
1445 quantProg = &(region->quantProgVals[tile->quality]);
1448 quantProgY = &(quantProg->yQuantValues);
1449 quantProgCb = &(quantProg->cbQuantValues);
1450 quantProgCr = &(quantProg->crQuantValues);
1452 if (!progressive_rfx_quant_cmp_equal(quantY, &(tile->yQuant)))
1453 WLog_Print(progressive->log, WLOG_WARN,
"non-progressive quantY has changed!");
1455 if (!progressive_rfx_quant_cmp_equal(quantCb, &(tile->cbQuant)))
1456 WLog_Print(progressive->log, WLOG_WARN,
"non-progressive quantCb has changed!");
1458 if (!progressive_rfx_quant_cmp_equal(quantCr, &(tile->crQuant)))
1459 WLog_Print(progressive->log, WLOG_WARN,
"non-progressive quantCr has changed!");
1461 if (!(context->flags & RFX_SUBBAND_DIFFING))
1462 WLog_WARN(TAG,
"PROGRESSIVE_BLOCK_CONTEXT::flags & RFX_SUBBAND_DIFFING not set");
1464 progressive_rfx_quant_add(quantY, quantProgY, &yBitPos);
1465 progressive_rfx_quant_add(quantCb, quantProgCb, &cbBitPos);
1466 progressive_rfx_quant_add(quantCr, quantProgCr, &crBitPos);
1467 if (!progressive_rfx_quant_sub(&(tile->yBitPos), &yBitPos, &yNumBits))
1469 if (!progressive_rfx_quant_sub(&(tile->cbBitPos), &cbBitPos, &cbNumBits))
1471 if (!progressive_rfx_quant_sub(&(tile->crBitPos), &crBitPos, &crNumBits))
1473 progressive_rfx_quant_add(quantY, quantProgY, &shiftY);
1474 if (!progressive_rfx_quant_lsub(&shiftY, 1))
1476 progressive_rfx_quant_add(quantCb, quantProgCb, &shiftCb);
1477 if (!progressive_rfx_quant_lsub(&shiftCb, 1))
1479 progressive_rfx_quant_add(quantCr, quantProgCr, &shiftCr);
1480 if (!progressive_rfx_quant_lsub(&shiftCr, 1))
1483 tile->yBitPos = yBitPos;
1484 tile->cbBitPos = cbBitPos;
1485 tile->crBitPos = crBitPos;
1486 tile->yQuant = *quantY;
1487 tile->cbQuant = *quantCb;
1488 tile->crQuant = *quantCr;
1489 tile->yProgQuant = *quantProgY;
1490 tile->cbProgQuant = *quantProgCb;
1491 tile->crProgQuant = *quantProgCr;
1493 pSign[0] = (INT16*)((&tile->sign[((8192 + 32) * 0) + 16]));
1494 pSign[1] = (INT16*)((&tile->sign[((8192 + 32) * 1) + 16]));
1495 pSign[2] = (INT16*)((&tile->sign[((8192 + 32) * 2) + 16]));
1497 pCurrent[0] = (INT16*)((&tile->current[((8192 + 32) * 0) + 16]));
1498 pCurrent[1] = (INT16*)((&tile->current[((8192 + 32) * 1) + 16]));
1499 pCurrent[2] = (INT16*)((&tile->current[((8192 + 32) * 2) + 16]));
1501 pBuffer = (BYTE*)BufferPool_Take(progressive->bufferPool, -1);
1502 pSrcDst[0] = (INT16*)((&pBuffer[((8192 + 32) * 0) + 16]));
1503 pSrcDst[1] = (INT16*)((&pBuffer[((8192 + 32) * 1) + 16]));
1504 pSrcDst[2] = (INT16*)((&pBuffer[((8192 + 32) * 2) + 16]));
1506 status = progressive_rfx_upgrade_component(progressive, &shiftY, quantProgY, &yNumBits,
1507 pSrcDst[0], pCurrent[0], pSign[0], tile->ySrlData,
1508 tile->ySrlLen, tile->yRawData, tile->yRawLen,
1509 coeffDiff, sub, extrapolate);
1514 status = progressive_rfx_upgrade_component(progressive, &shiftCb, quantProgCb, &cbNumBits,
1515 pSrcDst[1], pCurrent[1], pSign[1], tile->cbSrlData,
1516 tile->cbSrlLen, tile->cbRawData, tile->cbRawLen,
1517 coeffDiff, sub, extrapolate);
1522 status = progressive_rfx_upgrade_component(progressive, &shiftCr, quantProgCr, &crNumBits,
1523 pSrcDst[2], pCurrent[2], pSign[2], tile->crSrlData,
1524 tile->crSrlLen, tile->crRawData, tile->crRawLen,
1525 coeffDiff, sub, extrapolate);
1531 const INT16** ptr = WINPR_REINTERPRET_CAST(pSrcDst, INT16**,
const INT16**);
1532 status = prims->yCbCrToRGB_16s8u_P3AC4R(ptr, 64 * 2, tile->data, tile->stride,
1533 progressive->format, &roi_64x64);
1536 BufferPool_Return(progressive->bufferPool, pBuffer);
1540static inline BOOL progressive_tile_read_upgrade(
1541 PROGRESSIVE_CONTEXT* WINPR_RESTRICT progressive,
wStream* WINPR_RESTRICT s, UINT16 blockType,
1543 PROGRESSIVE_BLOCK_REGION* WINPR_RESTRICT region,
1547 const size_t expect = 20;
1549 if (!Stream_CheckAndLogRequiredLength(TAG, s, expect))
1552 tile.blockType = blockType;
1553 tile.blockLen = blockLen;
1556 Stream_Read_UINT8(s, tile.quantIdxY);
1557 Stream_Read_UINT8(s, tile.quantIdxCb);
1558 Stream_Read_UINT8(s, tile.quantIdxCr);
1559 Stream_Read_UINT16(s, tile.xIdx);
1560 Stream_Read_UINT16(s, tile.yIdx);
1561 Stream_Read_UINT8(s, tile.quality);
1562 Stream_Read_UINT16(s, tile.ySrlLen);
1563 Stream_Read_UINT16(s, tile.yRawLen);
1564 Stream_Read_UINT16(s, tile.cbSrlLen);
1565 Stream_Read_UINT16(s, tile.cbRawLen);
1566 Stream_Read_UINT16(s, tile.crSrlLen);
1567 Stream_Read_UINT16(s, tile.crRawLen);
1569 tile.ySrlData = Stream_Pointer(s);
1570 if (!Stream_SafeSeek(s, tile.ySrlLen))
1572 WLog_Print(progressive->log, WLOG_ERROR,
" Failed to seek %" PRIu32
" bytes", tile.ySrlLen);
1576 tile.yRawData = Stream_Pointer(s);
1577 if (!Stream_SafeSeek(s, tile.yRawLen))
1579 WLog_Print(progressive->log, WLOG_ERROR,
" Failed to seek %" PRIu32
" bytes", tile.yRawLen);
1583 tile.cbSrlData = Stream_Pointer(s);
1584 if (!Stream_SafeSeek(s, tile.cbSrlLen))
1586 WLog_Print(progressive->log, WLOG_ERROR,
" Failed to seek %" PRIu32
" bytes",
1591 tile.cbRawData = Stream_Pointer(s);
1592 if (!Stream_SafeSeek(s, tile.cbRawLen))
1594 WLog_Print(progressive->log, WLOG_ERROR,
" Failed to seek %" PRIu32
" bytes",
1599 tile.crSrlData = Stream_Pointer(s);
1600 if (!Stream_SafeSeek(s, tile.crSrlLen))
1602 WLog_Print(progressive->log, WLOG_ERROR,
" Failed to seek %" PRIu32
" bytes",
1607 tile.crRawData = Stream_Pointer(s);
1608 if (!Stream_SafeSeek(s, tile.crRawLen))
1610 WLog_Print(progressive->log, WLOG_ERROR,
" Failed to seek %" PRIu32
" bytes",
1615 return progressive_surface_tile_replace(surface, region, &tile, TRUE);
1619progressive_tile_read(PROGRESSIVE_CONTEXT* WINPR_RESTRICT progressive, BOOL simple,
1620 wStream* WINPR_RESTRICT s, UINT16 blockType, UINT32 blockLen,
1622 PROGRESSIVE_BLOCK_REGION* WINPR_RESTRICT region,
1626 size_t expect = simple ? 16 : 17;
1628 if (!Stream_CheckAndLogRequiredLength(TAG, s, expect))
1631 tile.blockType = blockType;
1632 tile.blockLen = blockLen;
1634 Stream_Read_UINT8(s, tile.quantIdxY);
1635 Stream_Read_UINT8(s, tile.quantIdxCb);
1636 Stream_Read_UINT8(s, tile.quantIdxCr);
1637 Stream_Read_UINT16(s, tile.xIdx);
1638 Stream_Read_UINT16(s, tile.yIdx);
1639 Stream_Read_UINT8(s, tile.flags);
1642 Stream_Read_UINT8(s, tile.quality);
1644 tile.quality = 0xFF;
1645 Stream_Read_UINT16(s, tile.yLen);
1646 Stream_Read_UINT16(s, tile.cbLen);
1647 Stream_Read_UINT16(s, tile.crLen);
1648 Stream_Read_UINT16(s, tile.tailLen);
1650 tile.yData = Stream_Pointer(s);
1651 if (!Stream_SafeSeek(s, tile.yLen))
1653 WLog_Print(progressive->log, WLOG_ERROR,
" Failed to seek %" PRIu32
" bytes", tile.yLen);
1657 tile.cbData = Stream_Pointer(s);
1658 if (!Stream_SafeSeek(s, tile.cbLen))
1660 WLog_Print(progressive->log, WLOG_ERROR,
" Failed to seek %" PRIu32
" bytes", tile.cbLen);
1664 tile.crData = Stream_Pointer(s);
1665 if (!Stream_SafeSeek(s, tile.crLen))
1667 WLog_Print(progressive->log, WLOG_ERROR,
" Failed to seek %" PRIu32
" bytes", tile.crLen);
1671 tile.tailData = Stream_Pointer(s);
1672 if (!Stream_SafeSeek(s, tile.tailLen))
1674 WLog_Print(progressive->log, WLOG_ERROR,
" Failed to seek %" PRIu32
" bytes", tile.tailLen);
1678 return progressive_surface_tile_replace(surface, region, &tile, FALSE);
1681static void CALLBACK progressive_process_tiles_tile_work_callback(PTP_CALLBACK_INSTANCE instance,
1682 void* context, PTP_WORK work)
1686 WINPR_UNUSED(instance);
1689 switch (param->tile->blockType)
1691 case PROGRESSIVE_WBT_TILE_SIMPLE:
1692 case PROGRESSIVE_WBT_TILE_FIRST:
1693 progressive_decompress_tile_first(param->progressive, param->tile, param->region,
1697 case PROGRESSIVE_WBT_TILE_UPGRADE:
1698 progressive_decompress_tile_upgrade(param->progressive, param->tile, param->region,
1702 WLog_Print(param->progressive->log, WLOG_ERROR,
"Invalid block type %04" PRIx16
" (%s)",
1703 param->tile->blockType,
1704 rfx_get_progressive_block_type_string(param->tile->blockType));
1709static inline SSIZE_T
1710progressive_process_tiles(PROGRESSIVE_CONTEXT* WINPR_RESTRICT progressive,
1712 PROGRESSIVE_BLOCK_REGION* WINPR_RESTRICT region,
1718 const size_t start = Stream_GetPosition(s);
1719 UINT16 blockType = 0;
1720 UINT32 blockLen = 0;
1722 UINT16 close_cnt = 0;
1724 WINPR_ASSERT(progressive);
1725 WINPR_ASSERT(region);
1727 if (!Stream_CheckAndLogRequiredLength(TAG, s, region->tileDataSize))
1730 while ((Stream_GetRemainingLength(s) >= 6) &&
1731 (region->tileDataSize > (Stream_GetPosition(s) - start)))
1733 const size_t pos = Stream_GetPosition(s);
1735 Stream_Read_UINT16(s, blockType);
1736 Stream_Read_UINT32(s, blockLen);
1738#if defined(WITH_DEBUG_CODECS)
1739 WLog_Print(progressive->log, WLOG_DEBUG,
"%s",
1740 rfx_get_progressive_block_type_string(blockType));
1745 WLog_Print(progressive->log, WLOG_ERROR,
"Expected >= %" PRIu32
" remaining %" PRIu32,
1749 if (!Stream_CheckAndLogRequiredLength(TAG, s, blockLen - 6))
1754 case PROGRESSIVE_WBT_TILE_SIMPLE:
1755 if (!progressive_tile_read(progressive, TRUE, s, blockType, blockLen, surface,
1760 case PROGRESSIVE_WBT_TILE_FIRST:
1761 if (!progressive_tile_read(progressive, FALSE, s, blockType, blockLen, surface,
1766 case PROGRESSIVE_WBT_TILE_UPGRADE:
1767 if (!progressive_tile_read_upgrade(progressive, s, blockType, blockLen, surface,
1772 WLog_ERR(TAG,
"Invalid block type %04" PRIx16
" (%s)", blockType,
1773 rfx_get_progressive_block_type_string(blockType));
1777 size_t rem = Stream_GetPosition(s);
1778 if ((rem - pos) != blockLen)
1780 WLog_Print(progressive->log, WLOG_ERROR,
1781 "Actual block read %" PRIuz
" but expected %" PRIu32, rem - pos, blockLen);
1787 end = Stream_GetPosition(s);
1788 if ((end - start) != region->tileDataSize)
1790 WLog_Print(progressive->log, WLOG_ERROR,
1791 "Actual total blocks read %" PRIuz
" but expected %" PRIu32, end - start,
1792 region->tileDataSize);
1796 if (count != region->numTiles)
1798 WLog_Print(progressive->log, WLOG_WARN,
1799 "numTiles inconsistency: actual: %" PRIu32
", expected: %" PRIu16
"\n", count,
1804 for (UINT32 idx = 0; idx < region->numTiles; idx++)
1808 param->progressive = progressive;
1809 param->region = region;
1810 param->context = context;
1813 if (progressive->rfx_context->priv->UseThreads)
1815 progressive->work_objects[idx] = CreateThreadpoolWork(
1816 progressive_process_tiles_tile_work_callback, (
void*)param,
nullptr);
1817 if (!progressive->work_objects[idx])
1819 WLog_Print(progressive->log, WLOG_ERROR,
1820 "Failed to create ThreadpoolWork for tile %" PRIu32, idx);
1825 SubmitThreadpoolWork(progressive->work_objects[idx]);
1827 close_cnt = WINPR_ASSERTING_INT_CAST(UINT16, idx + 1);
1831 progressive_process_tiles_tile_work_callback(
nullptr, param,
nullptr);
1836 WLog_Print(progressive->log, WLOG_ERROR,
"Failed to decompress %s at %" PRIu16,
1837 rfx_get_progressive_block_type_string(tile->blockType), idx);
1842 if (progressive->rfx_context->priv->UseThreads)
1844 for (UINT32 idx = 0; idx < close_cnt; idx++)
1846 WaitForThreadpoolWorkCallbacks(progressive->work_objects[idx], FALSE);
1847 CloseThreadpoolWork(progressive->work_objects[idx]);
1856 return (SSIZE_T)(end - start);
1859static inline SSIZE_T progressive_wb_sync(PROGRESSIVE_CONTEXT* WINPR_RESTRICT progressive,
1860 wStream* WINPR_RESTRICT s, UINT16 blockType,
1863 const UINT32 magic = 0xCACCACCA;
1864 const UINT16 version = 0x0100;
1867 sync.blockType = blockType;
1868 sync.blockLen = blockLen;
1870 if (sync.blockLen != 12)
1872 WLog_Print(progressive->log, WLOG_ERROR,
1873 "PROGRESSIVE_BLOCK_SYNC::blockLen = 0x%08" PRIx32
" != 0x%08" PRIx32,
1874 sync.blockLen, 12u);
1878 if (!Stream_CheckAndLogRequiredLength(TAG, s, 6))
1881#if defined(WITH_DEBUG_CODECS)
1882 WLog_Print(progressive->log, WLOG_DEBUG,
"ProgressiveSync");
1885 Stream_Read_UINT32(s, sync.magic);
1886 Stream_Read_UINT16(s, sync.version);
1888 if (sync.magic != magic)
1890 WLog_Print(progressive->log, WLOG_ERROR,
1891 "PROGRESSIVE_BLOCK_SYNC::magic = 0x%08" PRIx32
" != 0x%08" PRIx32, sync.magic,
1896 if (sync.version != 0x0100)
1898 WLog_Print(progressive->log, WLOG_ERROR,
1899 "PROGRESSIVE_BLOCK_SYNC::version = 0x%04" PRIx16
" != 0x%04" PRIu16,
1900 sync.version, version);
1904 if ((progressive->state & FLAG_WBT_SYNC) != 0)
1905 WLog_WARN(TAG,
"Duplicate PROGRESSIVE_BLOCK_SYNC, ignoring");
1907 progressive->state |= FLAG_WBT_SYNC;
1911static inline SSIZE_T progressive_wb_frame_begin(PROGRESSIVE_CONTEXT* WINPR_RESTRICT progressive,
1912 wStream* WINPR_RESTRICT s, UINT16 blockType,
1917 frameBegin.blockType = blockType;
1918 frameBegin.blockLen = blockLen;
1920 if (frameBegin.blockLen != 12)
1922 WLog_Print(progressive->log, WLOG_ERROR,
1923 " RFX_PROGRESSIVE_FRAME_BEGIN::blockLen = 0x%08" PRIx32
" != 0x%08" PRIx32,
1924 frameBegin.blockLen, 12u);
1928 if (!Stream_CheckAndLogRequiredLength(TAG, s, 6))
1931 Stream_Read_UINT32(s, frameBegin.frameIndex);
1932 Stream_Read_UINT16(s, frameBegin.regionCount);
1934#if defined(WITH_DEBUG_CODECS)
1935 WLog_Print(progressive->log, WLOG_DEBUG,
1936 "ProgressiveFrameBegin: frameIndex: %" PRIu32
" regionCount: %" PRIu16
"",
1937 frameBegin.frameIndex, frameBegin.regionCount);
1946 if ((progressive->state & FLAG_WBT_FRAME_BEGIN) != 0)
1948 WLog_ERR(TAG,
"Duplicate RFX_PROGRESSIVE_FRAME_BEGIN in stream, this is not allowed!");
1952 if ((progressive->state & FLAG_WBT_FRAME_END) != 0)
1954 WLog_ERR(TAG,
"RFX_PROGRESSIVE_FRAME_BEGIN after RFX_PROGRESSIVE_FRAME_END in stream, this "
1959 progressive->state |= FLAG_WBT_FRAME_BEGIN;
1963static inline SSIZE_T progressive_wb_frame_end(PROGRESSIVE_CONTEXT* WINPR_RESTRICT progressive,
1964 wStream* WINPR_RESTRICT s, UINT16 blockType,
1969 frameEnd.blockType = blockType;
1970 frameEnd.blockLen = blockLen;
1972 if (frameEnd.blockLen != 6)
1974 WLog_Print(progressive->log, WLOG_ERROR,
1975 " RFX_PROGRESSIVE_FRAME_END::blockLen = 0x%08" PRIx32
" != 0x%08" PRIx32,
1976 frameEnd.blockLen, 6u);
1980 if (Stream_GetRemainingLength(s) != 0)
1982 WLog_Print(progressive->log, WLOG_ERROR,
1983 "ProgressiveFrameEnd short %" PRIuz
", expected %u",
1984 Stream_GetRemainingLength(s), 0U);
1988#if defined(WITH_DEBUG_CODECS)
1989 WLog_Print(progressive->log, WLOG_DEBUG,
"ProgressiveFrameEnd");
1992 if ((progressive->state & FLAG_WBT_FRAME_BEGIN) == 0)
1993 WLog_WARN(TAG,
"RFX_PROGRESSIVE_FRAME_END before RFX_PROGRESSIVE_FRAME_BEGIN, ignoring");
1994 if ((progressive->state & FLAG_WBT_FRAME_END) != 0)
1995 WLog_WARN(TAG,
"Duplicate RFX_PROGRESSIVE_FRAME_END, ignoring");
1997 progressive->state |= FLAG_WBT_FRAME_END;
2001static inline SSIZE_T progressive_wb_context(PROGRESSIVE_CONTEXT* WINPR_RESTRICT progressive,
2002 wStream* WINPR_RESTRICT s, UINT16 blockType,
2006 context->blockType = blockType;
2007 context->blockLen = blockLen;
2009 if (context->blockLen != 10)
2011 WLog_Print(progressive->log, WLOG_ERROR,
2012 "RFX_PROGRESSIVE_CONTEXT::blockLen = 0x%08" PRIx32
" != 0x%08x",
2013 context->blockLen, 10u);
2017 if (!Stream_CheckAndLogRequiredLength(TAG, s, 4))
2020 Stream_Read_UINT8(s, context->ctxId);
2021 Stream_Read_UINT16(s, context->tileSize);
2022 Stream_Read_UINT8(s, context->flags);
2024 if (context->ctxId != 0x00)
2025 WLog_WARN(TAG,
"RFX_PROGRESSIVE_CONTEXT::ctxId != 0x00: %" PRIu8, context->ctxId);
2027 if (context->tileSize != 64)
2029 WLog_ERR(TAG,
"RFX_PROGRESSIVE_CONTEXT::tileSize != 0x40: %" PRIu16, context->tileSize);
2033 if ((progressive->state & FLAG_WBT_FRAME_BEGIN) != 0)
2034 WLog_WARN(TAG,
"RFX_PROGRESSIVE_CONTEXT received after RFX_PROGRESSIVE_FRAME_BEGIN");
2035 if ((progressive->state & FLAG_WBT_FRAME_END) != 0)
2036 WLog_WARN(TAG,
"RFX_PROGRESSIVE_CONTEXT received after RFX_PROGRESSIVE_FRAME_END");
2037 if ((progressive->state & FLAG_WBT_CONTEXT) != 0)
2038 WLog_WARN(TAG,
"Duplicate RFX_PROGRESSIVE_CONTEXT received, ignoring.");
2040#if defined(WITH_DEBUG_CODECS)
2041 WLog_Print(progressive->log, WLOG_DEBUG,
"ProgressiveContext: flags: 0x%02" PRIX8
"",
2045 progressive->state |= FLAG_WBT_CONTEXT;
2049static inline SSIZE_T
2050progressive_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)
2054 region->usedTiles = 0;
2056 if (!Stream_CheckAndLogRequiredLength(TAG, s, 12))
2059 region->blockType = blockType;
2060 region->blockLen = blockLen;
2061 Stream_Read_UINT8(s, region->tileSize);
2062 Stream_Read_UINT16(s, region->numRects);
2063 Stream_Read_UINT8(s, region->numQuant);
2064 Stream_Read_UINT8(s, region->numProgQuant);
2065 Stream_Read_UINT8(s, region->flags);
2066 Stream_Read_UINT16(s, region->numTiles);
2067 Stream_Read_UINT32(s, region->tileDataSize);
2069 if (region->tileSize != 64)
2071 WLog_Print(progressive->log, WLOG_ERROR,
2072 "ProgressiveRegion tile size %" PRIu8
", expected %u", region->tileSize, 64U);
2076 if (region->numRects < 1)
2078 WLog_Print(progressive->log, WLOG_ERROR,
"ProgressiveRegion missing rect count %" PRIu16,
2083 if (region->numQuant > 7)
2085 WLog_Print(progressive->log, WLOG_ERROR,
2086 "ProgressiveRegion quant count too high %" PRIu8
", expected < %u",
2087 region->numQuant, 7U);
2091 const SSIZE_T rc = WINPR_ASSERTING_INT_CAST(SSIZE_T, Stream_GetRemainingLength(s));
2092 const SSIZE_T expect = region->numRects * 8ll + region->numQuant * 5ll +
2093 region->numProgQuant * 16ll + region->tileDataSize;
2097 if (len / 8LL < region->numRects)
2099 WLog_Print(progressive->log, WLOG_ERROR,
2100 "ProgressiveRegion data short for region->rects");
2103 len -= region->numRects * 8LL;
2105 if (len / 5LL < region->numQuant)
2107 WLog_Print(progressive->log, WLOG_ERROR,
2108 "ProgressiveRegion data short for region->cQuant");
2111 len -= region->numQuant * 5LL;
2113 if (len / 16LL < region->numProgQuant)
2115 WLog_Print(progressive->log, WLOG_ERROR,
2116 "ProgressiveRegion data short for region->cProgQuant");
2119 len -= region->numProgQuant * 16LL;
2121 if (len < region->tileDataSize * 1ll)
2123 WLog_Print(progressive->log, WLOG_ERROR,
2124 "ProgressiveRegion data short for region->tiles");
2127 len -= region->tileDataSize;
2130 WLog_Print(progressive->log, WLOG_WARN,
2131 "Unused bytes detected, %" PRIdz
" bytes not processed", len);
2137static inline SSIZE_T progressive_wb_skip_region(PROGRESSIVE_CONTEXT* WINPR_RESTRICT progressive,
2138 wStream* WINPR_RESTRICT s, UINT16 blockType,
2141 PROGRESSIVE_BLOCK_REGION* WINPR_RESTRICT region = &progressive->region;
2144 progressive_wb_read_region_header(progressive, s, blockType, blockLen, region);
2148 if (!Stream_SafeSeek(s, WINPR_ASSERTING_INT_CAST(
size_t, rc)))
2154static inline SSIZE_T progressive_wb_region(PROGRESSIVE_CONTEXT* WINPR_RESTRICT progressive,
2155 wStream* WINPR_RESTRICT s, UINT16 blockType,
2158 PROGRESSIVE_BLOCK_REGION* WINPR_RESTRICT region)
2163 UINT16 boxRight = 0;
2164 UINT16 boxBottom = 0;
2167 UINT16 idxRight = 0;
2168 UINT16 idxBottom = 0;
2171 if ((progressive->state & FLAG_WBT_FRAME_BEGIN) == 0)
2173 WLog_WARN(TAG,
"RFX_PROGRESSIVE_REGION before RFX_PROGRESSIVE_FRAME_BEGIN, ignoring");
2174 return progressive_wb_skip_region(progressive, s, blockType, blockLen);
2176 if ((progressive->state & FLAG_WBT_FRAME_END) != 0)
2178 WLog_WARN(TAG,
"RFX_PROGRESSIVE_REGION after RFX_PROGRESSIVE_FRAME_END, ignoring");
2179 return progressive_wb_skip_region(progressive, s, blockType, blockLen);
2182 progressive->state |= FLAG_WBT_REGION;
2184 rc = progressive_wb_read_region_header(progressive, s, blockType, blockLen, region);
2188 for (UINT16 index = 0; index < region->numRects; index++)
2190 RFX_RECT* rect = &(region->rects[index]);
2191 Stream_Read_UINT16(s, rect->x);
2192 Stream_Read_UINT16(s, rect->y);
2193 Stream_Read_UINT16(s, rect->width);
2194 Stream_Read_UINT16(s, rect->height);
2197 for (BYTE index = 0; index < region->numQuant; index++)
2200 progressive_component_codec_quant_read(s, quantVal);
2202 if (!progressive_rfx_quant_lcmp_greater_equal(quantVal, 6))
2204 WLog_Print(progressive->log, WLOG_ERROR,
2205 "ProgressiveRegion region->cQuant[%" PRIu32
"] < 6", index);
2209 if (!progressive_rfx_quant_lcmp_less_equal(quantVal, 15))
2211 WLog_Print(progressive->log, WLOG_ERROR,
2212 "ProgressiveRegion region->cQuant[%" PRIu32
"] > 15", index);
2217 for (BYTE index = 0; index < region->numProgQuant; index++)
2221 Stream_Read_UINT8(s, quantProgVal->quality);
2223 progressive_component_codec_quant_read(s, &(quantProgVal->yQuantValues));
2224 progressive_component_codec_quant_read(s, &(quantProgVal->cbQuantValues));
2225 progressive_component_codec_quant_read(s, &(quantProgVal->crQuantValues));
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);
2237 boxLeft = WINPR_ASSERTING_INT_CAST(UINT16, surface->gridWidth);
2238 boxTop = WINPR_ASSERTING_INT_CAST(UINT16, surface->gridHeight);
2242 for (UINT16 index = 0; index < region->numRects; index++)
2244 RFX_RECT* rect = &(region->rects[index]);
2245 idxLeft = rect->x / 64;
2246 idxTop = rect->y / 64;
2247 idxRight = (rect->x + rect->width + 63) / 64;
2248 idxBottom = (rect->y + rect->height + 63) / 64;
2250 if (idxLeft < boxLeft)
2253 if (idxTop < boxTop)
2256 if (idxRight > boxRight)
2257 boxRight = idxRight;
2259 if (idxBottom > boxBottom)
2260 boxBottom = idxBottom;
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);
2269 const SSIZE_T res = progressive_process_tiles(progressive, s, region, surface, context);
2275static inline SSIZE_T progressive_parse_block(PROGRESSIVE_CONTEXT* WINPR_RESTRICT progressive,
2278 PROGRESSIVE_BLOCK_REGION* WINPR_RESTRICT region)
2280 UINT16 blockType = 0;
2281 UINT32 blockLen = 0;
2283 wStream sub = WINPR_C_ARRAY_INIT;
2285 WINPR_ASSERT(progressive);
2287 if (!Stream_CheckAndLogRequiredLength(TAG, s, 6))
2290 Stream_Read_UINT16(s, blockType);
2291 Stream_Read_UINT32(s, blockLen);
2295 WLog_WARN(TAG,
"Invalid blockLen %" PRIu32
", expected >= 6", blockLen);
2298 if (!Stream_CheckAndLogRequiredLength(TAG, s, blockLen - 6))
2300 Stream_StaticConstInit(&sub, Stream_Pointer(s), blockLen - 6);
2301 Stream_Seek(s, blockLen - 6);
2305 case PROGRESSIVE_WBT_SYNC:
2306 rc = progressive_wb_sync(progressive, &sub, blockType, blockLen);
2309 case PROGRESSIVE_WBT_FRAME_BEGIN:
2310 rc = progressive_wb_frame_begin(progressive, &sub, blockType, blockLen);
2313 case PROGRESSIVE_WBT_FRAME_END:
2314 rc = progressive_wb_frame_end(progressive, &sub, blockType, blockLen);
2317 case PROGRESSIVE_WBT_CONTEXT:
2318 rc = progressive_wb_context(progressive, &sub, blockType, blockLen);
2321 case PROGRESSIVE_WBT_REGION:
2322 rc = progressive_wb_region(progressive, &sub, blockType, blockLen, surface, region);
2326 WLog_Print(progressive->log, WLOG_ERROR,
"Invalid block type %04" PRIx16, blockType);
2333 if (Stream_GetRemainingLength(&sub) > 0)
2335 WLog_Print(progressive->log, WLOG_ERROR,
2336 "block len %" PRIu32
" does not match read data %" PRIuz, blockLen,
2337 blockLen - Stream_GetRemainingLength(&sub));
2344static inline BOOL update_tiles(PROGRESSIVE_CONTEXT* WINPR_RESTRICT progressive,
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)
2352 REGION16 clippingRects = WINPR_C_ARRAY_INIT;
2353 region16_init(&clippingRects);
2355 for (UINT32 i = 0; i < region->numRects; i++)
2358 const RFX_RECT* rect = &(region->rects[i]);
2360 clippingRect.left = (UINT16)nXDst + rect->x;
2361 clippingRect.top = (UINT16)nYDst + rect->y;
2362 clippingRect.right = clippingRect.left + rect->width;
2363 clippingRect.bottom = clippingRect.top + rect->height;
2364 if (!region16_union_rect(&clippingRects, &clippingRects, &clippingRect))
2366 region16_uninit(&clippingRects);
2371 for (UINT32 i = 0; i < surface->numUpdatedTiles; i++)
2373 UINT32 nbUpdateRects = 0;
2377 WINPR_ASSERT(surface->updatedTileIndices);
2378 const UINT32 index = surface->updatedTileIndices[i];
2380 WINPR_ASSERT(index < surface->tilesSize);
2384 const UINT32 dl = nXDst + tile->x;
2385 updateRect.left = WINPR_ASSERTING_INT_CAST(UINT16, dl);
2387 const UINT32 dt = nYDst + tile->y;
2388 updateRect.top = WINPR_ASSERTING_INT_CAST(UINT16, dt);
2389 updateRect.right = updateRect.left + 64;
2390 updateRect.bottom = updateRect.top + 64;
2392 REGION16 updateRegion = WINPR_C_ARRAY_INIT;
2393 region16_init(&updateRegion);
2394 if (!region16_intersect_rect(&updateRegion, &clippingRects, &updateRect))
2396 region16_uninit(&updateRegion);
2399 updateRects = region16_rects(&updateRegion, &nbUpdateRects);
2401 for (UINT32 j = 0; j < nbUpdateRects; j++)
2405 if (rect->left < updateRect.left)
2407 const UINT32 nXSrc = rect->left - updateRect.left;
2408 const UINT32 nYSrc = rect->top - updateRect.top;
2409 const UINT32 width = rect->right - rect->left;
2410 const UINT32 height = rect->bottom - rect->top;
2412 if (rect->left + width > surface->width)
2414 if (rect->top + height > surface->height)
2416 rc = freerdp_image_copy_no_overlap(
2417 pDstData, DstFormat, nDstStep, rect->left, rect->top, width, height, tile->data,
2418 progressive->format, tile->stride, nXSrc, nYSrc,
nullptr, FREERDP_KEEP_DST_ALPHA);
2424 if (!region16_union_rect(invalidRegion, invalidRegion, rect))
2426 region16_uninit(&updateRegion);
2432 region16_uninit(&updateRegion);
2435 tile->dirty = FALSE;
2439 region16_uninit(&clippingRects);
2443INT32 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)
2451 WINPR_ASSERT(progressive);
2456 WLog_Print(progressive->log, WLOG_ERROR,
"ProgressiveRegion no surface for %" PRIu16,
2461 PROGRESSIVE_BLOCK_REGION* WINPR_RESTRICT region = &progressive->region;
2462 WINPR_ASSERT(region);
2464 if (surface->frameId != frameId)
2466 surface->frameId = frameId;
2467 surface->numUpdatedTiles = 0;
2470 wStream ss = WINPR_C_ARRAY_INIT;
2471 wStream* s = Stream_StaticConstInit(&ss, pSrcData, SrcSize);
2476 case PIXEL_FORMAT_RGBA32:
2477 case PIXEL_FORMAT_RGBX32:
2478 case PIXEL_FORMAT_BGRA32:
2479 case PIXEL_FORMAT_BGRX32:
2480 progressive->format = DstFormat;
2483 progressive->format = PIXEL_FORMAT_XRGB32;
2487 const size_t start = Stream_GetPosition(s);
2488 progressive->state = 0;
2489 while (Stream_GetRemainingLength(s) > 0)
2491 if (progressive_parse_block(progressive, s, surface, region) < 0)
2496 const size_t end = Stream_GetPosition(s);
2497 if ((end - start) != SrcSize)
2499 WLog_Print(progressive->log, WLOG_ERROR,
2500 "total block len %" PRIuz
" does not match read data %" PRIu32, end - start,
2507 if (!update_tiles(progressive, surface, pDstData, DstFormat, nDstStep, nXDst, nYDst, region,
2514BOOL progressive_rfx_write_message_progressive_simple(
2515 PROGRESSIVE_CONTEXT* WINPR_RESTRICT progressive,
wStream* WINPR_RESTRICT s,
2516 const RFX_MESSAGE* WINPR_RESTRICT msg)
2518 RFX_CONTEXT* context =
nullptr;
2520 WINPR_ASSERT(progressive);
2523 context = progressive->rfx_context;
2524 return rfx_write_message_progressive_simple(context, s, msg);
2527int 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)
2536 UINT32 numRects = 0;
2538 RFX_MESSAGE* message =
nullptr;
2540 if (!progressive || !pSrcData || !ppDstData || !pDstSize)
2549 case PIXEL_FORMAT_ABGR32:
2550 case PIXEL_FORMAT_ARGB32:
2551 case PIXEL_FORMAT_XBGR32:
2552 case PIXEL_FORMAT_XRGB32:
2553 case PIXEL_FORMAT_BGRA32:
2554 case PIXEL_FORMAT_BGRX32:
2555 case PIXEL_FORMAT_RGBA32:
2556 case PIXEL_FORMAT_RGBX32:
2557 ScanLine = Width * 4;
2564 if (SrcSize < Height * ScanLine)
2569 numRects = (Width + 63) / 64;
2570 numRects *= (Height + 63) / 64;
2574 const int nr = region16_n_rects(invalidRegion);
2575 numRects = WINPR_ASSERTING_INT_CAST(uint32_t, nr);
2581 if (!Stream_EnsureRemainingCapacity(progressive->rects, numRects *
sizeof(
RFX_RECT)))
2583 rects = Stream_BufferAs(progressive->rects,
RFX_RECT);
2586 const RECTANGLE_16* region_rects = region16_rects(invalidRegion,
nullptr);
2587 for (UINT32 idx = 0; idx < numRects; idx++)
2594 rect->width = r->right - r->left;
2595 rect->height = r->bottom - r->top;
2603 for (UINT32 i = 0; i < numRects; i++)
2609 WINPR_ASSERT(Width >= x);
2610 WINPR_ASSERT(Height >= y);
2611 r->width = MIN(64, WINPR_ASSERTING_INT_CAST(UINT16, Width - x));
2612 r->height = MIN(64, WINPR_ASSERTING_INT_CAST(UINT16, Height - y));
2614 if (x + 64UL >= Width)
2622 WINPR_ASSERT(r->x % 64 == 0);
2623 WINPR_ASSERT(r->y % 64 == 0);
2624 WINPR_ASSERT(r->width <= 64);
2625 WINPR_ASSERT(r->height <= 64);
2628 s = progressive->buffer;
2629 Stream_ResetPosition(s);
2631 progressive->rfx_context->mode = RLGR1;
2633 progressive->rfx_context->width = WINPR_ASSERTING_INT_CAST(UINT16, Width);
2634 progressive->rfx_context->height = WINPR_ASSERTING_INT_CAST(UINT16, Height);
2635 rfx_context_set_pixel_format(progressive->rfx_context, SrcFormat);
2636 message = rfx_encode_message(progressive->rfx_context, rects, numRects, pSrcData, Width, Height,
2640 WLog_ERR(TAG,
"failed to encode rfx message");
2644 rc = progressive_rfx_write_message_progressive_simple(progressive, s, message);
2645 rfx_message_free(progressive->rfx_context, message);
2650 const size_t pos = Stream_GetPosition(s);
2651 WINPR_ASSERT(pos <= UINT32_MAX);
2652 *pDstSize = (UINT32)pos;
2654 *ppDstData = Stream_Buffer(s);
2660BOOL progressive_context_reset(PROGRESSIVE_CONTEXT* WINPR_RESTRICT progressive)
2662 return (progressive !=
nullptr);
2665PROGRESSIVE_CONTEXT* progressive_context_new(BOOL Compressor)
2667 return progressive_context_new_ex(Compressor, 0);
2670PROGRESSIVE_CONTEXT* progressive_context_new_ex(BOOL Compressor, UINT32 ThreadingFlags)
2672 PROGRESSIVE_CONTEXT* progressive =
2673 (PROGRESSIVE_CONTEXT*)winpr_aligned_calloc(1,
sizeof(PROGRESSIVE_CONTEXT), 32);
2678 progressive->Compressor = Compressor;
2679 progressive->quantProgValFull.quality = 100;
2680 progressive->log = WLog_Get(TAG);
2681 if (!progressive->log)
2683 progressive->rfx_context = rfx_context_new_ex(Compressor, ThreadingFlags);
2684 if (!progressive->rfx_context)
2686 progressive->buffer = Stream_New(
nullptr, 1024);
2687 if (!progressive->buffer)
2689 progressive->rects = Stream_New(
nullptr, 1024);
2690 if (!progressive->rects)
2692 progressive->bufferPool = BufferPool_New(TRUE, (8192LL + 32LL) * 3LL, 16);
2693 if (!progressive->bufferPool)
2695 progressive->SurfaceContexts = HashTable_New(TRUE);
2696 if (!progressive->SurfaceContexts)
2700 wObject* obj = HashTable_ValueObject(progressive->SurfaceContexts);
2706 WINPR_PRAGMA_DIAG_PUSH
2707 WINPR_PRAGMA_DIAG_IGNORED_MISMATCHED_DEALLOC
2708 progressive_context_free(progressive);
2709 WINPR_PRAGMA_DIAG_POP
2713void progressive_context_free(PROGRESSIVE_CONTEXT* progressive)
2718 Stream_Free(progressive->buffer, TRUE);
2719 Stream_Free(progressive->rects, TRUE);
2720 rfx_context_free(progressive->rfx_context);
2722 BufferPool_Free(progressive->bufferPool);
2723 HashTable_Free(progressive->SurfaceContexts);
2725 winpr_aligned_free(progressive);
WINPR_ATTR_NODISCARD fn_lShiftC_16s_inplace_t lShiftC_16s_inplace
WINPR_ATTR_NODISCARD fn_add_16s_inplace_t add_16s_inplace
Do vecotor addition, store result in both input buffers pSrcDst1 = pSrcDst2 = pSrcDst1 + pSrcDst2.
This struct contains function pointer to initialize/free objects.
OBJECT_FREE_FN fnObjectFree