Fix spelling mistake in a comment.
This commit is contained in:
parent
711f4b2202
commit
fd7eca49a9
@ -284,7 +284,7 @@ uint8* freerdp_image_convert_8bpp(uint8* srcData, uint8* dstData, int width, int
|
||||
{
|
||||
if (dstData == NULL)
|
||||
dstData = (uint8*) malloc(width * height * 2);
|
||||
|
||||
|
||||
dst16 = (uint16 *) dstData;
|
||||
for (i = width * height; i > 0; i--)
|
||||
{
|
||||
@ -303,7 +303,7 @@ uint8* freerdp_image_convert_8bpp(uint8* srcData, uint8* dstData, int width, int
|
||||
{
|
||||
if (dstData == NULL)
|
||||
dstData = (uint8*) malloc(width * height * 2);
|
||||
|
||||
|
||||
dst16 = (uint16 *) dstData;
|
||||
for (i = width * height; i > 0; i--)
|
||||
{
|
||||
@ -322,7 +322,7 @@ uint8* freerdp_image_convert_8bpp(uint8* srcData, uint8* dstData, int width, int
|
||||
{
|
||||
if (dstData == NULL)
|
||||
dstData = (uint8*) malloc(width * height * 4);
|
||||
|
||||
|
||||
src8 = (uint8*) srcData;
|
||||
dst32 = (uint32*) dstData;
|
||||
for (i = width * height; i > 0; i--)
|
||||
@ -366,7 +366,7 @@ uint8* freerdp_image_convert_15bpp(uint8* srcData, uint8* dstData, int width, in
|
||||
{
|
||||
if (dstData == NULL)
|
||||
dstData = (uint8*) malloc(width * height * 4);
|
||||
|
||||
|
||||
src16 = (uint16 *) srcData;
|
||||
dst32 = (uint32 *) dstData;
|
||||
for (i = width * height; i > 0; i--)
|
||||
@ -384,7 +384,7 @@ uint8* freerdp_image_convert_15bpp(uint8* srcData, uint8* dstData, int width, in
|
||||
{
|
||||
if (dstData == NULL)
|
||||
dstData = (uint8*) malloc(width * height * 2);
|
||||
|
||||
|
||||
src16 = (uint16 *) srcData;
|
||||
dst16 = (uint16 *) dstData;
|
||||
for (i = width * height; i > 0; i--)
|
||||
@ -505,7 +505,7 @@ uint8* freerdp_image_convert_24bpp(uint8* srcData, uint8* dstData, int width, in
|
||||
uint8 *dstp;
|
||||
if (dstData == NULL)
|
||||
dstData = (uint8*) malloc(width * height * 4);
|
||||
|
||||
|
||||
dstp = dstData;
|
||||
for (i = width * height; i > 0; i--)
|
||||
{
|
||||
@ -607,7 +607,7 @@ uint8* freerdp_image_convert_32bpp(uint8* srcData, uint8* dstData, int width, in
|
||||
|
||||
memcpy(dstData, srcData, width * height * 4);
|
||||
}
|
||||
|
||||
|
||||
return dstData;
|
||||
}
|
||||
|
||||
@ -653,7 +653,7 @@ void freerdp_bitmap_flip(uint8 * src, uint8 * dst, int scanLineSz, int height)
|
||||
int half = height / 2;
|
||||
/* Flip buffer in place by line permutations through the temp
|
||||
* scan line buffer.
|
||||
* Not that if height has an odd number of line, we don't need
|
||||
* Note that if height has an odd number of line, we don't need
|
||||
* to move the center scanline anyway.
|
||||
* Also note that in place flipping takes three memcpy() calls
|
||||
* to process two scanlines while src to distinct dest would
|
||||
|
Loading…
Reference in New Issue
Block a user