1036 lines
28 KiB
C
1036 lines
28 KiB
C
/**
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
|
* GDI Graphics Pipeline
|
|
*
|
|
* Copyright 2014 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
|
* 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
|
|
*/
|
|
static UINT gdi_ResetGraphics(RdpgfxClientContext* context,
|
|
const RDPGFX_RESET_GRAPHICS_PDU* resetGraphics)
|
|
{
|
|
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;
|
|
|
|
if ((DesktopWidth != settings->DesktopWidth)
|
|
|| (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,
|
|
surface->width, surface->height))
|
|
{
|
|
free(pSurfaceIds);
|
|
return ERROR_INTERNAL_ERROR;
|
|
}
|
|
|
|
region16_clear(&surface->invalidRegion);
|
|
}
|
|
|
|
free(pSurfaceIds);
|
|
|
|
if (!freerdp_client_codecs_reset(gdi->context->codecs, FREERDP_CODEC_ALL,
|
|
gdi->width, gdi->height))
|
|
return ERROR_INTERNAL_ERROR;
|
|
|
|
gdi->graphicsReset = TRUE;
|
|
return CHANNEL_RC_OK;
|
|
}
|
|
|
|
static UINT gdi_OutputUpdate(rdpGdi* gdi, gdiGfxSurface* surface)
|
|
{
|
|
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;
|
|
region16_intersect_rect(&(surface->invalidRegion),
|
|
&(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));
|
|
return CHANNEL_RC_OK;
|
|
}
|
|
|
|
static UINT gdi_UpdateSurfaces(RdpgfxClientContext* context)
|
|
{
|
|
UINT16 count;
|
|
UINT16 index;
|
|
UINT status = CHANNEL_RC_OK;
|
|
gdiGfxSurface* surface;
|
|
UINT16* pSurfaceIds = NULL;
|
|
rdpGdi* gdi = (rdpGdi*)context->custom;
|
|
|
|
if (!gdi->graphicsReset)
|
|
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);
|
|
|
|
if (status != CHANNEL_RC_OK)
|
|
break;
|
|
}
|
|
|
|
free(pSurfaceIds);
|
|
return status;
|
|
}
|
|
|
|
/**
|
|
* Function description
|
|
*
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
*/
|
|
static UINT gdi_StartFrame(RdpgfxClientContext* context,
|
|
const RDPGFX_START_FRAME_PDU* startFrame)
|
|
{
|
|
rdpGdi* gdi = (rdpGdi*) context->custom;
|
|
gdi->inGfxFrame = TRUE;
|
|
return CHANNEL_RC_OK;
|
|
}
|
|
|
|
/**
|
|
* Function description
|
|
*
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
*/
|
|
static UINT gdi_EndFrame(RdpgfxClientContext* context,
|
|
const RDPGFX_END_FRAME_PDU* endFrame)
|
|
{
|
|
UINT status = CHANNEL_RC_NOT_INITIALIZED;
|
|
rdpGdi* gdi = (rdpGdi*) context->custom;
|
|
IFCALLRET(context->UpdateSurfaces, status, context);
|
|
gdi->inGfxFrame = FALSE;
|
|
return status;
|
|
}
|
|
|
|
/**
|
|
* Function description
|
|
*
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
*/
|
|
static UINT gdi_SurfaceCommand_Uncompressed(rdpGdi* gdi,
|
|
RdpgfxClientContext* context,
|
|
const RDPGFX_SURFACE_COMMAND* cmd)
|
|
{
|
|
UINT status = CHANNEL_RC_OK;
|
|
gdiGfxSurface* surface;
|
|
RECTANGLE_16 invalidRect;
|
|
surface = (gdiGfxSurface*) context->GetSurfaceData(context, cmd->surfaceId);
|
|
|
|
if (!surface)
|
|
return ERROR_INTERNAL_ERROR;
|
|
|
|
if (!freerdp_image_copy(surface->data, surface->format, surface->scanline,
|
|
cmd->left, cmd->top, cmd->width, cmd->height,
|
|
cmd->data, cmd->format, 0, 0, 0, NULL))
|
|
return ERROR_INTERNAL_ERROR;
|
|
|
|
invalidRect.left = cmd->left;
|
|
invalidRect.top = cmd->top;
|
|
invalidRect.right = cmd->right;
|
|
invalidRect.bottom = cmd->bottom;
|
|
region16_union_rect(&(surface->invalidRegion), &(surface->invalidRegion),
|
|
&invalidRect);
|
|
|
|
if (!gdi->inGfxFrame)
|
|
{
|
|
status = CHANNEL_RC_NOT_INITIALIZED;
|
|
IFCALLRET(context->UpdateSurfaces, status, context);
|
|
}
|
|
|
|
return status;
|
|
}
|
|
|
|
/**
|
|
* Function description
|
|
*
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
*/
|
|
static UINT gdi_SurfaceCommand_RemoteFX(rdpGdi* gdi,
|
|
RdpgfxClientContext* context,
|
|
const RDPGFX_SURFACE_COMMAND* cmd)
|
|
{
|
|
UINT status = CHANNEL_RC_OK;
|
|
gdiGfxSurface* surface;
|
|
surface = (gdiGfxSurface*) context->GetSurfaceData(context, cmd->surfaceId);
|
|
|
|
if (!surface)
|
|
return ERROR_INTERNAL_ERROR;
|
|
|
|
if (!rfx_process_message(surface->codecs->rfx, cmd->data, cmd->format,
|
|
cmd->length,
|
|
cmd->left, cmd->top,
|
|
surface->data, surface->format, surface->scanline,
|
|
surface->height, &surface->invalidRegion))
|
|
{
|
|
WLog_ERR(TAG, "Failed to process RemoteFX message");
|
|
return ERROR_INTERNAL_ERROR;
|
|
}
|
|
|
|
if (!gdi->inGfxFrame)
|
|
{
|
|
status = CHANNEL_RC_NOT_INITIALIZED;
|
|
IFCALLRET(context->UpdateSurfaces, status, context);
|
|
}
|
|
|
|
return status;
|
|
}
|
|
|
|
/**
|
|
* Function description
|
|
*
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
*/
|
|
static UINT gdi_SurfaceCommand_ClearCodec(rdpGdi* gdi,
|
|
RdpgfxClientContext* context,
|
|
const RDPGFX_SURFACE_COMMAND* cmd)
|
|
{
|
|
INT32 rc;
|
|
UINT status = CHANNEL_RC_OK;
|
|
gdiGfxSurface* surface;
|
|
RECTANGLE_16 invalidRect;
|
|
surface = (gdiGfxSurface*) context->GetSurfaceData(context, cmd->surfaceId);
|
|
|
|
if (!surface)
|
|
return ERROR_INTERNAL_ERROR;
|
|
|
|
rc = clear_decompress(surface->codecs->clear, cmd->data, cmd->length,
|
|
cmd->width, cmd->height,
|
|
surface->data, surface->format,
|
|
surface->scanline, cmd->left, cmd->top,
|
|
surface->width, surface->height, &gdi->palette);
|
|
|
|
if (rc < 0)
|
|
{
|
|
WLog_ERR(TAG, "clear_decompress failure: %d", status);
|
|
return ERROR_INTERNAL_ERROR;
|
|
}
|
|
|
|
invalidRect.left = cmd->left;
|
|
invalidRect.top = cmd->top;
|
|
invalidRect.right = cmd->right;
|
|
invalidRect.bottom = cmd->bottom;
|
|
region16_union_rect(&(surface->invalidRegion), &(surface->invalidRegion),
|
|
&invalidRect);
|
|
|
|
if (!gdi->inGfxFrame)
|
|
{
|
|
status = CHANNEL_RC_NOT_INITIALIZED;
|
|
IFCALLRET(context->UpdateSurfaces, status, context);
|
|
}
|
|
|
|
return status;
|
|
}
|
|
|
|
/**
|
|
* Function description
|
|
*
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
*/
|
|
static UINT gdi_SurfaceCommand_Planar(rdpGdi* gdi, RdpgfxClientContext* context,
|
|
const RDPGFX_SURFACE_COMMAND* cmd)
|
|
{
|
|
UINT status = CHANNEL_RC_OK;
|
|
BYTE* DstData = NULL;
|
|
gdiGfxSurface* surface;
|
|
RECTANGLE_16 invalidRect;
|
|
surface = (gdiGfxSurface*) context->GetSurfaceData(context, cmd->surfaceId);
|
|
|
|
if (!surface)
|
|
return ERROR_INTERNAL_ERROR;
|
|
|
|
DstData = surface->data;
|
|
|
|
if (!planar_decompress(surface->codecs->planar, cmd->data, cmd->length,
|
|
DstData, surface->format,
|
|
surface->scanline, cmd->left, cmd->top,
|
|
cmd->width, cmd->height, FALSE))
|
|
return ERROR_INTERNAL_ERROR;
|
|
|
|
invalidRect.left = cmd->left;
|
|
invalidRect.top = cmd->top;
|
|
invalidRect.right = cmd->right;
|
|
invalidRect.bottom = cmd->bottom;
|
|
region16_union_rect(&(surface->invalidRegion), &(surface->invalidRegion),
|
|
&invalidRect);
|
|
|
|
if (!gdi->inGfxFrame)
|
|
{
|
|
status = CHANNEL_RC_NOT_INITIALIZED;
|
|
IFCALLRET(context->UpdateSurfaces, status, context);
|
|
}
|
|
|
|
return status;
|
|
}
|
|
|
|
/**
|
|
* Function description
|
|
*
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
*/
|
|
static UINT gdi_SurfaceCommand_AVC420(rdpGdi* gdi,
|
|
RdpgfxClientContext* context,
|
|
const RDPGFX_SURFACE_COMMAND* cmd)
|
|
{
|
|
INT32 rc;
|
|
UINT status = CHANNEL_RC_OK;
|
|
UINT32 i;
|
|
gdiGfxSurface* surface;
|
|
RDPGFX_H264_METABLOCK* meta;
|
|
RDPGFX_AVC420_BITMAP_STREAM* bs;
|
|
surface = (gdiGfxSurface*) context->GetSurfaceData(context, cmd->surfaceId);
|
|
|
|
if (!surface)
|
|
return ERROR_INTERNAL_ERROR;
|
|
|
|
bs = (RDPGFX_AVC420_BITMAP_STREAM*) cmd->extra;
|
|
|
|
if (!bs)
|
|
return ERROR_INTERNAL_ERROR;
|
|
|
|
meta = &(bs->meta);
|
|
rc = avc420_decompress(surface->codecs->h264, bs->data, bs->length,
|
|
surface->data, surface->format,
|
|
surface->scanline, surface->width,
|
|
surface->height, meta->regionRects,
|
|
meta->numRegionRects);
|
|
|
|
if (rc < 0)
|
|
{
|
|
WLog_WARN(TAG, "avc420_decompress failure: %d, ignoring update.", status);
|
|
return CHANNEL_RC_OK;
|
|
}
|
|
|
|
for (i = 0; i < meta->numRegionRects; i++)
|
|
{
|
|
region16_union_rect(&(surface->invalidRegion), &(surface->invalidRegion),
|
|
(RECTANGLE_16*) & (meta->regionRects[i]));
|
|
}
|
|
|
|
if (!gdi->inGfxFrame)
|
|
{
|
|
status = CHANNEL_RC_NOT_INITIALIZED;
|
|
IFCALLRET(context->UpdateSurfaces, status, context);
|
|
}
|
|
|
|
return status;
|
|
}
|
|
|
|
/**
|
|
* Function description
|
|
*
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
*/
|
|
static UINT gdi_SurfaceCommand_AVC444(rdpGdi* gdi, RdpgfxClientContext* context,
|
|
const RDPGFX_SURFACE_COMMAND* cmd)
|
|
{
|
|
INT32 rc;
|
|
UINT status = CHANNEL_RC_OK;
|
|
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;
|
|
rc = avc444_decompress(surface->codecs->h264, bs->LC,
|
|
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);
|
|
|
|
if (rc < 0)
|
|
{
|
|
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),
|
|
&(surface->invalidRegion),
|
|
&(meta1->regionRects[i]));
|
|
}
|
|
|
|
for (i = 0; i < meta2->numRegionRects; i++)
|
|
{
|
|
region16_union_rect(&(surface->invalidRegion),
|
|
&(surface->invalidRegion),
|
|
&(meta2->regionRects[i]));
|
|
}
|
|
|
|
if (!gdi->inGfxFrame)
|
|
{
|
|
status = CHANNEL_RC_NOT_INITIALIZED;
|
|
IFCALLRET(context->UpdateSurfaces, status, context);
|
|
}
|
|
|
|
free(regionRects);
|
|
return status;
|
|
}
|
|
|
|
/**
|
|
* Function description
|
|
*
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
*/
|
|
static UINT gdi_SurfaceCommand_Alpha(rdpGdi* gdi, RdpgfxClientContext* context,
|
|
const RDPGFX_SURFACE_COMMAND* cmd)
|
|
{
|
|
UINT status = CHANNEL_RC_OK;
|
|
gdiGfxSurface* surface;
|
|
RECTANGLE_16 invalidRect;
|
|
surface = (gdiGfxSurface*) context->GetSurfaceData(context, cmd->surfaceId);
|
|
|
|
if (!surface)
|
|
return ERROR_INTERNAL_ERROR;
|
|
|
|
WLog_WARN(TAG, "TODO gdi_SurfaceCommand_Alpha: status: %d", status);
|
|
|
|
/* fill with green for now to distinguish from the rest */
|
|
if (!freerdp_image_fill(surface->data, surface->format, surface->scanline,
|
|
cmd->left, cmd->top, cmd->width, cmd->height, 0x00FF00))
|
|
return ERROR_INTERNAL_ERROR;
|
|
|
|
invalidRect.left = cmd->left;
|
|
invalidRect.top = cmd->top;
|
|
invalidRect.right = cmd->right;
|
|
invalidRect.bottom = cmd->bottom;
|
|
region16_union_rect(&(surface->invalidRegion), &(surface->invalidRegion),
|
|
&invalidRect);
|
|
|
|
if (!gdi->inGfxFrame)
|
|
{
|
|
status = CHANNEL_RC_NOT_INITIALIZED;
|
|
IFCALLRET(context->UpdateSurfaces, status, context);
|
|
}
|
|
|
|
return status;
|
|
}
|
|
|
|
/**
|
|
* Function description
|
|
*
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
*/
|
|
static UINT gdi_SurfaceCommand_Progressive(rdpGdi* gdi,
|
|
RdpgfxClientContext* context,
|
|
const RDPGFX_SURFACE_COMMAND* cmd)
|
|
{
|
|
INT32 rc;
|
|
UINT status = CHANNEL_RC_OK;
|
|
gdiGfxSurface* surface;
|
|
RECTANGLE_16 invalidRect;
|
|
surface = (gdiGfxSurface*) context->GetSurfaceData(context, cmd->surfaceId);
|
|
|
|
if (!surface)
|
|
return ERROR_INTERNAL_ERROR;
|
|
|
|
rc = progressive_create_surface_context(surface->codecs->progressive,
|
|
cmd->surfaceId,
|
|
surface->width, surface->height);
|
|
|
|
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,
|
|
cmd->length, surface->data, surface->format,
|
|
surface->scanline, cmd->left, cmd->top,
|
|
cmd->width, cmd->height, cmd->surfaceId);
|
|
|
|
if (rc < 0)
|
|
{
|
|
WLog_ERR(TAG, "progressive_decompress failure: %d", rc);
|
|
return ERROR_INTERNAL_ERROR;
|
|
}
|
|
|
|
invalidRect.left = cmd->left;
|
|
invalidRect.top = cmd->top;
|
|
invalidRect.right = cmd->right;
|
|
invalidRect.bottom = cmd->bottom;
|
|
region16_union_rect(&(surface->invalidRegion), &(surface->invalidRegion),
|
|
&invalidRect);
|
|
|
|
if (!gdi->inGfxFrame)
|
|
{
|
|
status = CHANNEL_RC_NOT_INITIALIZED;
|
|
IFCALLRET(context->UpdateSurfaces, status, context);
|
|
}
|
|
|
|
return status;
|
|
}
|
|
|
|
/**
|
|
* Function description
|
|
*
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
*/
|
|
static UINT gdi_SurfaceCommand(RdpgfxClientContext* context,
|
|
const RDPGFX_SURFACE_COMMAND* cmd)
|
|
{
|
|
UINT status = CHANNEL_RC_OK;
|
|
rdpGdi* gdi = (rdpGdi*) context->custom;
|
|
|
|
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;
|
|
|
|
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;
|
|
}
|
|
|
|
return status;
|
|
}
|
|
|
|
/**
|
|
* Function description
|
|
*
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
*/
|
|
static UINT gdi_DeleteEncodingContext(RdpgfxClientContext* context,
|
|
const RDPGFX_DELETE_ENCODING_CONTEXT_PDU* deleteEncodingContext)
|
|
{
|
|
return CHANNEL_RC_OK;
|
|
}
|
|
|
|
/**
|
|
* Function description
|
|
*
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
*/
|
|
static UINT gdi_CreateSurface(RdpgfxClientContext* context,
|
|
const RDPGFX_CREATE_SURFACE_PDU* createSurface)
|
|
{
|
|
gdiGfxSurface* surface;
|
|
rdpGdi* gdi = (rdpGdi*) context->custom;
|
|
surface = (gdiGfxSurface*) calloc(1, sizeof(gdiGfxSurface));
|
|
|
|
if (!surface)
|
|
return ERROR_INTERNAL_ERROR;
|
|
|
|
surface->codecs = codecs_new(gdi->context);
|
|
|
|
if (!surface->codecs)
|
|
{
|
|
free(surface);
|
|
return CHANNEL_RC_NO_MEMORY;
|
|
}
|
|
|
|
if (!freerdp_client_codecs_prepare(surface->codecs, FREERDP_CODEC_ALL,
|
|
createSurface->width, createSurface->height))
|
|
{
|
|
free(surface);
|
|
return ERROR_INTERNAL_ERROR;
|
|
}
|
|
|
|
surface->surfaceId = createSurface->surfaceId;
|
|
surface->width = (UINT32) createSurface->width;
|
|
surface->height = (UINT32) createSurface->height;
|
|
|
|
switch (createSurface->pixelFormat)
|
|
{
|
|
case GFX_PIXEL_FORMAT_ARGB_8888:
|
|
surface->format = PIXEL_FORMAT_BGRA32;
|
|
break;
|
|
|
|
case GFX_PIXEL_FORMAT_XRGB_8888:
|
|
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)
|
|
{
|
|
free(surface);
|
|
return ERROR_INTERNAL_ERROR;
|
|
}
|
|
|
|
surface->outputMapped = FALSE;
|
|
region16_init(&surface->invalidRegion);
|
|
context->SetSurfaceData(context, surface->surfaceId, (void*) surface);
|
|
return CHANNEL_RC_OK;
|
|
}
|
|
|
|
/**
|
|
* Function description
|
|
*
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
*/
|
|
static UINT gdi_DeleteSurface(RdpgfxClientContext* context,
|
|
const RDPGFX_DELETE_SURFACE_PDU* deleteSurface)
|
|
{
|
|
rdpCodecs* codecs = NULL;
|
|
gdiGfxSurface* surface = NULL;
|
|
surface = (gdiGfxSurface*) context->GetSurfaceData(context,
|
|
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)
|
|
progressive_delete_surface_context(codecs->progressive,
|
|
deleteSurface->surfaceId);
|
|
|
|
codecs_free(codecs);
|
|
return CHANNEL_RC_OK;
|
|
}
|
|
|
|
/**
|
|
* Function description
|
|
*
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
*/
|
|
static UINT gdi_SolidFill(RdpgfxClientContext* context,
|
|
const RDPGFX_SOLID_FILL_PDU* solidFill)
|
|
{
|
|
UINT status = CHANNEL_RC_OK;
|
|
UINT16 index;
|
|
UINT32 color;
|
|
BYTE a, r, g, b;
|
|
UINT32 nWidth, nHeight;
|
|
RECTANGLE_16* rect;
|
|
gdiGfxSurface* surface;
|
|
RECTANGLE_16 invalidRect;
|
|
rdpGdi* gdi = (rdpGdi*) context->custom;
|
|
surface = (gdiGfxSurface*) context->GetSurfaceData(context,
|
|
solidFill->surfaceId);
|
|
|
|
if (!surface)
|
|
return ERROR_INTERNAL_ERROR;
|
|
|
|
b = solidFill->fillPixel.B;
|
|
g = solidFill->fillPixel.G;
|
|
r = solidFill->fillPixel.R;
|
|
a = solidFill->fillPixel.XA;
|
|
color = GetColor(PIXEL_FORMAT_ARGB32, r, g, b, a);
|
|
color = ConvertColor(color, PIXEL_FORMAT_ARGB32, surface->format,
|
|
&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,
|
|
rect->left, rect->top, nWidth, nHeight, color);
|
|
region16_union_rect(&(surface->invalidRegion), &(surface->invalidRegion),
|
|
&invalidRect);
|
|
}
|
|
|
|
if (!gdi->inGfxFrame)
|
|
{
|
|
status = CHANNEL_RC_NOT_INITIALIZED;
|
|
IFCALLRET(context->UpdateSurfaces, status, context);
|
|
}
|
|
|
|
return status;
|
|
}
|
|
|
|
/**
|
|
* Function description
|
|
*
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
*/
|
|
static UINT gdi_SurfaceToSurface(RdpgfxClientContext* context,
|
|
const RDPGFX_SURFACE_TO_SURFACE_PDU* surfaceToSurface)
|
|
{
|
|
UINT status = CHANNEL_RC_OK;
|
|
UINT16 index;
|
|
BOOL sameSurface;
|
|
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);
|
|
surfaceSrc = (gdiGfxSurface*) context->GetSurfaceData(context,
|
|
surfaceToSurface->surfaceIdSrc);
|
|
sameSurface = (surfaceToSurface->surfaceIdSrc ==
|
|
surfaceToSurface->surfaceIdDest) ? TRUE : FALSE;
|
|
|
|
if (!sameSurface)
|
|
surfaceDst = (gdiGfxSurface*) context->GetSurfaceData(context,
|
|
surfaceToSurface->surfaceIdDest);
|
|
else
|
|
surfaceDst = surfaceSrc;
|
|
|
|
if (!surfaceSrc || !surfaceDst)
|
|
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];
|
|
freerdp_image_copy(surfaceDst->data, surfaceDst->format,
|
|
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;
|
|
region16_union_rect(&surfaceDst->invalidRegion, &surfaceDst->invalidRegion,
|
|
&invalidRect);
|
|
}
|
|
|
|
if (!gdi->inGfxFrame)
|
|
{
|
|
status = CHANNEL_RC_NOT_INITIALIZED;
|
|
IFCALLRET(context->UpdateSurfaces, status, context);
|
|
}
|
|
|
|
return status;
|
|
}
|
|
|
|
/**
|
|
* Function description
|
|
*
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
*/
|
|
static UINT gdi_SurfaceToCache(RdpgfxClientContext* context,
|
|
const RDPGFX_SURFACE_TO_CACHE_PDU* surfaceToCache)
|
|
{
|
|
const RECTANGLE_16* rect;
|
|
gdiGfxSurface* surface;
|
|
gdiGfxCacheEntry* cacheEntry;
|
|
rect = &(surfaceToCache->rectSrc);
|
|
surface = (gdiGfxSurface*) context->GetSurfaceData(context,
|
|
surfaceToCache->surfaceId);
|
|
|
|
if (!surface)
|
|
return ERROR_INTERNAL_ERROR;
|
|
|
|
cacheEntry = (gdiGfxCacheEntry*) calloc(1, sizeof(gdiGfxCacheEntry));
|
|
|
|
if (!cacheEntry)
|
|
return ERROR_INTERNAL_ERROR;
|
|
|
|
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)
|
|
{
|
|
free(cacheEntry);
|
|
return ERROR_INTERNAL_ERROR;
|
|
}
|
|
|
|
freerdp_image_copy(cacheEntry->data, cacheEntry->format, cacheEntry->scanline,
|
|
0, 0, cacheEntry->width, cacheEntry->height, surface->data,
|
|
surface->format, surface->scanline, rect->left, rect->top, NULL);
|
|
context->SetCacheSlotData(context, surfaceToCache->cacheSlot,
|
|
(void*) cacheEntry);
|
|
return CHANNEL_RC_OK;
|
|
}
|
|
|
|
/**
|
|
* Function description
|
|
*
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
*/
|
|
static UINT gdi_CacheToSurface(RdpgfxClientContext* context,
|
|
const RDPGFX_CACHE_TO_SURFACE_PDU* cacheToSurface)
|
|
{
|
|
UINT status = CHANNEL_RC_OK;
|
|
UINT16 index;
|
|
RDPGFX_POINT16* destPt;
|
|
gdiGfxSurface* surface;
|
|
gdiGfxCacheEntry* cacheEntry;
|
|
RECTANGLE_16 invalidRect;
|
|
rdpGdi* gdi = (rdpGdi*) context->custom;
|
|
surface = (gdiGfxSurface*) context->GetSurfaceData(context,
|
|
cacheToSurface->surfaceId);
|
|
cacheEntry = (gdiGfxCacheEntry*) context->GetCacheSlotData(context,
|
|
cacheToSurface->cacheSlot);
|
|
|
|
if (!surface || !cacheEntry)
|
|
return ERROR_INTERNAL_ERROR;
|
|
|
|
for (index = 0; index < cacheToSurface->destPtsCount; index++)
|
|
{
|
|
destPt = &cacheToSurface->destPts[index];
|
|
freerdp_image_copy(surface->data, surface->format, surface->scanline,
|
|
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;
|
|
region16_union_rect(&surface->invalidRegion, &surface->invalidRegion,
|
|
&invalidRect);
|
|
}
|
|
|
|
if (!gdi->inGfxFrame)
|
|
{
|
|
status = CHANNEL_RC_NOT_INITIALIZED;
|
|
IFCALLRET(context->UpdateSurfaces, status, context);
|
|
}
|
|
|
|
return status;
|
|
}
|
|
|
|
/**
|
|
* Function description
|
|
*
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
*/
|
|
static UINT gdi_CacheImportReply(RdpgfxClientContext* context,
|
|
const RDPGFX_CACHE_IMPORT_REPLY_PDU* cacheImportReply)
|
|
{
|
|
return CHANNEL_RC_OK;
|
|
}
|
|
|
|
/**
|
|
* Function description
|
|
*
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
*/
|
|
static UINT gdi_EvictCacheEntry(RdpgfxClientContext* context,
|
|
const RDPGFX_EVICT_CACHE_ENTRY_PDU* evictCacheEntry)
|
|
{
|
|
gdiGfxCacheEntry* cacheEntry;
|
|
cacheEntry = (gdiGfxCacheEntry*) context->GetCacheSlotData(context,
|
|
evictCacheEntry->cacheSlot);
|
|
|
|
if (cacheEntry)
|
|
{
|
|
free(cacheEntry->data);
|
|
free(cacheEntry);
|
|
}
|
|
|
|
context->SetCacheSlotData(context, evictCacheEntry->cacheSlot, NULL);
|
|
return CHANNEL_RC_OK;
|
|
}
|
|
|
|
/**
|
|
* Function description
|
|
*
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
*/
|
|
static UINT gdi_MapSurfaceToOutput(RdpgfxClientContext* context,
|
|
const RDPGFX_MAP_SURFACE_TO_OUTPUT_PDU* surfaceToOutput)
|
|
{
|
|
gdiGfxSurface* surface;
|
|
surface = (gdiGfxSurface*) context->GetSurfaceData(context,
|
|
surfaceToOutput->surfaceId);
|
|
|
|
if (!surface)
|
|
return ERROR_INTERNAL_ERROR;
|
|
|
|
surface->outputMapped = TRUE;
|
|
surface->outputOriginX = surfaceToOutput->outputOriginX;
|
|
surface->outputOriginY = surfaceToOutput->outputOriginY;
|
|
region16_clear(&surface->invalidRegion);
|
|
return CHANNEL_RC_OK;
|
|
}
|
|
|
|
/**
|
|
* Function description
|
|
*
|
|
* @return 0 on success, otherwise a Win32 error code
|
|
*/
|
|
static UINT gdi_MapSurfaceToWindow(RdpgfxClientContext* context,
|
|
const RDPGFX_MAP_SURFACE_TO_WINDOW_PDU* surfaceToWindow)
|
|
{
|
|
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;
|
|
gfx->UpdateSurfaces = gdi_UpdateSurfaces;
|
|
}
|
|
|
|
void gdi_graphics_pipeline_uninit(rdpGdi* gdi, RdpgfxClientContext* gfx)
|
|
{
|
|
region16_uninit(&(gdi->invalidRegion));
|
|
gdi->gfx = NULL;
|
|
gfx->custom = NULL;
|
|
}
|
|
|