FreeRDP/libfreerdp/gdi/gfx.c

1048 lines
29 KiB
C
Raw Normal View History

/**
* FreeRDP: A Remote Desktop Protocol Implementation
* GDI Graphics Pipeline
*
* Copyright 2014 Marc-Andre Moreau <marcandre.moreau@gmail.com>
2016-04-11 15:14:17 +03:00
* Copyright 2016 Armin Novak <armin.novak@thincast.com>
* Copyright 2016 Thincast Technologies GmbH
*
* 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 <freerdp/log.h>
#include <freerdp/gdi/gfx.h>
#include <freerdp/gdi/region.h>
#define TAG FREERDP_TAG("gdi")
/**
* Function description
*
* @return 0 on success, otherwise a Win32 error code
*/
2016-04-11 15:14:17 +03:00
static UINT gdi_ResetGraphics(RdpgfxClientContext* context,
2016-07-14 17:08:06 +03:00
const RDPGFX_RESET_GRAPHICS_PDU* resetGraphics)
{
2016-04-11 15:14:17 +03:00
UINT32 index;
UINT16 count;
UINT32 DesktopWidth;
UINT32 DesktopHeight;
gdiGfxSurface* surface;
UINT16* pSurfaceIds = NULL;
rdpGdi* gdi = (rdpGdi*) context->custom;
rdpUpdate* update = gdi->context->update;
rdpSettings* settings = gdi->context->settings;
DesktopWidth = resetGraphics->width;
DesktopHeight = resetGraphics->height;
2016-04-11 15:14:17 +03:00
if ((DesktopWidth != settings->DesktopWidth)
2016-07-14 17:08:06 +03:00
|| (DesktopHeight != settings->DesktopHeight))
{
settings->DesktopWidth = DesktopWidth;
settings->DesktopHeight = DesktopHeight;
if (update)
update->DesktopResize(gdi->context);
}
context->GetSurfaceIds(context, &pSurfaceIds, &count);
for (index = 0; index < count; index++)
{
surface = (gdiGfxSurface*) context->GetSurfaceData(context, pSurfaceIds[index]);
if (!surface || !surface->outputMapped)
continue;
if (!freerdp_client_codecs_reset(surface->codecs, FREERDP_CODEC_ALL,
2016-07-14 17:08:06 +03:00
surface->width, surface->height))
{
2016-04-11 15:14:17 +03:00
free(pSurfaceIds);
return ERROR_INTERNAL_ERROR;
}
region16_clear(&surface->invalidRegion);
}
free(pSurfaceIds);
2016-07-13 17:06:59 +03:00
if (!freerdp_client_codecs_reset(gdi->context->codecs, FREERDP_CODEC_ALL,
2016-07-14 17:08:06 +03:00
gdi->width, gdi->height))
return ERROR_INTERNAL_ERROR;
gdi->graphicsReset = TRUE;
2015-06-09 16:22:26 +03:00
return CHANNEL_RC_OK;
}
2016-04-11 15:14:17 +03:00
static UINT gdi_OutputUpdate(rdpGdi* gdi, gdiGfxSurface* surface)
{
2016-04-11 15:14:17 +03:00
UINT32 nXDst, nYDst;
UINT32 nXSrc, nYSrc;
UINT16 width, height;
UINT32 surfaceX, surfaceY;
RECTANGLE_16 surfaceRect;
const RECTANGLE_16* extents;
rdpUpdate* update = gdi->context->update;
surfaceX = surface->outputOriginX;
surfaceY = surface->outputOriginY;
surfaceRect.left = 0;
surfaceRect.top = 0;
surfaceRect.right = surface->width;
surfaceRect.bottom = surface->height;
2016-04-11 15:14:17 +03:00
region16_intersect_rect(&(surface->invalidRegion),
2016-07-14 17:08:06 +03:00
&(surface->invalidRegion), &surfaceRect);
if (!region16_is_empty(&(surface->invalidRegion)))
{
extents = region16_extents(&(surface->invalidRegion));
nXSrc = extents->left;
nYSrc = extents->top;
nXDst = surfaceX + extents->left;
nYDst = surfaceY + extents->top;
width = extents->right - extents->left;
height = extents->bottom - extents->top;
update->BeginPaint(gdi->context);
if (!freerdp_image_copy(gdi->primary_buffer, gdi->primary->hdc->format,
gdi->stride,
nXDst, nYDst, width, height,
surface->data, surface->format,
surface->scanline, nXSrc, nYSrc, NULL))
return CHANNEL_RC_NULL_DATA;
gdi_InvalidateRegion(gdi->primary->hdc, nXDst, nYDst, width, height);
update->EndPaint(gdi->context);
}
region16_clear(&(surface->invalidRegion));
2016-04-11 15:14:17 +03:00
return CHANNEL_RC_OK;
}
2016-04-11 15:14:17 +03:00
static UINT gdi_UpdateSurfaces(RdpgfxClientContext* context)
{
UINT16 count;
2016-04-11 15:14:17 +03:00
UINT16 index;
UINT status = CHANNEL_RC_OK;
gdiGfxSurface* surface;
UINT16* pSurfaceIds = NULL;
2016-04-11 15:14:17 +03:00
rdpGdi* gdi = (rdpGdi*)context->custom;
if (!gdi->graphicsReset)
2016-04-11 15:14:17 +03:00
return status;
context->GetSurfaceIds(context, &pSurfaceIds, &count);
for (index = 0; index < count; index++)
{
surface = (gdiGfxSurface*) context->GetSurfaceData(context, pSurfaceIds[index]);
if (!surface || !surface->outputMapped)
continue;
status = gdi_OutputUpdate(gdi, surface);
2016-04-11 15:14:17 +03:00
if (status != CHANNEL_RC_OK)
break;
}
free(pSurfaceIds);
return status;
}
/**
* Function description
*
* @return 0 on success, otherwise a Win32 error code
*/
2016-04-11 15:14:17 +03:00
static UINT gdi_StartFrame(RdpgfxClientContext* context,
2016-07-14 17:08:06 +03:00
const RDPGFX_START_FRAME_PDU* startFrame)
{
rdpGdi* gdi = (rdpGdi*) context->custom;
gdi->inGfxFrame = TRUE;
2015-06-09 16:22:26 +03:00
return CHANNEL_RC_OK;
}
/**
* Function description
*
* @return 0 on success, otherwise a Win32 error code
*/
2016-04-11 15:14:17 +03:00
static UINT gdi_EndFrame(RdpgfxClientContext* context,
2016-07-14 17:08:06 +03:00
const RDPGFX_END_FRAME_PDU* endFrame)
{
2016-04-11 15:14:17 +03:00
UINT status = CHANNEL_RC_NOT_INITIALIZED;
rdpGdi* gdi = (rdpGdi*) context->custom;
2016-04-11 15:14:17 +03:00
IFCALLRET(context->UpdateSurfaces, status, context);
gdi->inGfxFrame = FALSE;
2016-04-11 15:14:17 +03:00
return status;
}
/**
* Function description
*
* @return 0 on success, otherwise a Win32 error code
*/
2016-04-11 15:14:17 +03:00
static UINT gdi_SurfaceCommand_Uncompressed(rdpGdi* gdi,
2016-07-14 17:08:06 +03:00
RdpgfxClientContext* context,
const RDPGFX_SURFACE_COMMAND* cmd)
{
2016-04-11 15:14:17 +03:00
UINT status = CHANNEL_RC_OK;
gdiGfxSurface* surface;
RECTANGLE_16 invalidRect;
surface = (gdiGfxSurface*) context->GetSurfaceData(context, cmd->surfaceId);
if (!surface)
2015-06-09 16:22:26 +03:00
return ERROR_INTERNAL_ERROR;
2016-04-11 15:14:17 +03:00
if (!freerdp_image_copy(surface->data, surface->format, surface->scanline,
2016-07-14 17:08:06 +03:00
cmd->left, cmd->top, cmd->width, cmd->height,
cmd->data, cmd->format, 0, 0, 0, NULL))
2016-04-11 15:14:17 +03:00
return ERROR_INTERNAL_ERROR;
invalidRect.left = cmd->left;
invalidRect.top = cmd->top;
invalidRect.right = cmd->right;
invalidRect.bottom = cmd->bottom;
2016-04-11 15:14:17 +03:00
region16_union_rect(&(surface->invalidRegion), &(surface->invalidRegion),
2016-07-14 17:08:06 +03:00
&invalidRect);
if (!gdi->inGfxFrame)
2016-04-11 15:14:17 +03:00
{
status = CHANNEL_RC_NOT_INITIALIZED;
IFCALLRET(context->UpdateSurfaces, status, context);
}
2016-04-11 15:14:17 +03:00
return status;
}
/**
* Function description
*
* @return 0 on success, otherwise a Win32 error code
*/
2016-04-11 15:14:17 +03:00
static UINT gdi_SurfaceCommand_RemoteFX(rdpGdi* gdi,
2016-07-14 17:08:06 +03:00
RdpgfxClientContext* context,
const RDPGFX_SURFACE_COMMAND* cmd)
{
2016-04-11 15:14:17 +03:00
UINT status = CHANNEL_RC_OK;
gdiGfxSurface* surface;
surface = (gdiGfxSurface*) context->GetSurfaceData(context, cmd->surfaceId);
if (!surface)
2015-06-09 16:22:26 +03:00
return ERROR_INTERNAL_ERROR;
2016-04-11 15:14:17 +03:00
if (!rfx_process_message(surface->codecs->rfx, cmd->data, cmd->format,
2016-07-14 17:08:06 +03:00
cmd->length,
cmd->left, cmd->top,
surface->data, surface->format, surface->scanline,
surface->height, &surface->invalidRegion))
codec/rfx: error checking and various fixes - removed some unneeded null checks for free() - fixed a memory leak in shadow_client - removed rfx_compose_message_header from API Changed the following functions to BOOL, check the result where they are called and handle failures: - rfx_compose_message - rfx_compose_message_header - rfx_write_tile - rfx_write_message_tileset - rfx_write_message_frame_begin - rfx_write_message_region - rfx_write_message_frame_end - rfx_write_message rfx_process_message: - check memory allocation failures - verify protocol-conform order of data messages to prevents memory leaks caused by repeated allocations - verify that header messages were parsed/received before the data messages - treat unknown rlgr mode as error - fixed/added error handling - fixed all callers to check/handle result rfx_encode_message: - fixed incorrect usage of realloc - missing malloc check - missing check of CreateThreadpoolWork - correct cleanup on failure (threadpool, memory) - check rfx_encode_message result rfx_encode_messages: - check rfx_split_message result - correct cleanup on failure - prevent memory leak on failure rfx_write_message_context: - fixed invalid channelId value (must be 0xFF for WBT_CONTEXT) rfx_process_message_codec_versions: - fixed invalid read size of codec_version (it is 16bit) rfx_process_message_channels: - verify protocol conform channelId value rfx_process_message_region: - replaced invalid reallocs with malloc - read and verify regionType and numTileSets from stream rfx_process_message_tileset: - check allocation results - fixed incorrect usages of realloc setupWorkers: - fixed incorrect usages of realloc rfx_split_message: - removed dead code - missing malloc check rfx_compose_message: - fixed a memory leak - check/handle rfx_encode_message result
2015-04-23 16:42:21 +03:00
{
WLog_ERR(TAG, "Failed to process RemoteFX message");
2015-06-09 16:22:26 +03:00
return ERROR_INTERNAL_ERROR;
codec/rfx: error checking and various fixes - removed some unneeded null checks for free() - fixed a memory leak in shadow_client - removed rfx_compose_message_header from API Changed the following functions to BOOL, check the result where they are called and handle failures: - rfx_compose_message - rfx_compose_message_header - rfx_write_tile - rfx_write_message_tileset - rfx_write_message_frame_begin - rfx_write_message_region - rfx_write_message_frame_end - rfx_write_message rfx_process_message: - check memory allocation failures - verify protocol-conform order of data messages to prevents memory leaks caused by repeated allocations - verify that header messages were parsed/received before the data messages - treat unknown rlgr mode as error - fixed/added error handling - fixed all callers to check/handle result rfx_encode_message: - fixed incorrect usage of realloc - missing malloc check - missing check of CreateThreadpoolWork - correct cleanup on failure (threadpool, memory) - check rfx_encode_message result rfx_encode_messages: - check rfx_split_message result - correct cleanup on failure - prevent memory leak on failure rfx_write_message_context: - fixed invalid channelId value (must be 0xFF for WBT_CONTEXT) rfx_process_message_codec_versions: - fixed invalid read size of codec_version (it is 16bit) rfx_process_message_channels: - verify protocol conform channelId value rfx_process_message_region: - replaced invalid reallocs with malloc - read and verify regionType and numTileSets from stream rfx_process_message_tileset: - check allocation results - fixed incorrect usages of realloc setupWorkers: - fixed incorrect usages of realloc rfx_split_message: - removed dead code - missing malloc check rfx_compose_message: - fixed a memory leak - check/handle rfx_encode_message result
2015-04-23 16:42:21 +03:00
}
2016-04-11 15:14:17 +03:00
if (!gdi->inGfxFrame)
{
2016-04-11 15:14:17 +03:00
status = CHANNEL_RC_NOT_INITIALIZED;
IFCALLRET(context->UpdateSurfaces, status, context);
}
2016-04-11 15:14:17 +03:00
return status;
}
/**
* Function description
*
* @return 0 on success, otherwise a Win32 error code
*/
2016-04-11 15:14:17 +03:00
static UINT gdi_SurfaceCommand_ClearCodec(rdpGdi* gdi,
2016-07-14 17:08:06 +03:00
RdpgfxClientContext* context,
const RDPGFX_SURFACE_COMMAND* cmd)
{
2016-04-11 15:14:17 +03:00
INT32 rc;
UINT status = CHANNEL_RC_OK;
gdiGfxSurface* surface;
RECTANGLE_16 invalidRect;
surface = (gdiGfxSurface*) context->GetSurfaceData(context, cmd->surfaceId);
if (!surface)
2015-06-09 16:22:26 +03:00
return ERROR_INTERNAL_ERROR;
2016-07-13 15:58:11 +03:00
rc = clear_decompress(surface->codecs->clear, cmd->data, cmd->length,
2016-07-14 17:08:06 +03:00
cmd->width, cmd->height,
surface->data, surface->format,
surface->scanline, cmd->left, cmd->top,
surface->width, surface->height, &gdi->palette);
2016-04-11 15:14:17 +03:00
if (rc < 0)
{
2016-08-04 14:24:11 +03:00
WLog_ERR(TAG, "clear_decompress failure: %d", rc);
2015-06-09 16:22:26 +03:00
return ERROR_INTERNAL_ERROR;
}
invalidRect.left = cmd->left;
invalidRect.top = cmd->top;
invalidRect.right = cmd->right;
invalidRect.bottom = cmd->bottom;
2016-04-11 15:14:17 +03:00
region16_union_rect(&(surface->invalidRegion), &(surface->invalidRegion),
2016-07-14 17:08:06 +03:00
&invalidRect);
if (!gdi->inGfxFrame)
2016-04-11 15:14:17 +03:00
{
status = CHANNEL_RC_NOT_INITIALIZED;
IFCALLRET(context->UpdateSurfaces, status, context);
}
2016-04-11 15:14:17 +03:00
return status;
}
/**
* Function description
*
* @return 0 on success, otherwise a Win32 error code
*/
2016-04-11 15:14:17 +03:00
static UINT gdi_SurfaceCommand_Planar(rdpGdi* gdi, RdpgfxClientContext* context,
2016-07-14 17:08:06 +03:00
const RDPGFX_SURFACE_COMMAND* cmd)
{
2016-04-11 15:14:17 +03:00
UINT status = CHANNEL_RC_OK;
BYTE* DstData = NULL;
gdiGfxSurface* surface;
RECTANGLE_16 invalidRect;
surface = (gdiGfxSurface*) context->GetSurfaceData(context, cmd->surfaceId);
if (!surface)
2015-06-09 16:22:26 +03:00
return ERROR_INTERNAL_ERROR;
DstData = surface->data;
if (!planar_decompress(surface->codecs->planar, cmd->data, cmd->length,
2016-07-19 17:15:38 +03:00
cmd->width, cmd->height,
2016-07-14 17:08:06 +03:00
DstData, surface->format,
surface->scanline, cmd->left, cmd->top,
cmd->width, cmd->height, FALSE))
2016-04-11 15:14:17 +03:00
return ERROR_INTERNAL_ERROR;
invalidRect.left = cmd->left;
invalidRect.top = cmd->top;
invalidRect.right = cmd->right;
invalidRect.bottom = cmd->bottom;
2016-04-11 15:14:17 +03:00
region16_union_rect(&(surface->invalidRegion), &(surface->invalidRegion),
2016-07-14 17:08:06 +03:00
&invalidRect);
if (!gdi->inGfxFrame)
2016-04-11 15:14:17 +03:00
{
status = CHANNEL_RC_NOT_INITIALIZED;
IFCALLRET(context->UpdateSurfaces, status, context);
}
2016-04-11 15:14:17 +03:00
return status;
}
/**
* Function description
*
* @return 0 on success, otherwise a Win32 error code
*/
2016-04-11 15:14:17 +03:00
static UINT gdi_SurfaceCommand_AVC420(rdpGdi* gdi,
2016-07-14 17:08:06 +03:00
RdpgfxClientContext* context,
const RDPGFX_SURFACE_COMMAND* cmd)
{
2016-04-11 15:14:17 +03:00
INT32 rc;
UINT status = CHANNEL_RC_OK;
UINT32 i;
gdiGfxSurface* surface;
RDPGFX_H264_METABLOCK* meta;
2016-03-02 17:16:49 +03:00
RDPGFX_AVC420_BITMAP_STREAM* bs;
surface = (gdiGfxSurface*) context->GetSurfaceData(context, cmd->surfaceId);
if (!surface)
return ERROR_INTERNAL_ERROR;
2016-03-02 17:16:49 +03:00
bs = (RDPGFX_AVC420_BITMAP_STREAM*) cmd->extra;
if (!bs)
2015-06-09 16:22:26 +03:00
return ERROR_INTERNAL_ERROR;
meta = &(bs->meta);
2016-04-11 15:14:17 +03:00
rc = avc420_decompress(surface->codecs->h264, bs->data, bs->length,
2016-07-14 17:08:06 +03:00
surface->data, surface->format,
surface->scanline, surface->width,
surface->height, meta->regionRects,
meta->numRegionRects);
2016-04-11 15:14:17 +03:00
if (rc < 0)
{
2016-03-02 17:16:49 +03:00
WLog_WARN(TAG, "avc420_decompress failure: %d, ignoring update.", status);
return CHANNEL_RC_OK;
}
for (i = 0; i < meta->numRegionRects; i++)
{
2016-04-11 15:14:17 +03:00
region16_union_rect(&(surface->invalidRegion), &(surface->invalidRegion),
2016-07-14 17:08:06 +03:00
(RECTANGLE_16*) & (meta->regionRects[i]));
}
if (!gdi->inGfxFrame)
2016-04-11 15:14:17 +03:00
{
status = CHANNEL_RC_NOT_INITIALIZED;
IFCALLRET(context->UpdateSurfaces, status, context);
}
2016-04-11 15:14:17 +03:00
return status;
}
2016-03-02 17:16:49 +03:00
/**
* Function description
*
* @return 0 on success, otherwise a Win32 error code
*/
2016-04-11 15:14:17 +03:00
static UINT gdi_SurfaceCommand_AVC444(rdpGdi* gdi, RdpgfxClientContext* context,
2016-07-14 17:08:06 +03:00
const RDPGFX_SURFACE_COMMAND* cmd)
2016-03-02 17:16:49 +03:00
{
2016-04-11 15:14:17 +03:00
INT32 rc;
UINT status = CHANNEL_RC_OK;
2016-03-02 17:16:49 +03:00
UINT32 i;
gdiGfxSurface* surface;
RDPGFX_AVC444_BITMAP_STREAM* bs;
RDPGFX_AVC420_BITMAP_STREAM* avc1;
RDPGFX_H264_METABLOCK* meta1;
RDPGFX_AVC420_BITMAP_STREAM* avc2;
RDPGFX_H264_METABLOCK* meta2;
RECTANGLE_16* regionRects = NULL;
surface = (gdiGfxSurface*) context->GetSurfaceData(context, cmd->surfaceId);
if (!surface)
return ERROR_INTERNAL_ERROR;
bs = (RDPGFX_AVC444_BITMAP_STREAM*) cmd->extra;
if (!bs)
return ERROR_INTERNAL_ERROR;
avc1 = &bs->bitstream[0];
avc2 = &bs->bitstream[1];
meta1 = &avc1->meta;
meta2 = &avc2->meta;
2016-04-11 15:14:17 +03:00
rc = avc444_decompress(surface->codecs->h264, bs->LC,
2016-07-14 17:08:06 +03:00
meta1->regionRects, meta1->numRegionRects,
avc1->data, avc1->length,
meta2->regionRects, meta2->numRegionRects,
avc2->data, avc2->length,
surface->data, surface->format,
surface->scanline, surface->width,
surface->height);
2016-03-02 17:16:49 +03:00
2016-04-14 00:18:55 +03:00
if (rc < 0)
2016-03-02 17:16:49 +03:00
{
WLog_WARN(TAG, "avc444_decompress failure: %d, ignoring update.", status);
return CHANNEL_RC_OK;
}
for (i = 0; i < meta1->numRegionRects; i++)
{
region16_union_rect(&(surface->invalidRegion),
2016-07-14 17:08:06 +03:00
&(surface->invalidRegion),
&(meta1->regionRects[i]));
2016-03-02 17:16:49 +03:00
}
for (i = 0; i < meta2->numRegionRects; i++)
{
region16_union_rect(&(surface->invalidRegion),
2016-07-14 17:08:06 +03:00
&(surface->invalidRegion),
&(meta2->regionRects[i]));
2016-03-02 17:16:49 +03:00
}
if (!gdi->inGfxFrame)
2016-04-11 15:14:17 +03:00
{
status = CHANNEL_RC_NOT_INITIALIZED;
IFCALLRET(context->UpdateSurfaces, status, context);
}
2016-03-02 17:16:49 +03:00
free(regionRects);
2016-04-11 15:14:17 +03:00
return status;
2016-03-02 17:16:49 +03:00
}
/**
* Function description
*
* @return 0 on success, otherwise a Win32 error code
*/
2016-04-11 15:14:17 +03:00
static UINT gdi_SurfaceCommand_Alpha(rdpGdi* gdi, RdpgfxClientContext* context,
2016-07-14 17:08:06 +03:00
const RDPGFX_SURFACE_COMMAND* cmd)
{
2016-04-11 15:14:17 +03:00
UINT status = CHANNEL_RC_OK;
gdiGfxSurface* surface;
RECTANGLE_16 invalidRect;
surface = (gdiGfxSurface*) context->GetSurfaceData(context, cmd->surfaceId);
if (!surface)
2015-06-09 16:22:26 +03:00
return ERROR_INTERNAL_ERROR;
2016-07-19 14:02:08 +03:00
WLog_WARN(TAG, "TODO gdi_SurfaceCommand_Alpha: status: %d", status);
2016-04-14 00:18:55 +03:00
/* fill with green for now to distinguish from the rest */
2016-04-11 15:14:17 +03:00
if (!freerdp_image_fill(surface->data, surface->format, surface->scanline,
2016-07-14 17:08:06 +03:00
cmd->left, cmd->top, cmd->width, cmd->height, 0x00FF00))
2016-04-11 15:14:17 +03:00
return ERROR_INTERNAL_ERROR;
invalidRect.left = cmd->left;
invalidRect.top = cmd->top;
invalidRect.right = cmd->right;
invalidRect.bottom = cmd->bottom;
2016-04-11 15:14:17 +03:00
region16_union_rect(&(surface->invalidRegion), &(surface->invalidRegion),
2016-07-14 17:08:06 +03:00
&invalidRect);
if (!gdi->inGfxFrame)
2016-04-11 15:14:17 +03:00
{
status = CHANNEL_RC_NOT_INITIALIZED;
IFCALLRET(context->UpdateSurfaces, status, context);
}
2016-04-11 15:14:17 +03:00
return status;
}
/**
* Function description
*
* @return 0 on success, otherwise a Win32 error code
*/
2016-04-11 15:14:17 +03:00
static UINT gdi_SurfaceCommand_Progressive(rdpGdi* gdi,
2016-07-14 17:08:06 +03:00
RdpgfxClientContext* context,
const RDPGFX_SURFACE_COMMAND* cmd)
{
2016-04-11 15:14:17 +03:00
INT32 rc;
UINT status = CHANNEL_RC_OK;
gdiGfxSurface* surface;
2016-04-11 15:14:17 +03:00
RECTANGLE_16 invalidRect;
surface = (gdiGfxSurface*) context->GetSurfaceData(context, cmd->surfaceId);
if (!surface)
2015-06-09 16:22:26 +03:00
return ERROR_INTERNAL_ERROR;
2016-04-11 15:14:17 +03:00
rc = progressive_create_surface_context(surface->codecs->progressive,
2016-07-14 17:08:06 +03:00
cmd->surfaceId,
surface->width, surface->height);
2016-04-14 00:18:55 +03:00
if (rc < 0)
{
WLog_ERR(TAG, "progressive_create_surface_context failure: %d", rc);
return ERROR_INTERNAL_ERROR;
}
rc = progressive_decompress(surface->codecs->progressive, cmd->data,
2016-07-14 17:08:06 +03:00
cmd->length, surface->data, surface->format,
surface->scanline, cmd->left, cmd->top,
cmd->width, cmd->height, cmd->surfaceId);
2016-04-14 00:18:55 +03:00
if (rc < 0)
{
2016-04-14 00:18:55 +03:00
WLog_ERR(TAG, "progressive_decompress failure: %d", rc);
2015-06-09 16:22:26 +03:00
return ERROR_INTERNAL_ERROR;
}
2016-04-11 15:14:17 +03:00
invalidRect.left = cmd->left;
invalidRect.top = cmd->top;
invalidRect.right = cmd->right;
invalidRect.bottom = cmd->bottom;
region16_union_rect(&(surface->invalidRegion), &(surface->invalidRegion),
2016-07-14 17:08:06 +03:00
&invalidRect);
2016-04-11 15:14:17 +03:00
if (!gdi->inGfxFrame)
{
2016-04-11 15:14:17 +03:00
status = CHANNEL_RC_NOT_INITIALIZED;
IFCALLRET(context->UpdateSurfaces, status, context);
}
2016-04-11 15:14:17 +03:00
return status;
}
/**
* Function description
*
* @return 0 on success, otherwise a Win32 error code
*/
2016-04-11 15:14:17 +03:00
static UINT gdi_SurfaceCommand(RdpgfxClientContext* context,
2016-07-14 17:08:06 +03:00
const RDPGFX_SURFACE_COMMAND* cmd)
{
UINT status = CHANNEL_RC_OK;
rdpGdi* gdi = (rdpGdi*) context->custom;
2016-08-04 17:14:12 +03:00
if (!context || !cmd)
return ERROR_INVALID_PARAMETER;
WLog_Print(gdi->log, WLOG_TRACE,
"surfaceId=%lu, codec=%lu, contextId=%lu, format=%s, "
"left=%lu, top=%lu, right=%lu, bottom=%lu, width=%lu, height=%lu "
"length=%lu, data=%p, extra=%p",
cmd->surfaceId, cmd->codecId, cmd->contextId,
GetColorFormatName(cmd->format), cmd->left, cmd->top, cmd->right,
cmd->bottom, cmd->width, cmd->height, cmd->length, cmd->data, cmd->extra);
switch (cmd->codecId)
{
case RDPGFX_CODECID_UNCOMPRESSED:
status = gdi_SurfaceCommand_Uncompressed(gdi, context, cmd);
break;
case RDPGFX_CODECID_CAVIDEO:
status = gdi_SurfaceCommand_RemoteFX(gdi, context, cmd);
break;
case RDPGFX_CODECID_CLEARCODEC:
status = gdi_SurfaceCommand_ClearCodec(gdi, context, cmd);
break;
case RDPGFX_CODECID_PLANAR:
status = gdi_SurfaceCommand_Planar(gdi, context, cmd);
break;
2016-03-02 17:16:49 +03:00
case RDPGFX_CODECID_AVC420:
status = gdi_SurfaceCommand_AVC420(gdi, context, cmd);
break;
case RDPGFX_CODECID_AVC444:
status = gdi_SurfaceCommand_AVC444(gdi, context, cmd);
break;
case RDPGFX_CODECID_ALPHA:
status = gdi_SurfaceCommand_Alpha(gdi, context, cmd);
break;
case RDPGFX_CODECID_CAPROGRESSIVE:
status = gdi_SurfaceCommand_Progressive(gdi, context, cmd);
break;
case RDPGFX_CODECID_CAPROGRESSIVE_V2:
WLog_WARN(TAG, "SurfaceCommand %08X not implemented", cmd->codecId);
break;
default:
WLog_WARN(TAG, "Invalid SurfaceCommand %08X", cmd->codecId);
break;
}
2015-06-09 16:22:26 +03:00
return status;
}
/**
* Function description
*
* @return 0 on success, otherwise a Win32 error code
*/
2016-04-11 15:14:17 +03:00
static UINT gdi_DeleteEncodingContext(RdpgfxClientContext* context,
2016-07-14 17:08:06 +03:00
const RDPGFX_DELETE_ENCODING_CONTEXT_PDU* deleteEncodingContext)
{
2015-06-09 16:22:26 +03:00
return CHANNEL_RC_OK;
}
/**
* Function description
*
* @return 0 on success, otherwise a Win32 error code
*/
2016-04-11 15:14:17 +03:00
static UINT gdi_CreateSurface(RdpgfxClientContext* context,
2016-07-14 17:08:06 +03:00
const RDPGFX_CREATE_SURFACE_PDU* createSurface)
{
gdiGfxSurface* surface;
rdpGdi* gdi = (rdpGdi*) context->custom;
surface = (gdiGfxSurface*) calloc(1, sizeof(gdiGfxSurface));
if (!surface)
2015-06-09 16:22:26 +03:00
return ERROR_INTERNAL_ERROR;
surface->codecs = codecs_new(gdi->context);
if (!surface->codecs)
2016-01-14 17:36:34 +03:00
{
2016-04-11 15:14:17 +03:00
free(surface);
return CHANNEL_RC_NO_MEMORY;
2016-01-14 17:36:34 +03:00
}
2016-07-14 17:08:06 +03:00
if (!freerdp_client_codecs_prepare(surface->codecs, FREERDP_CODEC_ALL,
createSurface->width, createSurface->height))
{
2016-04-11 15:14:17 +03:00
free(surface);
return ERROR_INTERNAL_ERROR;
}
surface->surfaceId = createSurface->surfaceId;
surface->width = (UINT32) createSurface->width;
surface->height = (UINT32) createSurface->height;
2016-04-11 15:14:17 +03:00
switch (createSurface->pixelFormat)
{
2016-07-13 15:58:11 +03:00
case GFX_PIXEL_FORMAT_ARGB_8888:
2016-04-11 15:14:17 +03:00
surface->format = PIXEL_FORMAT_BGRA32;
break;
2016-07-13 15:58:11 +03:00
case GFX_PIXEL_FORMAT_XRGB_8888:
2016-04-11 15:14:17 +03:00
surface->format = PIXEL_FORMAT_BGRX32;
break;
default:
free(surface);
return ERROR_INTERNAL_ERROR;
}
surface->scanline = (surface->width + (surface->width % 4)) * 4;
surface->data = (BYTE*) calloc(1, surface->scanline * surface->height);
if (!surface->data)
2014-11-17 01:00:13 +03:00
{
free(surface);
2015-06-09 16:22:26 +03:00
return ERROR_INTERNAL_ERROR;
2014-11-17 01:00:13 +03:00
}
surface->outputMapped = FALSE;
region16_init(&surface->invalidRegion);
context->SetSurfaceData(context, surface->surfaceId, (void*) surface);
2015-06-09 16:22:26 +03:00
return CHANNEL_RC_OK;
}
/**
* Function description
*
* @return 0 on success, otherwise a Win32 error code
*/
2016-04-11 15:14:17 +03:00
static UINT gdi_DeleteSurface(RdpgfxClientContext* context,
2016-07-14 17:08:06 +03:00
const RDPGFX_DELETE_SURFACE_PDU* deleteSurface)
{
rdpCodecs* codecs = NULL;
gdiGfxSurface* surface = NULL;
2016-04-11 15:14:17 +03:00
surface = (gdiGfxSurface*) context->GetSurfaceData(context,
2016-07-14 17:08:06 +03:00
deleteSurface->surfaceId);
if (surface)
{
region16_uninit(&surface->invalidRegion);
codecs = surface->codecs;
free(surface->data);
free(surface);
}
context->SetSurfaceData(context, deleteSurface->surfaceId, NULL);
if (codecs && codecs->progressive)
2016-04-11 15:14:17 +03:00
progressive_delete_surface_context(codecs->progressive,
2016-07-14 17:08:06 +03:00
deleteSurface->surfaceId);
codecs_free(codecs);
2015-06-09 16:22:26 +03:00
return CHANNEL_RC_OK;
}
/**
* Function description
*
* @return 0 on success, otherwise a Win32 error code
*/
2016-04-11 15:14:17 +03:00
static UINT gdi_SolidFill(RdpgfxClientContext* context,
2016-07-14 17:08:06 +03:00
const RDPGFX_SOLID_FILL_PDU* solidFill)
{
2016-04-11 15:14:17 +03:00
UINT status = CHANNEL_RC_OK;
UINT16 index;
UINT32 color;
BYTE a, r, g, b;
2016-04-11 15:14:17 +03:00
UINT32 nWidth, nHeight;
2016-03-02 16:39:36 +03:00
RECTANGLE_16* rect;
gdiGfxSurface* surface;
RECTANGLE_16 invalidRect;
rdpGdi* gdi = (rdpGdi*) context->custom;
2016-04-11 15:14:17 +03:00
surface = (gdiGfxSurface*) context->GetSurfaceData(context,
2016-07-14 17:08:06 +03:00
solidFill->surfaceId);
if (!surface)
2015-06-09 16:22:26 +03:00
return ERROR_INTERNAL_ERROR;
b = solidFill->fillPixel.B;
g = solidFill->fillPixel.G;
r = solidFill->fillPixel.R;
a = solidFill->fillPixel.XA;
2016-04-11 15:14:17 +03:00
color = GetColor(PIXEL_FORMAT_ARGB32, r, g, b, a);
color = ConvertColor(color, PIXEL_FORMAT_ARGB32, surface->format,
2016-07-14 17:08:06 +03:00
&gdi->palette);
for (index = 0; index < solidFill->fillRectCount; index++)
{
rect = &(solidFill->fillRects[index]);
nWidth = rect->right - rect->left;
nHeight = rect->bottom - rect->top;
invalidRect.left = rect->left;
invalidRect.top = rect->top;
invalidRect.right = rect->right;
invalidRect.bottom = rect->bottom;
freerdp_image_fill(surface->data, surface->format, surface->scanline,
2016-07-14 17:08:06 +03:00
rect->left, rect->top, nWidth, nHeight, color);
2016-04-11 15:14:17 +03:00
region16_union_rect(&(surface->invalidRegion), &(surface->invalidRegion),
2016-07-14 17:08:06 +03:00
&invalidRect);
}
if (!gdi->inGfxFrame)
2016-04-11 15:14:17 +03:00
{
status = CHANNEL_RC_NOT_INITIALIZED;
IFCALLRET(context->UpdateSurfaces, status, context);
}
2016-04-11 15:14:17 +03:00
return status;
}
/**
* Function description
*
* @return 0 on success, otherwise a Win32 error code
*/
2016-04-11 15:14:17 +03:00
static UINT gdi_SurfaceToSurface(RdpgfxClientContext* context,
2016-07-14 17:08:06 +03:00
const RDPGFX_SURFACE_TO_SURFACE_PDU* surfaceToSurface)
{
2016-04-11 15:14:17 +03:00
UINT status = CHANNEL_RC_OK;
UINT16 index;
BOOL sameSurface;
2016-04-11 15:14:17 +03:00
UINT32 nWidth, nHeight;
const RECTANGLE_16* rectSrc;
RDPGFX_POINT16* destPt;
RECTANGLE_16 invalidRect;
gdiGfxSurface* surfaceSrc;
gdiGfxSurface* surfaceDst;
rdpGdi* gdi = (rdpGdi*) context->custom;
rectSrc = &(surfaceToSurface->rectSrc);
2016-04-11 15:14:17 +03:00
surfaceSrc = (gdiGfxSurface*) context->GetSurfaceData(context,
2016-07-14 17:08:06 +03:00
surfaceToSurface->surfaceIdSrc);
2016-04-11 15:14:17 +03:00
sameSurface = (surfaceToSurface->surfaceIdSrc ==
2016-07-14 17:08:06 +03:00
surfaceToSurface->surfaceIdDest) ? TRUE : FALSE;
if (!sameSurface)
2016-04-11 15:14:17 +03:00
surfaceDst = (gdiGfxSurface*) context->GetSurfaceData(context,
2016-07-14 17:08:06 +03:00
surfaceToSurface->surfaceIdDest);
else
surfaceDst = surfaceSrc;
if (!surfaceSrc || !surfaceDst)
2015-06-09 16:22:26 +03:00
return ERROR_INTERNAL_ERROR;
nWidth = rectSrc->right - rectSrc->left;
nHeight = rectSrc->bottom - rectSrc->top;
for (index = 0; index < surfaceToSurface->destPtsCount; index++)
{
destPt = &surfaceToSurface->destPts[index];
2016-04-11 15:14:17 +03:00
freerdp_image_copy(surfaceDst->data, surfaceDst->format,
2016-07-14 17:08:06 +03:00
surfaceDst->scanline,
destPt->x, destPt->y, nWidth, nHeight,
surfaceSrc->data, surfaceSrc->format,
surfaceSrc->scanline,
rectSrc->left, rectSrc->top, NULL);
invalidRect.left = destPt->x;
invalidRect.top = destPt->y;
invalidRect.right = destPt->x + rectSrc->right;
invalidRect.bottom = destPt->y + rectSrc->bottom;
2016-04-11 15:14:17 +03:00
region16_union_rect(&surfaceDst->invalidRegion, &surfaceDst->invalidRegion,
2016-07-14 17:08:06 +03:00
&invalidRect);
}
if (!gdi->inGfxFrame)
2016-04-11 15:14:17 +03:00
{
status = CHANNEL_RC_NOT_INITIALIZED;
IFCALLRET(context->UpdateSurfaces, status, context);
}
2016-04-11 15:14:17 +03:00
return status;
}
/**
* Function description
*
* @return 0 on success, otherwise a Win32 error code
*/
2016-04-11 15:14:17 +03:00
static UINT gdi_SurfaceToCache(RdpgfxClientContext* context,
2016-07-14 17:08:06 +03:00
const RDPGFX_SURFACE_TO_CACHE_PDU* surfaceToCache)
{
2016-04-11 15:14:17 +03:00
const RECTANGLE_16* rect;
gdiGfxSurface* surface;
gdiGfxCacheEntry* cacheEntry;
rect = &(surfaceToCache->rectSrc);
2016-04-11 15:14:17 +03:00
surface = (gdiGfxSurface*) context->GetSurfaceData(context,
2016-07-14 17:08:06 +03:00
surfaceToCache->surfaceId);
if (!surface)
2015-06-09 16:22:26 +03:00
return ERROR_INTERNAL_ERROR;
cacheEntry = (gdiGfxCacheEntry*) calloc(1, sizeof(gdiGfxCacheEntry));
if (!cacheEntry)
2015-06-09 16:22:26 +03:00
return ERROR_INTERNAL_ERROR;
2016-04-11 15:14:17 +03:00
cacheEntry->width = (UINT32)(rect->right - rect->left);
cacheEntry->height = (UINT32)(rect->bottom - rect->top);
cacheEntry->format = surface->format;
cacheEntry->scanline = (cacheEntry->width + (cacheEntry->width % 4)) * 4;
cacheEntry->data = (BYTE*) calloc(1, cacheEntry->scanline * cacheEntry->height);
if (!cacheEntry->data)
2014-11-17 01:00:13 +03:00
{
free(cacheEntry);
2015-06-09 16:22:26 +03:00
return ERROR_INTERNAL_ERROR;
2014-11-17 01:00:13 +03:00
}
freerdp_image_copy(cacheEntry->data, cacheEntry->format, cacheEntry->scanline,
2016-07-14 17:08:06 +03:00
0, 0, cacheEntry->width, cacheEntry->height, surface->data,
surface->format, surface->scanline, rect->left, rect->top, NULL);
2016-04-11 15:14:17 +03:00
context->SetCacheSlotData(context, surfaceToCache->cacheSlot,
2016-07-14 17:08:06 +03:00
(void*) cacheEntry);
2015-06-09 16:22:26 +03:00
return CHANNEL_RC_OK;
}
/**
* Function description
*
* @return 0 on success, otherwise a Win32 error code
*/
2016-04-11 15:14:17 +03:00
static UINT gdi_CacheToSurface(RdpgfxClientContext* context,
2016-07-14 17:08:06 +03:00
const RDPGFX_CACHE_TO_SURFACE_PDU* cacheToSurface)
{
2016-04-11 15:14:17 +03:00
UINT status = CHANNEL_RC_OK;
UINT16 index;
RDPGFX_POINT16* destPt;
gdiGfxSurface* surface;
gdiGfxCacheEntry* cacheEntry;
RECTANGLE_16 invalidRect;
rdpGdi* gdi = (rdpGdi*) context->custom;
2016-04-11 15:14:17 +03:00
surface = (gdiGfxSurface*) context->GetSurfaceData(context,
2016-07-14 17:08:06 +03:00
cacheToSurface->surfaceId);
2016-04-11 15:14:17 +03:00
cacheEntry = (gdiGfxCacheEntry*) context->GetCacheSlotData(context,
2016-07-14 17:08:06 +03:00
cacheToSurface->cacheSlot);
if (!surface || !cacheEntry)
2015-06-09 16:22:26 +03:00
return ERROR_INTERNAL_ERROR;
for (index = 0; index < cacheToSurface->destPtsCount; index++)
{
destPt = &cacheToSurface->destPts[index];
freerdp_image_copy(surface->data, surface->format, surface->scanline,
2016-07-14 17:08:06 +03:00
destPt->x, destPt->y, cacheEntry->width, cacheEntry->height,
cacheEntry->data, cacheEntry->format, cacheEntry->scanline, 0, 0, NULL);
invalidRect.left = destPt->x;
invalidRect.top = destPt->y;
invalidRect.right = destPt->x + cacheEntry->width - 1;
invalidRect.bottom = destPt->y + cacheEntry->height - 1;
2016-04-11 15:14:17 +03:00
region16_union_rect(&surface->invalidRegion, &surface->invalidRegion,
2016-07-14 17:08:06 +03:00
&invalidRect);
}
if (!gdi->inGfxFrame)
2016-04-11 15:14:17 +03:00
{
status = CHANNEL_RC_NOT_INITIALIZED;
IFCALLRET(context->UpdateSurfaces, status, context);
}
2016-04-11 15:14:17 +03:00
return status;
}
/**
* Function description
*
* @return 0 on success, otherwise a Win32 error code
*/
2016-04-11 15:14:17 +03:00
static UINT gdi_CacheImportReply(RdpgfxClientContext* context,
2016-07-14 17:08:06 +03:00
const RDPGFX_CACHE_IMPORT_REPLY_PDU* cacheImportReply)
{
2015-06-09 16:22:26 +03:00
return CHANNEL_RC_OK;
}
/**
* Function description
*
* @return 0 on success, otherwise a Win32 error code
*/
2016-04-11 15:14:17 +03:00
static UINT gdi_EvictCacheEntry(RdpgfxClientContext* context,
2016-07-14 17:08:06 +03:00
const RDPGFX_EVICT_CACHE_ENTRY_PDU* evictCacheEntry)
{
gdiGfxCacheEntry* cacheEntry;
2016-04-11 15:14:17 +03:00
cacheEntry = (gdiGfxCacheEntry*) context->GetCacheSlotData(context,
2016-07-14 17:08:06 +03:00
evictCacheEntry->cacheSlot);
if (cacheEntry)
{
free(cacheEntry->data);
free(cacheEntry);
}
context->SetCacheSlotData(context, evictCacheEntry->cacheSlot, NULL);
2015-06-09 16:22:26 +03:00
return CHANNEL_RC_OK;
}
/**
* Function description
*
* @return 0 on success, otherwise a Win32 error code
*/
2016-04-11 15:14:17 +03:00
static UINT gdi_MapSurfaceToOutput(RdpgfxClientContext* context,
2016-07-14 17:08:06 +03:00
const RDPGFX_MAP_SURFACE_TO_OUTPUT_PDU* surfaceToOutput)
{
gdiGfxSurface* surface;
2016-04-11 15:14:17 +03:00
surface = (gdiGfxSurface*) context->GetSurfaceData(context,
2016-07-14 17:08:06 +03:00
surfaceToOutput->surfaceId);
if (!surface)
return ERROR_INTERNAL_ERROR;
surface->outputMapped = TRUE;
surface->outputOriginX = surfaceToOutput->outputOriginX;
surface->outputOriginY = surfaceToOutput->outputOriginY;
region16_clear(&surface->invalidRegion);
2015-06-09 16:22:26 +03:00
return CHANNEL_RC_OK;
}
/**
* Function description
*
* @return 0 on success, otherwise a Win32 error code
*/
2016-04-11 15:14:17 +03:00
static UINT gdi_MapSurfaceToWindow(RdpgfxClientContext* context,
2016-07-14 17:08:06 +03:00
const RDPGFX_MAP_SURFACE_TO_WINDOW_PDU* surfaceToWindow)
{
2015-06-09 16:22:26 +03:00
return CHANNEL_RC_OK;
}
void gdi_graphics_pipeline_init(rdpGdi* gdi, RdpgfxClientContext* gfx)
{
gdi->gfx = gfx;
gfx->custom = (void*) gdi;
gfx->ResetGraphics = gdi_ResetGraphics;
gfx->StartFrame = gdi_StartFrame;
gfx->EndFrame = gdi_EndFrame;
gfx->SurfaceCommand = gdi_SurfaceCommand;
gfx->DeleteEncodingContext = gdi_DeleteEncodingContext;
gfx->CreateSurface = gdi_CreateSurface;
gfx->DeleteSurface = gdi_DeleteSurface;
gfx->SolidFill = gdi_SolidFill;
gfx->SurfaceToSurface = gdi_SurfaceToSurface;
gfx->SurfaceToCache = gdi_SurfaceToCache;
gfx->CacheToSurface = gdi_CacheToSurface;
gfx->CacheImportReply = gdi_CacheImportReply;
gfx->EvictCacheEntry = gdi_EvictCacheEntry;
gfx->MapSurfaceToOutput = gdi_MapSurfaceToOutput;
gfx->MapSurfaceToWindow = gdi_MapSurfaceToWindow;
2016-04-11 15:14:17 +03:00
gfx->UpdateSurfaces = gdi_UpdateSurfaces;
}
void gdi_graphics_pipeline_uninit(rdpGdi* gdi, RdpgfxClientContext* gfx)
{
region16_uninit(&(gdi->invalidRegion));
gdi->gfx = NULL;
gfx->custom = NULL;
}