2014-06-04 04:51:28 +04:00
|
|
|
/**
|
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
|
|
|
* ClearCodec Bitmap Compression
|
|
|
|
*
|
|
|
|
* Copyright 2014 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <winpr/crt.h>
|
|
|
|
#include <winpr/print.h>
|
|
|
|
#include <winpr/bitstream.h>
|
|
|
|
|
2014-06-26 02:39:28 +04:00
|
|
|
#include <freerdp/codec/color.h>
|
2014-06-04 04:51:28 +04:00
|
|
|
#include <freerdp/codec/clear.h>
|
|
|
|
|
2014-06-27 01:08:51 +04:00
|
|
|
static UINT32 CLEAR_LOG2_FLOOR[256] =
|
|
|
|
{
|
|
|
|
0, 0, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3,
|
|
|
|
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
|
|
|
|
5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
|
|
|
|
5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
|
|
|
|
6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
|
|
|
|
6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
|
|
|
|
6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
|
|
|
|
6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
|
|
|
|
7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
|
|
|
|
7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
|
|
|
|
7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
|
|
|
|
7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
|
|
|
|
7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
|
|
|
|
7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
|
|
|
|
7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
|
|
|
|
7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7
|
|
|
|
};
|
|
|
|
|
|
|
|
static BYTE CLEAR_8BIT_MASKS[9] =
|
|
|
|
{
|
|
|
|
0x00, 0x01, 0x03, 0x07, 0x0F, 0x1F, 0x3F, 0x7F, 0xFF
|
|
|
|
};
|
|
|
|
|
2014-06-26 02:39:28 +04:00
|
|
|
int clear_decompress(CLEAR_CONTEXT* clear, BYTE* pSrcData, UINT32 SrcSize,
|
|
|
|
BYTE** ppDstData, DWORD DstFormat, int nDstStep, int nXDst, int nYDst, int nWidth, int nHeight)
|
2014-06-04 04:51:28 +04:00
|
|
|
{
|
2014-06-27 01:08:51 +04:00
|
|
|
UINT32 i;
|
|
|
|
UINT32 count;
|
|
|
|
BYTE r, g, b;
|
|
|
|
UINT32 color;
|
2014-06-13 20:17:16 +04:00
|
|
|
BYTE glyphFlags;
|
|
|
|
BYTE seqNumber;
|
|
|
|
UINT16 glyphIndex;
|
|
|
|
UINT32 offset = 0;
|
2014-06-27 01:08:51 +04:00
|
|
|
BYTE* pDstData = NULL;
|
2014-06-13 20:17:16 +04:00
|
|
|
UINT32 residualByteCount;
|
|
|
|
UINT32 bandsByteCount;
|
|
|
|
UINT32 subcodecByteCount;
|
2014-06-27 01:08:51 +04:00
|
|
|
BYTE runLengthFactor1;
|
|
|
|
UINT16 runLengthFactor2;
|
|
|
|
UINT32 runLengthFactor3;
|
|
|
|
UINT32 runLengthFactor;
|
|
|
|
|
|
|
|
if (!ppDstData)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
pDstData = *ppDstData;
|
|
|
|
|
|
|
|
if (!pDstData)
|
|
|
|
return -1;
|
2014-06-13 20:17:16 +04:00
|
|
|
|
|
|
|
if (SrcSize < 2)
|
2014-06-14 01:30:13 +04:00
|
|
|
return -1001;
|
2014-06-13 20:17:16 +04:00
|
|
|
|
|
|
|
glyphFlags = pSrcData[0];
|
|
|
|
seqNumber = pSrcData[1];
|
|
|
|
offset += 2;
|
|
|
|
|
|
|
|
printf("glyphFlags: 0x%02X seqNumber: %d\n", glyphFlags, seqNumber);
|
|
|
|
|
|
|
|
if (glyphFlags & CLEARCODEC_FLAG_GLYPH_INDEX)
|
|
|
|
{
|
|
|
|
if (SrcSize < 4)
|
2014-06-14 01:30:13 +04:00
|
|
|
return -1002;
|
2014-06-13 20:17:16 +04:00
|
|
|
|
|
|
|
glyphIndex = *((UINT16*) &pSrcData[2]);
|
|
|
|
offset += 2;
|
|
|
|
|
|
|
|
if (glyphFlags & CLEARCODEC_FLAG_GLYPH_HIT)
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Copy pixels from the Decompressor Glyph Storage position
|
|
|
|
* specified by the glyphIndex field to the output bitmap
|
|
|
|
*/
|
|
|
|
|
|
|
|
return 1; /* Finish */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Read composition payload header parameters */
|
|
|
|
|
|
|
|
if ((SrcSize - offset) < 12)
|
2014-06-14 01:30:13 +04:00
|
|
|
return -1003;
|
2014-06-13 20:17:16 +04:00
|
|
|
|
|
|
|
residualByteCount = *((UINT32*) &pSrcData[offset]);
|
|
|
|
bandsByteCount = *((UINT32*) &pSrcData[offset + 4]);
|
|
|
|
subcodecByteCount = *((UINT32*) &pSrcData[offset + 8]);
|
|
|
|
offset += 12;
|
|
|
|
|
|
|
|
printf("residualByteCount: %d bandsByteCount: %d subcodecByteCount: %d\n",
|
|
|
|
residualByteCount, bandsByteCount, subcodecByteCount);
|
|
|
|
|
|
|
|
if (residualByteCount > 0)
|
|
|
|
{
|
|
|
|
UINT32 suboffset;
|
|
|
|
BYTE* residualData;
|
2014-06-27 01:08:51 +04:00
|
|
|
UINT32* pDstPixel;
|
|
|
|
UINT32 pixelX, pixelY;
|
2014-06-26 02:39:28 +04:00
|
|
|
UINT32 pixelIndex = 0;
|
2014-06-27 01:08:51 +04:00
|
|
|
UINT32 pixelCount = 0;
|
2014-06-13 20:17:16 +04:00
|
|
|
|
|
|
|
if ((SrcSize - offset) < residualByteCount)
|
2014-06-14 01:30:13 +04:00
|
|
|
return -1004;
|
2014-06-13 20:17:16 +04:00
|
|
|
|
|
|
|
suboffset = 0;
|
|
|
|
residualData = &pSrcData[offset];
|
|
|
|
|
|
|
|
while (suboffset < residualByteCount)
|
|
|
|
{
|
|
|
|
if ((residualByteCount - suboffset) < 4)
|
2014-06-14 01:30:13 +04:00
|
|
|
return -1005;
|
2014-06-13 20:17:16 +04:00
|
|
|
|
2014-06-27 01:08:51 +04:00
|
|
|
b = residualData[suboffset]; /* blueValue */
|
|
|
|
g = residualData[suboffset + 1]; /* greenValue */
|
|
|
|
r = residualData[suboffset + 2]; /* redValue */
|
|
|
|
color = RGB32(r, g, b);
|
2014-06-13 20:17:16 +04:00
|
|
|
suboffset += 3;
|
|
|
|
|
|
|
|
runLengthFactor1 = residualData[suboffset];
|
|
|
|
runLengthFactor = runLengthFactor1;
|
|
|
|
suboffset += 1;
|
|
|
|
|
|
|
|
if (runLengthFactor1 >= 0xFF)
|
|
|
|
{
|
|
|
|
if ((residualByteCount - suboffset) < 2)
|
2014-06-14 01:30:13 +04:00
|
|
|
return -1006;
|
2014-06-13 20:17:16 +04:00
|
|
|
|
|
|
|
runLengthFactor2 = *((UINT16*) &residualData[suboffset]);
|
|
|
|
runLengthFactor = runLengthFactor2;
|
|
|
|
suboffset += 2;
|
|
|
|
|
|
|
|
if (runLengthFactor2 >= 0xFFFF)
|
|
|
|
{
|
|
|
|
if ((residualByteCount - suboffset) < 4)
|
2014-06-14 01:30:13 +04:00
|
|
|
return -1007;
|
2014-06-13 20:17:16 +04:00
|
|
|
|
|
|
|
runLengthFactor3 = *((UINT32*) &residualData[suboffset]);
|
|
|
|
runLengthFactor = runLengthFactor3;
|
|
|
|
suboffset += 4;
|
|
|
|
}
|
|
|
|
}
|
2014-06-26 02:39:28 +04:00
|
|
|
|
2014-06-27 01:08:51 +04:00
|
|
|
pixelX = (pixelIndex % nWidth);
|
|
|
|
pixelY = (pixelIndex - pixelX) / nWidth;
|
|
|
|
pixelCount = runLengthFactor;
|
|
|
|
|
|
|
|
while (pixelCount > 0)
|
|
|
|
{
|
|
|
|
count = nWidth - pixelX;
|
|
|
|
|
|
|
|
if (count > pixelCount)
|
|
|
|
count = pixelCount;
|
|
|
|
|
|
|
|
pDstPixel = (UINT32*) &pDstData[((nYDst + pixelY) * nDstStep) + ((nXDst + pixelX) * 4)];
|
|
|
|
pixelCount -= count;
|
|
|
|
|
|
|
|
while (count--)
|
|
|
|
{
|
|
|
|
*pDstPixel++ = color;
|
|
|
|
}
|
|
|
|
|
|
|
|
pixelX = 0;
|
|
|
|
pixelY++;
|
|
|
|
}
|
2014-06-26 02:39:28 +04:00
|
|
|
|
|
|
|
pixelIndex += runLengthFactor;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pixelIndex != (nWidth * nHeight))
|
|
|
|
{
|
|
|
|
fprintf(stderr, "ClearCodec residual data unexpected pixel count: Actual: %d, Expected: %d\n",
|
|
|
|
pixelIndex, (nWidth * nHeight));
|
2014-06-13 20:17:16 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Decompress residual layer and write to output bitmap */
|
|
|
|
offset += residualByteCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bandsByteCount > 0)
|
|
|
|
{
|
|
|
|
BYTE* bandsData;
|
|
|
|
UINT32 suboffset;
|
|
|
|
|
|
|
|
if ((SrcSize - offset) < bandsByteCount)
|
2014-06-14 01:30:13 +04:00
|
|
|
return -1008;
|
2014-06-13 20:17:16 +04:00
|
|
|
|
|
|
|
suboffset = 0;
|
|
|
|
bandsData = &pSrcData[offset];
|
|
|
|
|
|
|
|
while (suboffset < bandsByteCount)
|
|
|
|
{
|
|
|
|
UINT16 xStart;
|
|
|
|
UINT16 xEnd;
|
|
|
|
UINT16 yStart;
|
|
|
|
UINT16 yEnd;
|
|
|
|
BYTE* vBars;
|
|
|
|
UINT16 vBarHeader;
|
2014-06-14 01:30:13 +04:00
|
|
|
UINT16 vBarIndex;
|
|
|
|
UINT16 vBarYOn;
|
|
|
|
UINT16 vBarYOff;
|
|
|
|
int vBarCount;
|
|
|
|
int vBarPixelCount;
|
2014-06-13 20:17:16 +04:00
|
|
|
|
|
|
|
if ((bandsByteCount - suboffset) < 11)
|
2014-06-14 01:30:13 +04:00
|
|
|
return -1009;
|
2014-06-13 20:17:16 +04:00
|
|
|
|
|
|
|
xStart = *((UINT16*) &bandsData[suboffset]);
|
|
|
|
xEnd = *((UINT16*) &bandsData[suboffset + 2]);
|
|
|
|
yStart = *((UINT16*) &bandsData[suboffset + 4]);
|
|
|
|
yEnd = *((UINT16*) &bandsData[suboffset + 6]);
|
2014-06-27 01:08:51 +04:00
|
|
|
b = bandsData[suboffset + 8]; /* blueBkg */
|
|
|
|
g = bandsData[suboffset + 9]; /* greenBkg */
|
|
|
|
r = bandsData[suboffset + 10]; /* redBkg */
|
|
|
|
color = RGB32(r, g, b);
|
2014-06-13 20:17:16 +04:00
|
|
|
suboffset += 11;
|
|
|
|
|
2014-06-14 01:30:13 +04:00
|
|
|
vBarCount = (xEnd - xStart) + 1;
|
2014-06-13 20:17:16 +04:00
|
|
|
|
2014-06-14 01:30:13 +04:00
|
|
|
printf("CLEARCODEC_BAND: xStart: %d xEnd: %d yStart: %d yEnd: %d vBarCount: %d blueBkg: 0x%02X greenBkg: 0x%02X redBkg: 0x%02X\n",
|
2014-06-27 01:08:51 +04:00
|
|
|
xStart, xEnd, yStart, yEnd, vBarCount, b, g, r);
|
2014-06-13 20:17:16 +04:00
|
|
|
|
2014-06-27 01:08:51 +04:00
|
|
|
for (i = 0; i < vBarCount; i++)
|
2014-06-13 20:17:16 +04:00
|
|
|
{
|
2014-06-14 01:30:13 +04:00
|
|
|
vBars = &bandsData[suboffset];
|
|
|
|
|
|
|
|
if ((bandsByteCount - suboffset) < 2)
|
|
|
|
return -1010;
|
|
|
|
|
|
|
|
vBarHeader = *((UINT16*) &vBars[0]);
|
2014-06-13 20:17:16 +04:00
|
|
|
suboffset += 2;
|
|
|
|
|
2014-06-14 01:30:13 +04:00
|
|
|
if ((vBarHeader & 0xC000) == 0x8000) /* VBAR_CACHE_HIT */
|
|
|
|
{
|
|
|
|
vBarIndex = (vBarHeader & 0x7FFF);
|
|
|
|
|
|
|
|
printf("VBAR_CACHE_HIT: vBarIndex: %d\n",
|
|
|
|
vBarIndex);
|
|
|
|
}
|
|
|
|
else if ((vBarHeader & 0xC000) == 0xC000) /* SHORT_VBAR_CACHE_HIT */
|
|
|
|
{
|
|
|
|
vBarIndex = (vBarHeader & 0x3FFF);
|
|
|
|
|
|
|
|
if ((bandsByteCount - suboffset) < 1)
|
|
|
|
return -1011;
|
|
|
|
|
|
|
|
vBarYOn = vBars[2];
|
|
|
|
suboffset += 1;
|
|
|
|
|
|
|
|
printf("SHORT_VBAR_CACHE_HIT: vBarIndex: %d vBarYOn: %d\n",
|
|
|
|
vBarIndex, vBarYOn);
|
|
|
|
}
|
|
|
|
else if ((vBarHeader & 0xC000) == 0x0000) /* SHORT_VBAR_CACHE_MISS */
|
|
|
|
{
|
|
|
|
vBarYOn = (vBarHeader & 0xFF);
|
|
|
|
vBarYOff = ((vBarHeader >> 8) & 0x3F);
|
|
|
|
|
|
|
|
if (vBarYOff < vBarYOn)
|
|
|
|
return -1012;
|
|
|
|
|
|
|
|
/* shortVBarPixels: variable */
|
|
|
|
|
|
|
|
vBarPixelCount = (3 * (vBarYOff - vBarYOn));
|
|
|
|
|
|
|
|
printf("SHORT_VBAR_CACHE_MISS: vBarYOn: %d vBarYOff: %d bytes: %d\n",
|
|
|
|
vBarYOn, vBarYOff, vBarPixelCount);
|
|
|
|
|
|
|
|
if ((bandsByteCount - suboffset) < vBarPixelCount)
|
|
|
|
return -1013;
|
|
|
|
|
|
|
|
suboffset += vBarPixelCount;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return -1014; /* invalid vBarHeader */
|
|
|
|
}
|
|
|
|
}
|
2014-06-13 20:17:16 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Decompress bands layer and write to output bitmap */
|
|
|
|
offset += bandsByteCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (subcodecByteCount > 0)
|
|
|
|
{
|
|
|
|
UINT16 xStart;
|
|
|
|
UINT16 yStart;
|
|
|
|
UINT16 width;
|
|
|
|
UINT16 height;
|
|
|
|
BYTE* bitmapData;
|
2014-06-27 01:08:51 +04:00
|
|
|
UINT32 bitmapDataOffset;
|
2014-06-13 20:17:16 +04:00
|
|
|
UINT32 bitmapDataByteCount;
|
|
|
|
BYTE subcodecId;
|
|
|
|
BYTE* subcodecs;
|
|
|
|
UINT32 suboffset;
|
2014-06-27 01:08:51 +04:00
|
|
|
BYTE paletteCount;
|
|
|
|
BYTE* paletteEntries;
|
|
|
|
BYTE stopIndex;
|
|
|
|
BYTE suiteDepth;
|
|
|
|
UINT32 numBits;
|
2014-06-13 20:17:16 +04:00
|
|
|
|
|
|
|
if ((SrcSize - offset) < subcodecByteCount)
|
2014-06-14 01:30:13 +04:00
|
|
|
return -1015;
|
2014-06-13 20:17:16 +04:00
|
|
|
|
|
|
|
suboffset = 0;
|
|
|
|
subcodecs = &pSrcData[offset];
|
|
|
|
|
|
|
|
while (suboffset < subcodecByteCount)
|
|
|
|
{
|
|
|
|
if ((subcodecByteCount - suboffset) < 13)
|
2014-06-14 01:30:13 +04:00
|
|
|
return -1016;
|
2014-06-13 20:17:16 +04:00
|
|
|
|
|
|
|
xStart = *((UINT16*) &subcodecs[suboffset]);
|
|
|
|
yStart = *((UINT16*) &subcodecs[suboffset + 2]);
|
|
|
|
width = *((UINT16*) &subcodecs[suboffset + 4]);
|
|
|
|
height = *((UINT16*) &subcodecs[suboffset + 6]);
|
|
|
|
bitmapDataByteCount = *((UINT32*) &subcodecs[suboffset + 8]);
|
|
|
|
subcodecId = subcodecs[suboffset + 12];
|
|
|
|
suboffset += 13;
|
|
|
|
|
2014-06-14 01:30:13 +04:00
|
|
|
printf("bitmapDataByteCount: %d subcodecByteCount: %d suboffset: %d subCodecId: %d\n",
|
|
|
|
bitmapDataByteCount, subcodecByteCount, suboffset, subcodecId);
|
2014-06-13 20:17:16 +04:00
|
|
|
|
|
|
|
if ((subcodecByteCount - suboffset) < bitmapDataByteCount)
|
2014-06-14 01:30:13 +04:00
|
|
|
return -1017;
|
2014-06-13 20:17:16 +04:00
|
|
|
|
|
|
|
bitmapData = &subcodecs[suboffset];
|
|
|
|
|
2014-06-27 01:08:51 +04:00
|
|
|
if (subcodecId == 0) /* Uncompressed */
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
else if (subcodecId == 1) /* NSCodec */
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
else if (subcodecId == 2) /* CLEARCODEC_SUBCODEC_RLEX */
|
|
|
|
{
|
|
|
|
paletteCount = bitmapData[0];
|
|
|
|
paletteEntries = &bitmapData[1];
|
|
|
|
bitmapDataOffset = 1 + (paletteCount * 3);
|
|
|
|
|
|
|
|
for (i = 0; i < paletteCount; i++)
|
|
|
|
{
|
|
|
|
b = paletteEntries[(i * 3) + 0]; /* blue */
|
|
|
|
g = paletteEntries[(i * 3) + 1]; /* green */
|
|
|
|
r = paletteEntries[(i * 3) + 2]; /* red */
|
|
|
|
}
|
|
|
|
|
|
|
|
numBits = CLEAR_LOG2_FLOOR[paletteCount - 1] + 1;
|
|
|
|
|
|
|
|
while (bitmapDataOffset < bitmapDataByteCount)
|
|
|
|
{
|
|
|
|
stopIndex = bitmapData[bitmapDataOffset] & CLEAR_8BIT_MASKS[numBits];
|
|
|
|
suiteDepth = (bitmapData[bitmapDataOffset] >> numBits) & CLEAR_8BIT_MASKS[numBits];
|
|
|
|
bitmapDataOffset++;
|
|
|
|
|
|
|
|
runLengthFactor1 = bitmapData[bitmapDataOffset];
|
|
|
|
runLengthFactor = runLengthFactor1;
|
|
|
|
bitmapDataOffset += 1;
|
|
|
|
|
|
|
|
if (runLengthFactor1 >= 0xFF)
|
|
|
|
{
|
|
|
|
if ((bitmapDataByteCount - bitmapDataOffset) < 2)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
runLengthFactor2 = *((UINT16*) &bitmapData[bitmapDataOffset]);
|
|
|
|
runLengthFactor = runLengthFactor2;
|
|
|
|
bitmapDataOffset += 2;
|
|
|
|
|
|
|
|
if (runLengthFactor2 >= 0xFFFF)
|
|
|
|
{
|
|
|
|
if ((bitmapDataByteCount - bitmapDataOffset) < 4)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
runLengthFactor3 = *((UINT32*) &bitmapData[bitmapDataOffset]);
|
|
|
|
runLengthFactor = runLengthFactor3;
|
|
|
|
bitmapDataOffset += 4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fprintf(stderr, "clear_decompress: unknown subcodecId: %d\n", subcodecId);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2014-06-13 20:17:16 +04:00
|
|
|
suboffset += bitmapDataByteCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Decompress subcodec layer and write to output bitmap */
|
|
|
|
offset += subcodecByteCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (glyphFlags & CLEARCODEC_FLAG_GLYPH_INDEX)
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Copy decompressed bitmap to the Decompressor Glyph
|
|
|
|
* Storage position specified by the glyphIndex field
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
|
|
|
if (offset != SrcSize)
|
|
|
|
{
|
|
|
|
printf("clear_decompress: incomplete processing of bytes: Actual: %d, Expected: %d\n", offset, SrcSize);
|
|
|
|
}
|
|
|
|
|
2014-06-04 04:51:28 +04:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int clear_compress(CLEAR_CONTEXT* clear, BYTE* pSrcData, UINT32 SrcSize, BYTE** ppDstData, UINT32* pDstSize)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void clear_context_reset(CLEAR_CONTEXT* clear)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
CLEAR_CONTEXT* clear_context_new(BOOL Compressor)
|
|
|
|
{
|
|
|
|
CLEAR_CONTEXT* clear;
|
|
|
|
|
|
|
|
clear = (CLEAR_CONTEXT*) calloc(1, sizeof(CLEAR_CONTEXT));
|
|
|
|
|
|
|
|
if (clear)
|
|
|
|
{
|
|
|
|
clear->Compressor = Compressor;
|
|
|
|
|
|
|
|
clear_context_reset(clear);
|
|
|
|
}
|
|
|
|
|
|
|
|
return clear;
|
|
|
|
}
|
|
|
|
|
|
|
|
void clear_context_free(CLEAR_CONTEXT* clear)
|
|
|
|
{
|
|
|
|
if (clear)
|
|
|
|
{
|
|
|
|
free(clear);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|