FreeRDP/libfreerdp/codec/color.c

573 lines
15 KiB
C
Raw Normal View History

2011-07-01 05:23:36 +04:00
/**
2012-10-09 07:02:04 +04:00
* FreeRDP: A Remote Desktop Protocol Implementation
2011-09-14 00:30:16 +04:00
* Color Conversion Routines
2011-07-01 05:23:36 +04:00
*
* Copyright 2010 Marc-Andre Moreau <marcandre.moreau@gmail.com>
* Copyright 2016 Armin Novak <armin.novak@thincast.com>
* Copyright 2016 Thincast Technologies GmbH
2011-07-01 05:23:36 +04:00
*
* 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
2011-07-01 05:23:36 +04:00
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <winpr/crt.h>
#include <freerdp/log.h>
2011-07-01 05:23:36 +04:00
#include <freerdp/freerdp.h>
2014-07-03 00:30:04 +04:00
#include <freerdp/primitives.h>
2011-07-01 05:23:36 +04:00
#define TAG FREERDP_TAG("color")
BYTE* freerdp_glyph_convert(UINT32 width, UINT32 height, const BYTE* data)
2011-09-29 08:33:16 +04:00
{
UINT32 x, y;
const BYTE* srcp;
BYTE* dstp;
BYTE* dstData;
UINT32 scanline;
/*
* converts a 1-bit-per-pixel glyph to a one-byte-per-pixel glyph:
* this approach uses a little more memory, but provides faster
* means of accessing individual pixels in blitting operations
*/
scanline = (width + 7) / 8;
dstData = (BYTE*) _aligned_malloc(width * height, 16);
if (!dstData)
return NULL;
ZeroMemory(dstData, width * height);
dstp = dstData;
for (y = 0; y < height; y++)
{
srcp = data + (y * scanline);
for (x = 0; x < width; x++)
{
if ((*srcp & (0x80 >> (x % 8))) != 0)
*dstp = 0xFF;
dstp++;
if (((x + 1) % 8 == 0) && x != 0)
srcp++;
}
}
return dstData;
}
2016-04-11 18:30:29 +03:00
BOOL freerdp_image_copy_from_monochrome(BYTE* pDstData, UINT32 DstFormat,
2016-10-14 11:01:02 +03:00
UINT32 nDstStep, UINT32 nXDst, UINT32 nYDst,
UINT32 nWidth, UINT32 nHeight,
const BYTE* pSrcData,
UINT32 backColor, UINT32 foreColor,
const gdiPalette* palette)
{
UINT32 x, y;
BOOL vFlip;
UINT32 monoStep;
2017-02-20 16:18:18 +03:00
const UINT32 dstBytesPerPixel = GetBytesPerPixel(DstFormat);
2014-09-18 02:30:09 +04:00
2018-10-16 18:14:56 +03:00
if (!pDstData || !pSrcData || !palette)
return FALSE;
2016-04-11 18:30:29 +03:00
if (nDstStep == 0)
2014-09-18 02:30:09 +04:00
nDstStep = dstBytesPerPixel * nWidth;
2016-10-14 11:01:02 +03:00
vFlip = FALSE;
monoStep = (nWidth + 7) / 8;
for (y = 0; y < nHeight; y++)
{
2016-04-11 18:30:29 +03:00
const BYTE* monoBits;
BYTE* pDstLine = &pDstData[((nYDst + y) * nDstStep)];
2016-04-11 18:30:29 +03:00
UINT32 monoBit = 0x80;
if (!vFlip)
monoBits = &pSrcData[monoStep * y];
else
monoBits = &pSrcData[monoStep * (nHeight - y - 1)];
for (x = 0; x < nWidth; x++)
{
BYTE* pDstPixel = &pDstLine[((nXDst + x) * GetBytesPerPixel(DstFormat))];
2016-04-11 18:30:29 +03:00
BOOL monoPixel = (*monoBits & monoBit) ? TRUE : FALSE;
if (!(monoBit >>= 1))
{
monoBits++;
monoBit = 0x80;
}
if (monoPixel)
WriteColor(pDstPixel, DstFormat, backColor);
else
WriteColor(pDstPixel, DstFormat, foreColor);
}
}
2016-12-05 15:44:08 +03:00
return TRUE;
}
2016-08-02 16:21:28 +03:00
static INLINE UINT32 freerdp_image_inverted_pointer_color(UINT32 x, UINT32 y,
2016-10-14 11:01:02 +03:00
UINT32 format)
{
#if 1
/**
* Inverted pointer colors (where individual pixels can change their
* color to accommodate the background behind them) only seem to be
* supported on Windows.
* Using a static replacement color for these pixels (e.g. black)
* might result in invisible pointers depending on the background.
* This function returns either black or white, depending on the
* pixel's position.
*/
2016-08-02 16:21:28 +03:00
BYTE fill = (x + y) & 1 ? 0x00 : 0xFF;
#else
2016-08-02 16:21:28 +03:00
BYTE fill = 0x00;
#endif
2017-11-24 15:19:48 +03:00
return FreeRDPGetColor(format, fill, fill, fill, 0xFF);
}
2014-06-13 16:36:09 +04:00
/**
* Drawing Monochrome Pointers:
* http://msdn.microsoft.com/en-us/library/windows/hardware/ff556143/
*
* Drawing Color Pointers:
* http://msdn.microsoft.com/en-us/library/windows/hardware/ff556138/
*/
BOOL freerdp_image_copy_from_pointer_data(
BYTE* pDstData, UINT32 DstFormat, UINT32 nDstStep,
UINT32 nXDst, UINT32 nYDst, UINT32 nWidth, UINT32 nHeight,
const BYTE* xorMask, UINT32 xorMaskLength,
const BYTE* andMask, UINT32 andMaskLength,
UINT32 xorBpp, const gdiPalette* palette)
{
UINT32 x, y;
BOOL vFlip;
UINT32 xorStep;
UINT32 andStep;
UINT32 xorBit;
UINT32 andBit;
UINT32 xorPixel;
UINT32 andPixel;
UINT32 dstBitsPerPixel;
UINT32 dstBytesPerPixel;
dstBitsPerPixel = GetBitsPerPixel(DstFormat);
dstBytesPerPixel = GetBytesPerPixel(DstFormat);
2014-09-18 02:30:09 +04:00
2016-07-21 17:51:42 +03:00
if (nDstStep <= 0)
2014-09-18 02:30:09 +04:00
nDstStep = dstBytesPerPixel * nWidth;
for (y = nYDst; y < nHeight; y++)
{
BYTE* pDstLine = &pDstData[y * nDstStep + nXDst * dstBytesPerPixel];
memset(pDstLine, 0, dstBytesPerPixel * (nWidth - nXDst));
}
2016-10-14 11:01:02 +03:00
vFlip = (xorBpp == 1) ? FALSE : TRUE;
andStep = (nWidth + 7) / 8;
andStep += (andStep % 2);
2014-10-15 04:59:22 +04:00
if (!xorMask || (xorMaskLength == 0))
2016-12-05 15:44:08 +03:00
return FALSE;
2016-08-02 16:21:28 +03:00
switch (xorBpp)
{
2016-08-02 16:21:28 +03:00
case 1:
if (!andMask || (andMaskLength == 0))
2016-12-05 15:44:08 +03:00
return FALSE;
2016-08-02 16:21:28 +03:00
xorStep = (nWidth + 7) / 8;
xorStep += (xorStep % 2);
2016-08-02 16:21:28 +03:00
if (xorStep * nHeight > xorMaskLength)
2016-12-05 15:44:08 +03:00
return FALSE;
2016-08-02 16:21:28 +03:00
if (andStep * nHeight > andMaskLength)
2016-12-05 15:44:08 +03:00
return FALSE;
2016-08-02 16:21:28 +03:00
for (y = 0; y < nHeight; y++)
{
2016-08-02 16:21:28 +03:00
const BYTE* andBits;
const BYTE* xorBits;
BYTE* pDstPixel = &pDstData[((nYDst + y) * nDstStep) +
2018-10-16 18:14:56 +03:00
(nXDst * GetBytesPerPixel(DstFormat))];
2016-08-02 16:21:28 +03:00
xorBit = andBit = 0x80;
2016-08-02 16:21:28 +03:00
if (!vFlip)
{
2016-08-02 16:21:28 +03:00
xorBits = &xorMask[xorStep * y];
andBits = &andMask[andStep * y];
}
2016-08-02 16:21:28 +03:00
else
{
2016-08-02 16:21:28 +03:00
xorBits = &xorMask[xorStep * (nHeight - y - 1)];
andBits = &andMask[andStep * (nHeight - y - 1)];
}
2016-08-02 16:21:28 +03:00
for (x = 0; x < nWidth; x++)
{
UINT32 color = 0;
xorPixel = (*xorBits & xorBit) ? 1 : 0;
2016-08-02 16:21:28 +03:00
if (!(xorBit >>= 1))
{
xorBits++;
xorBit = 0x80;
}
2016-08-02 16:21:28 +03:00
andPixel = (*andBits & andBit) ? 1 : 0;
2016-08-02 16:21:28 +03:00
if (!(andBit >>= 1))
{
andBits++;
andBit = 0x80;
}
2016-08-02 16:21:28 +03:00
if (!andPixel && !xorPixel)
2017-11-24 15:19:48 +03:00
color = FreeRDPGetColor(DstFormat, 0, 0, 0, 0xFF); /* black */
2016-08-02 16:21:28 +03:00
else if (!andPixel && xorPixel)
2017-11-24 15:19:48 +03:00
color = FreeRDPGetColor(DstFormat, 0xFF, 0xFF, 0xFF, 0xFF); /* white */
2016-08-02 16:21:28 +03:00
else if (andPixel && !xorPixel)
2017-11-24 15:19:48 +03:00
color = FreeRDPGetColor(DstFormat, 0, 0, 0, 0); /* transparent */
2016-08-02 16:21:28 +03:00
else if (andPixel && xorPixel)
color = freerdp_image_inverted_pointer_color(x, y, DstFormat); /* inverted */
WriteColor(pDstPixel, DstFormat, color);
pDstPixel += GetBytesPerPixel(DstFormat);
}
}
2016-12-05 15:44:08 +03:00
return TRUE;
2016-08-02 16:21:28 +03:00
case 8:
case 16:
case 24:
case 32:
{
2016-08-02 16:21:28 +03:00
UINT32 xorBytesPerPixel = xorBpp >> 3;
xorStep = nWidth * xorBytesPerPixel;
2016-08-02 16:21:28 +03:00
if (xorBpp == 8 && !palette)
{
WLog_ERR(TAG, "null palette in conversion from %"PRIu32" bpp to %"PRIu32" bpp",
2016-10-14 11:01:02 +03:00
xorBpp, dstBitsPerPixel);
2016-12-05 15:44:08 +03:00
return FALSE;
}
2016-08-02 16:21:28 +03:00
if (xorStep * nHeight > xorMaskLength)
2016-12-05 15:44:08 +03:00
return FALSE;
if (andMask)
{
2016-08-02 16:21:28 +03:00
if (andStep * nHeight > andMaskLength)
2016-12-05 15:44:08 +03:00
return FALSE;
}
2016-08-02 16:21:28 +03:00
for (y = 0; y < nHeight; y++)
{
2016-08-02 16:21:28 +03:00
const BYTE* xorBits;
const BYTE* andBits = NULL;
BYTE* pDstPixel = &pDstData[((nYDst + y) * nDstStep) +
2018-10-16 18:14:56 +03:00
(nXDst * GetBytesPerPixel(DstFormat))];
2016-08-02 16:21:28 +03:00
andBit = 0x80;
2016-08-02 16:21:28 +03:00
if (!vFlip)
{
if (andMask)
andBits = &andMask[andStep * y];
xorBits = &xorMask[xorStep * y];
}
else
2016-08-02 16:21:28 +03:00
{
if (andMask)
andBits = &andMask[andStep * (nHeight - y - 1)];
xorBits = &xorMask[xorStep * (nHeight - y - 1)];
}
for (x = 0; x < nWidth; x++)
{
UINT32 pixelFormat;
UINT32 color;
if (xorBpp == 32)
{
2016-08-02 18:11:27 +03:00
pixelFormat = PIXEL_FORMAT_BGRA32;
2016-08-02 16:21:28 +03:00
xorPixel = ReadColor(xorBits, pixelFormat);
}
else if (xorBpp == 16)
{
pixelFormat = PIXEL_FORMAT_RGB15;
xorPixel = ReadColor(xorBits, pixelFormat);
}
else if (xorBpp == 8)
{
pixelFormat = palette->format;
xorPixel = palette->palette[xorBits[0]];
}
else
{
2016-08-02 18:11:27 +03:00
pixelFormat = PIXEL_FORMAT_BGR24;
2016-08-02 16:21:28 +03:00
xorPixel = ReadColor(xorBits, pixelFormat);
}
2017-11-24 15:19:48 +03:00
xorPixel = FreeRDPConvertColor(xorPixel,
2018-10-16 18:14:56 +03:00
pixelFormat,
PIXEL_FORMAT_ARGB32,
palette);
2016-08-02 16:21:28 +03:00
xorBits += xorBytesPerPixel;
andPixel = 0;
if (andMask)
{
andPixel = (*andBits & andBit) ? 1 : 0;
if (!(andBit >>= 1))
{
andBits++;
andBit = 0x80;
}
}
if (andPixel)
2016-08-02 16:21:28 +03:00
{
if (xorPixel == 0xFF000000) /* black -> transparent */
xorPixel = 0x00000000;
else if (xorPixel == 0xFFFFFFFF) /* white -> inverted */
xorPixel = freerdp_image_inverted_pointer_color(x, y, PIXEL_FORMAT_ARGB32);
}
2017-11-24 15:19:48 +03:00
color = FreeRDPConvertColor(xorPixel, PIXEL_FORMAT_ARGB32,
2018-10-16 18:14:56 +03:00
DstFormat, palette);
2016-08-02 16:21:28 +03:00
WriteColor(pDstPixel, DstFormat, color);
pDstPixel += GetBytesPerPixel(DstFormat);
}
}
return TRUE;
}
2016-08-02 16:21:28 +03:00
default:
WLog_ERR(TAG, "failed to convert from %"PRIu32" bpp to %"PRIu32" bpp",
2016-10-14 11:01:02 +03:00
xorBpp, dstBitsPerPixel);
2016-12-05 15:44:08 +03:00
return FALSE;
}
}
2014-06-13 16:36:09 +04:00
2017-01-16 13:45:53 +03:00
static INLINE BOOL overlapping(const BYTE* pDstData, UINT32 nXDst, UINT32 nYDst,
UINT32 nDstStep, UINT32 dstBytesPerPixel,
const BYTE* pSrcData, UINT32 nXSrc, UINT32 nYSrc,
UINT32 nSrcStep, UINT32 srcBytesPerPixel,
UINT32 nWidth, UINT32 nHeight)
{
const BYTE* pDstStart = &pDstData[nXDst * dstBytesPerPixel + nYDst * nDstStep];
const BYTE* pDstEnd = pDstStart + nHeight * nDstStep;
const BYTE* pSrcStart = &pSrcData[nXSrc * srcBytesPerPixel + nYSrc * nSrcStep];
const BYTE* pSrcEnd = pSrcStart + nHeight * nSrcStep;
if ((pDstStart >= pSrcStart) && (pDstStart <= pSrcEnd))
return TRUE;
if ((pDstEnd >= pSrcStart) && (pDstEnd <= pSrcEnd))
return TRUE;
return FALSE;
}
BOOL freerdp_image_copy(BYTE* pDstData, DWORD DstFormat,
2016-10-14 11:01:02 +03:00
UINT32 nDstStep, UINT32 nXDst, UINT32 nYDst,
UINT32 nWidth, UINT32 nHeight,
const BYTE* pSrcData, DWORD SrcFormat,
UINT32 nSrcStep, UINT32 nXSrc, UINT32 nYSrc,
const gdiPalette* palette, UINT32 flags)
{
const UINT32 dstByte = GetBytesPerPixel(DstFormat);
const UINT32 srcByte = GetBytesPerPixel(SrcFormat);
const UINT32 copyDstWidth = nWidth * dstByte;
const UINT32 xSrcOffset = nXSrc * srcByte;
const UINT32 xDstOffset = nXDst * dstByte;
2017-01-16 13:45:53 +03:00
const BOOL vSrcVFlip = flags & FREERDP_FLIP_VERTICAL;
UINT32 srcVOffset = 0;
INT32 srcVMultiplier = 1;
UINT32 dstVOffset = 0;
INT32 dstVMultiplier = 1;
2019-02-07 16:17:35 +03:00
if ((nHeight > INT32_MAX) || (nWidth > INT32_MAX))
return FALSE;
if (!pDstData || !pSrcData)
return FALSE;
2016-09-06 15:20:07 +03:00
if (nDstStep == 0)
nDstStep = nWidth * GetBytesPerPixel(DstFormat);
2016-09-06 15:20:07 +03:00
if (nSrcStep == 0)
nSrcStep = nWidth * GetBytesPerPixel(SrcFormat);
if (vSrcVFlip)
{
srcVOffset = (nHeight - 1) * nSrcStep;
srcVMultiplier = -1;
}
if (AreColorFormatsEqualNoAlpha(SrcFormat, DstFormat))
2014-06-13 16:36:09 +04:00
{
2016-04-20 10:57:42 +03:00
INT32 y;
2014-06-13 16:36:09 +04:00
if (overlapping(pDstData, nXDst, nYDst, nDstStep, dstByte,
2016-10-14 11:01:02 +03:00
pSrcData, nXSrc, nYSrc, nSrcStep, srcByte,
nWidth, nHeight))
2014-06-13 16:36:09 +04:00
{
2016-04-20 10:57:42 +03:00
/* Copy down */
if (nYDst < nYSrc)
2016-04-20 10:57:42 +03:00
{
2019-02-07 16:17:35 +03:00
for (y = 0; y < (INT32)nHeight; y++)
2016-04-20 10:57:42 +03:00
{
const BYTE* srcLine = &pSrcData[(y + nYSrc) *
2018-10-16 18:14:56 +03:00
nSrcStep * srcVMultiplier +
srcVOffset];
2016-04-20 10:57:42 +03:00
BYTE* dstLine = &pDstData[(y + nYDst) *
2018-10-16 18:14:56 +03:00
nDstStep * dstVMultiplier +
dstVOffset];
2016-04-20 10:57:42 +03:00
memcpy(&dstLine[xDstOffset],
&srcLine[xSrcOffset], copyDstWidth);
}
}
/* Copy up */
else if (nYDst > nYSrc)
2016-04-20 10:57:42 +03:00
{
for (y = nHeight - 1; y >= 0; y--)
{
const BYTE* srcLine = &pSrcData[(y + nYSrc) *
2018-10-16 18:14:56 +03:00
nSrcStep * srcVMultiplier +
srcVOffset];
2016-04-20 10:57:42 +03:00
BYTE* dstLine = &pDstData[(y + nYDst) *
2018-10-16 18:14:56 +03:00
nDstStep * dstVMultiplier +
dstVOffset];
2016-04-20 10:57:42 +03:00
memcpy(&dstLine[xDstOffset],
&srcLine[xSrcOffset], copyDstWidth);
}
}
/* Copy left */
else if (nXSrc > nXDst)
{
2019-02-07 16:17:35 +03:00
for (y = 0; y < (INT32)nHeight; y++)
2016-04-20 10:57:42 +03:00
{
const BYTE* srcLine = &pSrcData[(y + nYSrc) *
2018-10-16 18:14:56 +03:00
nSrcStep * srcVMultiplier +
srcVOffset];
2016-04-20 10:57:42 +03:00
BYTE* dstLine = &pDstData[(y + nYDst) *
2018-10-16 18:14:56 +03:00
nDstStep * dstVMultiplier +
dstVOffset];
2016-04-20 10:57:42 +03:00
memmove(&dstLine[xDstOffset],
2016-10-14 11:01:02 +03:00
&srcLine[xSrcOffset], copyDstWidth);
2016-04-20 10:57:42 +03:00
}
}
/* Copy right */
else if (nXSrc < nXDst)
{
2019-02-07 16:17:35 +03:00
for (y = (INT32)nHeight - 1; y >= 0; y--)
2016-04-20 10:57:42 +03:00
{
const BYTE* srcLine = &pSrcData[(y + nYSrc) *
2018-10-16 18:14:56 +03:00
nSrcStep * srcVMultiplier +
srcVOffset];
2016-04-20 10:57:42 +03:00
BYTE* dstLine = &pDstData[(y + nYDst) *
2018-10-16 18:14:56 +03:00
nDstStep * dstVMultiplier +
dstVOffset];
memmove(&dstLine[xDstOffset],
2016-10-14 11:01:02 +03:00
&srcLine[xSrcOffset], copyDstWidth);
2016-04-20 10:57:42 +03:00
}
}
/* Source and destination are equal... */
else
{
}
}
else
2016-04-20 10:57:42 +03:00
{
2019-02-07 16:17:35 +03:00
for (y = 0; y < (INT32)nHeight; y++)
2016-04-20 10:57:42 +03:00
{
const BYTE* srcLine = &pSrcData[(y + nYSrc) *
2018-10-16 18:14:56 +03:00
nSrcStep * srcVMultiplier +
srcVOffset];
2016-04-20 10:57:42 +03:00
BYTE* dstLine = &pDstData[(y + nYDst) *
2018-10-16 18:14:56 +03:00
nDstStep * dstVMultiplier +
dstVOffset];
2016-04-20 10:57:42 +03:00
memcpy(&dstLine[xDstOffset],
&srcLine[xSrcOffset], copyDstWidth);
}
2014-06-13 16:36:09 +04:00
}
}
else
2014-06-13 16:36:09 +04:00
{
2019-02-07 16:17:35 +03:00
INT32 x, y;
2014-06-13 16:36:09 +04:00
2019-02-07 16:17:35 +03:00
for (y = 0; y < (INT32)nHeight; y++)
2014-06-13 16:36:09 +04:00
{
2016-04-20 10:57:42 +03:00
const BYTE* srcLine = &pSrcData[(y + nYSrc) *
2018-10-16 18:14:56 +03:00
nSrcStep * srcVMultiplier +
srcVOffset];
2016-04-20 10:57:42 +03:00
BYTE* dstLine = &pDstData[(y + nYDst) *
2018-10-16 18:14:56 +03:00
nDstStep * dstVMultiplier + dstVOffset];
2014-06-13 16:36:09 +04:00
2019-02-07 16:17:35 +03:00
for (x = 0; x < (INT32)nWidth; x++)
{
UINT32 dstColor;
UINT32 color = ReadColor(&srcLine[(x + nXSrc) * srcByte],
2016-10-14 11:01:02 +03:00
SrcFormat);
2017-11-24 15:19:48 +03:00
dstColor = FreeRDPConvertColor(color, SrcFormat, DstFormat, palette);
WriteColor(&dstLine[(x + nXDst) * dstByte], DstFormat, dstColor);
}
2014-06-13 16:36:09 +04:00
}
}
return TRUE;
2014-06-13 16:36:09 +04:00
}
BOOL freerdp_image_fill(BYTE* pDstData, DWORD DstFormat,
2016-10-14 11:01:02 +03:00
UINT32 nDstStep, UINT32 nXDst, UINT32 nYDst,
UINT32 nWidth, UINT32 nHeight, UINT32 color)
{
UINT32 x, y;
2017-01-16 13:36:35 +03:00
const UINT32 bpp = GetBytesPerPixel(DstFormat);
BYTE* pFirstDstLine = &pDstData[nYDst * nDstStep];
BYTE* pFirstDstLineXOffset = &pFirstDstLine[nXDst * bpp];
2015-08-06 12:24:42 +03:00
2017-01-16 13:36:35 +03:00
for (x = 0; x < nWidth; x++)
{
2017-01-16 13:36:35 +03:00
BYTE* pDst = &pFirstDstLine[(x + nXDst) * bpp];
WriteColor(pDst, DstFormat, color);
}
2015-08-06 12:24:42 +03:00
2017-01-16 13:36:35 +03:00
for (y = 1; y < nHeight; y++)
{
BYTE* pDstLine = &pDstData[(y + nYDst) * nDstStep + nXDst * bpp];
memcpy(pDstLine, pFirstDstLineXOffset, nWidth * bpp);
}
2015-08-06 12:24:42 +03:00
return TRUE;
}