FreeRDP/client/X11/xf_video.c

133 lines
3.5 KiB
C
Raw Normal View History

/**
* FreeRDP: A Remote Desktop Protocol Implementation
* Video Optimized Remoting Virtual Channel Extension for X11
*
* Copyright 2017 David Fort <contact@hardening-consulting.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.
*/
#include <winpr/assert.h>
#include <freerdp/client/geometry.h>
#include <freerdp/client/video.h>
2018-02-08 10:55:27 +03:00
#include <freerdp/gdi/video.h>
#include "xf_video.h"
#include <freerdp/log.h>
#define TAG CLIENT_TAG("video")
typedef struct
{
VideoSurface base;
2018-02-08 09:49:50 +03:00
XImage* image;
} xfVideoSurface;
static VideoSurface* xfVideoCreateSurface(VideoClientContext* video, UINT32 x, UINT32 y,
2019-11-06 17:24:51 +03:00
UINT32 width, UINT32 height)
{
xfContext* xfc = NULL;
xfVideoSurface* ret = NULL;
2018-02-08 09:49:50 +03:00
WINPR_ASSERT(video);
ret = (xfVideoSurface*)VideoClient_CreateCommonContext(sizeof(xfContext), x, y, width, height);
if (!ret)
return NULL;
xfc = (xfContext*)video->custom;
WINPR_ASSERT(xfc);
ret->image = XCreateImage(xfc->display, xfc->visual, xfc->depth, ZPixmap, 0,
(char*)ret->base.data, width, height, 8, ret->base.scanline);
2018-02-08 09:49:50 +03:00
if (!ret->image)
{
WLog_ERR(TAG, "unable to create surface image");
VideoClient_DestroyCommonContext(&ret->base);
return NULL;
}
2018-02-08 09:49:50 +03:00
return &ret->base;
}
static BOOL xfVideoShowSurface(VideoClientContext* video, const VideoSurface* surface,
UINT32 destinationWidth, UINT32 destinationHeight)
{
const xfVideoSurface* xfSurface = (const xfVideoSurface*)surface;
xfContext* xfc = NULL;
const rdpSettings* settings = NULL;
WINPR_ASSERT(video);
WINPR_ASSERT(xfSurface);
xfc = video->custom;
WINPR_ASSERT(xfc);
settings = xfc->common.context.settings;
WINPR_ASSERT(settings);
2018-02-08 09:49:50 +03:00
#ifdef WITH_XRENDER
2023-10-13 10:48:44 +03:00
if (freerdp_settings_get_bool(settings, FreeRDP_SmartSizing) ||
freerdp_settings_get_bool(settings, FreeRDP_MultiTouchGestures))
2018-02-08 09:49:50 +03:00
{
2019-11-06 17:24:51 +03:00
XPutImage(xfc->display, xfc->primary, xfc->gc, xfSurface->image, 0, 0, surface->x,
surface->y, surface->w, surface->h);
2018-02-08 10:55:27 +03:00
xf_draw_screen(xfc, surface->x, surface->y, surface->w, surface->h);
2018-02-08 09:49:50 +03:00
}
else
#endif
{
2019-11-06 17:24:51 +03:00
XPutImage(xfc->display, xfc->drawable, xfc->gc, xfSurface->image, 0, 0, surface->x,
surface->y, surface->w, surface->h);
2018-02-08 09:49:50 +03:00
}
return TRUE;
}
2018-02-08 10:55:27 +03:00
static BOOL xfVideoDeleteSurface(VideoClientContext* video, VideoSurface* surface)
{
2018-02-08 10:55:27 +03:00
xfVideoSurface* xfSurface = (xfVideoSurface*)surface;
2019-02-07 19:53:21 +03:00
WINPR_UNUSED(video);
2018-02-08 10:55:27 +03:00
if (xfSurface)
XFree(xfSurface->image);
VideoClient_DestroyCommonContext(surface);
return TRUE;
}
2018-02-08 09:49:50 +03:00
void xf_video_control_init(xfContext* xfc, VideoClientContext* video)
{
WINPR_ASSERT(xfc);
WINPR_ASSERT(video);
gdi_video_control_init(xfc->common.context.gdi, video);
/* X11 needs to be able to handle 32bpp colors directly. */
if (xfc->depth >= 24)
{
video->custom = xfc;
video->createSurface = xfVideoCreateSurface;
video->showSurface = xfVideoShowSurface;
video->deleteSurface = xfVideoDeleteSurface;
}
}
2018-02-08 09:49:50 +03:00
void xf_video_control_uninit(xfContext* xfc, VideoClientContext* video)
{
WINPR_ASSERT(xfc);
gdi_video_control_uninit(xfc->common.context.gdi, video);
}