FreeRDP/client/X11/xf_graphics.c

533 lines
13 KiB
C
Raw Permalink Normal View History

/**
2012-10-09 07:02:04 +04:00
* FreeRDP: A Remote Desktop Protocol Implementation
* X11 Graphical Objects
*
* Copyright 2011 Marc-Andre Moreau <marcandre.moreau@gmail.com>
* Copyright 2016 Thincast Technologies GmbH
* Copyright 2016 Armin Novak <armin.novak@thincast.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.
*/
2022-02-16 13:20:38 +03:00
#include <freerdp/config.h>
2011-10-21 02:18:45 +04:00
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#ifdef WITH_XCURSOR
#include <X11/Xcursor/Xcursor.h>
#endif
2022-06-29 15:18:36 +03:00
#include <float.h>
#include <math.h>
#include <winpr/crt.h>
#include <winpr/assert.h>
#include <freerdp/codec/bitmap.h>
#include <freerdp/codec/rfx.h>
#include "xf_graphics.h"
#include "xf_event.h"
2014-09-12 19:13:01 +04:00
#include <freerdp/log.h>
#define TAG CLIENT_TAG("x11")
2022-07-04 09:52:17 +03:00
static BOOL xf_Pointer_Set(rdpContext* context, rdpPointer* pointer);
2017-01-25 10:33:36 +03:00
BOOL xf_decode_color(xfContext* xfc, const UINT32 srcColor, XColor* color)
2016-08-03 11:54:50 +03:00
{
UINT32 SrcFormat = 0;
BYTE r = 0;
BYTE g = 0;
BYTE b = 0;
BYTE a = 0;
2017-01-25 10:33:36 +03:00
if (!xfc || !color)
return FALSE;
rdpGdi* gdi = xfc->common.context.gdi;
2016-08-03 11:54:50 +03:00
2017-01-25 10:33:36 +03:00
if (!gdi)
2016-08-03 11:54:50 +03:00
return FALSE;
rdpSettings* settings = xfc->common.context.settings;
2016-08-03 11:54:50 +03:00
2017-01-25 10:33:36 +03:00
if (!settings)
return FALSE;
switch (freerdp_settings_get_uint32(settings, FreeRDP_ColorDepth))
2017-02-01 13:00:24 +03:00
{
case 32:
case 24:
SrcFormat = PIXEL_FORMAT_BGR24;
break;
case 16:
SrcFormat = PIXEL_FORMAT_RGB16;
break;
case 15:
SrcFormat = PIXEL_FORMAT_RGB15;
break;
case 8:
SrcFormat = PIXEL_FORMAT_RGB8;
break;
default:
return FALSE;
}
FreeRDPSplitColor(srcColor, SrcFormat, &r, &g, &b, &a, &gdi->palette);
2017-01-25 10:33:36 +03:00
color->blue = (unsigned short)(b << 8);
color->green = (unsigned short)(g << 8);
color->red = (unsigned short)(r << 8);
color->flags = DoRed | DoGreen | DoBlue;
if (XAllocColor(xfc->display, xfc->colormap, color) == 0)
return FALSE;
2016-08-03 11:54:50 +03:00
return TRUE;
}
2022-07-04 09:52:17 +03:00
static BOOL xf_Pointer_GetCursorForCurrentScale(rdpContext* context, rdpPointer* pointer,
Cursor* cursor)
{
2023-05-31 09:29:24 +03:00
#if defined(WITH_XCURSOR) && defined(WITH_XRENDER)
xfContext* xfc = (xfContext*)context;
2022-04-29 15:21:31 +03:00
xfPointer* xpointer = (xfPointer*)pointer;
2020-10-05 10:45:45 +03:00
XcursorImage ci = { 0 };
2020-11-10 10:14:56 +03:00
int cursorIndex = -1;
if (!context || !pointer || !context->gdi)
return FALSE;
rdpSettings* settings = xfc->common.context.settings;
if (!settings)
return FALSE;
2024-09-02 15:57:55 +03:00
const double dw = freerdp_settings_get_uint32(settings, FreeRDP_DesktopWidth);
const double xscale =
(freerdp_settings_get_bool(settings, FreeRDP_SmartSizing) ? 1.0 * xfc->scaledWidth / dw
: 1);
const double dh = freerdp_settings_get_uint32(settings, FreeRDP_DesktopHeight);
const double yscale =
(freerdp_settings_get_bool(settings, FreeRDP_SmartSizing) ? 1.0 * xfc->scaledHeight / dh
: 1);
const UINT32 xTargetSize = MAX(1, (UINT32)lround(1.0 * pointer->width * xscale));
const UINT32 yTargetSize = MAX(1, (UINT32)lround(1.0 * pointer->height * yscale));
WLog_DBG(TAG, "scaled: %" PRIu32 "x%" PRIu32 ", desktop: %" PRIu32 "x%" PRIu32,
2023-10-13 10:48:44 +03:00
xfc->scaledWidth, xfc->scaledHeight,
freerdp_settings_get_uint32(settings, FreeRDP_DesktopWidth),
freerdp_settings_get_uint32(settings, FreeRDP_DesktopHeight));
for (UINT32 i = 0; i < xpointer->nCursors; i++)
{
2022-07-04 09:52:17 +03:00
if ((xpointer->cursorWidths[i] == xTargetSize) &&
(xpointer->cursorHeights[i] == yTargetSize))
{
cursorIndex = i;
}
}
if (cursorIndex == -1)
{
UINT32 CursorFormat = 0;
xf_lock_x11(xfc);
if (!xfc->invert)
CursorFormat = (!xfc->big_endian) ? PIXEL_FORMAT_RGBA32 : PIXEL_FORMAT_ABGR32;
else
CursorFormat = (!xfc->big_endian) ? PIXEL_FORMAT_BGRA32 : PIXEL_FORMAT_ARGB32;
if (xpointer->nCursors == xpointer->mCursors)
{
void* tmp2 = NULL;
xpointer->mCursors = (xpointer->mCursors == 0 ? 1 : xpointer->mCursors * 2);
2020-10-05 10:45:45 +03:00
tmp2 = realloc(xpointer->cursorWidths, sizeof(UINT32) * xpointer->mCursors);
if (!tmp2)
{
xf_unlock_x11(xfc);
return FALSE;
}
2020-10-05 10:45:45 +03:00
xpointer->cursorWidths = tmp2;
tmp2 = realloc(xpointer->cursorHeights, sizeof(UINT32) * xpointer->mCursors);
if (!tmp2)
{
xf_unlock_x11(xfc);
return FALSE;
}
2020-10-05 10:45:45 +03:00
xpointer->cursorHeights = (UINT32*)tmp2;
tmp2 = realloc(xpointer->cursors, sizeof(Cursor) * xpointer->mCursors);
if (!tmp2)
{
xf_unlock_x11(xfc);
return FALSE;
}
2020-10-05 10:45:45 +03:00
xpointer->cursors = (Cursor*)tmp2;
}
ci.version = XCURSOR_IMAGE_VERSION;
ci.size = sizeof(ci);
ci.width = xTargetSize;
ci.height = yTargetSize;
2024-09-02 15:57:55 +03:00
ci.xhot = (XcursorDim)lround(1.0 * pointer->xPos * xscale);
ci.yhot = (XcursorDim)lround(1.0 * pointer->yPos * yscale);
const size_t size = 1ull * ci.height * ci.width * FreeRDPGetBytesPerPixel(CursorFormat);
void* tmp = winpr_aligned_malloc(size, 16);
2020-10-05 10:45:45 +03:00
if (!tmp)
{
xf_unlock_x11(xfc);
return FALSE;
}
2020-10-05 10:45:45 +03:00
ci.pixels = (XcursorPixel*)tmp;
const double xs = fabs(fabs(xscale) - 1.0);
const double ys = fabs(fabs(yscale) - 1.0);
2022-07-04 13:13:20 +03:00
WLog_DBG(TAG,
"cursorIndex %" PRId32 " scaling pointer %" PRIu32 "x%" PRIu32 " --> %" PRIu32
2022-07-04 13:13:20 +03:00
"x%" PRIu32 " [%lfx%lf]",
cursorIndex, pointer->width, pointer->height, ci.width, ci.height, xscale, yscale);
if ((xs > DBL_EPSILON) || (ys > DBL_EPSILON))
{
if (!freerdp_image_scale((BYTE*)ci.pixels, CursorFormat, 0, 0, 0, ci.width, ci.height,
(BYTE*)xpointer->cursorPixels, CursorFormat, 0, 0, 0,
pointer->width, pointer->height))
{
winpr_aligned_free(tmp);
xf_unlock_x11(xfc);
return FALSE;
}
}
else
{
ci.pixels = xpointer->cursorPixels;
}
cursorIndex = xpointer->nCursors;
xpointer->cursorWidths[cursorIndex] = ci.width;
xpointer->cursorHeights[cursorIndex] = ci.height;
xpointer->cursors[cursorIndex] = XcursorImageLoadCursor(xfc->display, &ci);
xpointer->nCursors += 1;
2020-10-05 10:45:45 +03:00
winpr_aligned_free(tmp);
xf_unlock_x11(xfc);
}
2022-07-04 13:13:20 +03:00
else
{
WLog_DBG(TAG, "using cached cursor %" PRId32, cursorIndex);
2022-07-04 13:13:20 +03:00
}
cursor[0] = xpointer->cursors[cursorIndex];
#endif
return TRUE;
}
2011-10-21 02:18:45 +04:00
/* Pointer Class */
static Window xf_Pointer_get_window(xfContext* xfc)
{
if (!xfc)
{
WLog_WARN(TAG, "xf_Pointer: Invalid context");
return 0;
}
if (xfc->remote_app)
{
if (!xfc->appWindow)
{
WLog_WARN(TAG, "xf_Pointer: Invalid appWindow");
return 0;
}
return xfc->appWindow->handle;
}
else
{
if (!xfc->window)
{
WLog_WARN(TAG, "xf_Pointer: Invalid window");
return 0;
}
return xfc->window->handle;
}
}
2022-07-04 09:52:17 +03:00
BOOL xf_pointer_update_scale(xfContext* xfc)
{
xfPointer* pointer = NULL;
2022-07-04 09:52:17 +03:00
WINPR_ASSERT(xfc);
pointer = xfc->pointer;
if (!pointer)
return TRUE;
return xf_Pointer_Set(&xfc->common.context, &xfc->pointer->pointer);
}
static BOOL xf_Pointer_New(rdpContext* context, rdpPointer* pointer)
2011-10-21 02:18:45 +04:00
{
2022-07-04 13:13:20 +03:00
BOOL rc = FALSE;
2016-09-09 09:58:26 +03:00
#ifdef WITH_XCURSOR
UINT32 CursorFormat = 0;
size_t size = 0;
2019-11-06 17:24:51 +03:00
xfContext* xfc = (xfContext*)context;
2016-09-09 09:58:26 +03:00
xfPointer* xpointer = (xfPointer*)pointer;
2016-08-03 15:16:20 +03:00
if (!context || !pointer || !context->gdi)
2022-07-04 13:13:20 +03:00
goto fail;
2016-08-03 15:16:20 +03:00
2016-10-10 10:19:43 +03:00
if (!xfc->invert)
Fix colors on big endian (#4135) * client/x11: Fix colors on big endian The bitmaps are recieved in little endian byte order (LSBFirst in terms of X11). This is a problem on systems, where bitmaps are expected in big endian byte order (MSBFirst). X11 client tries to handle this situation by different color formats (e.g. RGBX vs. BGRX), but this doesn't work. BGRX is not MSBFirst variant of RGBX, it should be XRGB. But this would work only for 32/24 depths, where color channels matches bytes. Let's say to the XServer that all the bitmaps are in LSBFirst encoding instead of changing the color formats on big endian systems. https://github.com/FreeRDP/FreeRDP/issues/2520 * client/x11: Fix cursor color on big endian The cursor color is wrong on big endian systems. It is not probably possible to force bitmap_order for XcursorImage as it is possible for XImage. Fortunately, cursors are always 32 bit so we can use ABGR instead of BGRA to deal with. https://github.com/FreeRDP/FreeRDP/issues/2520 * client/x11: Fix comment indentation The comment has wrong indentation for some reason, let's fix it. * client/x11: Fix BGR vs. RGB detection The BGR vs. RGB detection code is leftover from history and I am conviced that it is wrong with the current color handling, where invert flag is TRUE by default. However, I suppose that the detection still makes sense and XServer may use the inverted formats in some cases. Maybe we can force XServer to use our masks somehow, but let's just fix the value to FALSE now. * client/x11: Remove unused color shifts The color shifts are lefover from history and are not used in current code. Let's remove them.
2017-09-18 11:47:56 +03:00
CursorFormat = (!xfc->big_endian) ? PIXEL_FORMAT_RGBA32 : PIXEL_FORMAT_ABGR32;
2016-10-10 10:19:43 +03:00
else
Fix colors on big endian (#4135) * client/x11: Fix colors on big endian The bitmaps are recieved in little endian byte order (LSBFirst in terms of X11). This is a problem on systems, where bitmaps are expected in big endian byte order (MSBFirst). X11 client tries to handle this situation by different color formats (e.g. RGBX vs. BGRX), but this doesn't work. BGRX is not MSBFirst variant of RGBX, it should be XRGB. But this would work only for 32/24 depths, where color channels matches bytes. Let's say to the XServer that all the bitmaps are in LSBFirst encoding instead of changing the color formats on big endian systems. https://github.com/FreeRDP/FreeRDP/issues/2520 * client/x11: Fix cursor color on big endian The cursor color is wrong on big endian systems. It is not probably possible to force bitmap_order for XcursorImage as it is possible for XImage. Fortunately, cursors are always 32 bit so we can use ABGR instead of BGRA to deal with. https://github.com/FreeRDP/FreeRDP/issues/2520 * client/x11: Fix comment indentation The comment has wrong indentation for some reason, let's fix it. * client/x11: Fix BGR vs. RGB detection The BGR vs. RGB detection code is leftover from history and I am conviced that it is wrong with the current color handling, where invert flag is TRUE by default. However, I suppose that the detection still makes sense and XServer may use the inverted formats in some cases. Maybe we can force XServer to use our masks somehow, but let's just fix the value to FALSE now. * client/x11: Remove unused color shifts The color shifts are lefover from history and are not used in current code. Let's remove them.
2017-09-18 11:47:56 +03:00
CursorFormat = (!xfc->big_endian) ? PIXEL_FORMAT_BGRA32 : PIXEL_FORMAT_ARGB32;
2016-10-10 10:19:43 +03:00
xpointer->nCursors = 0;
xpointer->mCursors = 0;
size = 1ull * pointer->height * pointer->width * FreeRDPGetBytesPerPixel(CursorFormat);
if (!(xpointer->cursorPixels = (XcursorPixel*)winpr_aligned_malloc(size, 16)))
2022-07-04 13:13:20 +03:00
goto fail;
2011-10-21 02:18:45 +04:00
2016-10-04 15:14:39 +03:00
if (!freerdp_image_copy_from_pointer_data(
(BYTE*)xpointer->cursorPixels, CursorFormat, 0, 0, 0, pointer->width, pointer->height,
2019-11-06 17:24:51 +03:00
pointer->xorMaskData, pointer->lengthXorMask, pointer->andMaskData,
pointer->lengthAndMask, pointer->xorBpp, &context->gdi->palette))
2015-08-05 18:32:46 +03:00
{
winpr_aligned_free(xpointer->cursorPixels);
2022-07-04 13:13:20 +03:00
goto fail;
2011-10-21 02:18:45 +04:00
}
#endif
2022-07-04 13:13:20 +03:00
rc = TRUE;
2022-07-04 13:13:20 +03:00
fail:
WLog_DBG(TAG, "%p", rc ? pointer : NULL);
2022-07-04 13:13:20 +03:00
return rc;
2011-10-21 02:18:45 +04:00
}
static void xf_Pointer_Free(rdpContext* context, rdpPointer* pointer)
2011-10-21 02:18:45 +04:00
{
WLog_DBG(TAG, "%p", pointer);
2022-07-04 13:13:20 +03:00
#ifdef WITH_XCURSOR
2019-11-06 17:24:51 +03:00
xfContext* xfc = (xfContext*)context;
xfPointer* xpointer = (xfPointer*)pointer;
xf_lock_x11(xfc);
winpr_aligned_free(xpointer->cursorPixels);
free(xpointer->cursorWidths);
free(xpointer->cursorHeights);
for (UINT32 i = 0; i < xpointer->nCursors; i++)
{
XFreeCursor(xfc->display, xpointer->cursors[i]);
}
free(xpointer->cursors);
xpointer->nCursors = 0;
xpointer->mCursors = 0;
xf_unlock_x11(xfc);
#endif
2011-10-21 02:18:45 +04:00
}
static BOOL xf_Pointer_Set(rdpContext* context, rdpPointer* pointer)
2011-10-21 02:18:45 +04:00
{
WLog_DBG(TAG, "%p", pointer);
#ifdef WITH_XCURSOR
2019-11-06 17:24:51 +03:00
xfContext* xfc = (xfContext*)context;
Window handle = xf_Pointer_get_window(xfc);
2022-04-27 22:02:18 +03:00
2022-07-04 09:52:17 +03:00
WINPR_ASSERT(xfc);
WINPR_ASSERT(pointer);
2022-04-29 15:21:31 +03:00
xfc->pointer = (xfPointer*)pointer;
2011-11-24 22:01:34 +04:00
/* in RemoteApp mode, window can be null if none has had focus */
if (handle)
{
2022-07-04 09:52:17 +03:00
if (!xf_Pointer_GetCursorForCurrentScale(context, pointer, &(xfc->pointer->cursor)))
return FALSE;
xf_lock_x11(xfc);
XDefineCursor(xfc->display, handle, xfc->pointer->cursor);
xf_unlock_x11(xfc);
}
2022-07-04 13:13:20 +03:00
else
{
WLog_WARN(TAG, "handle=%ld", handle);
2022-07-04 13:13:20 +03:00
}
#endif
return TRUE;
2011-10-21 02:18:45 +04:00
}
static BOOL xf_Pointer_SetNull(rdpContext* context)
{
WLog_DBG(TAG, "called");
#ifdef WITH_XCURSOR
2019-11-06 17:24:51 +03:00
xfContext* xfc = (xfContext*)context;
static Cursor nullcursor = None;
Window handle = xf_Pointer_get_window(xfc);
xf_lock_x11(xfc);
if (nullcursor == None)
{
XcursorImage ci = { 0 };
XcursorPixel xp = 0;
ci.version = XCURSOR_IMAGE_VERSION;
ci.size = sizeof(ci);
ci.width = ci.height = 1;
ci.xhot = ci.yhot = 0;
ci.pixels = &xp;
nullcursor = XcursorImageLoadCursor(xfc->display, &ci);
}
xfc->pointer = NULL;
if ((handle) && (nullcursor != None))
XDefineCursor(xfc->display, handle, nullcursor);
xf_unlock_x11(xfc);
#endif
return TRUE;
}
static BOOL xf_Pointer_SetDefault(rdpContext* context)
{
WLog_DBG(TAG, "called");
#ifdef WITH_XCURSOR
2019-11-06 17:24:51 +03:00
xfContext* xfc = (xfContext*)context;
Window handle = xf_Pointer_get_window(xfc);
xf_lock_x11(xfc);
xfc->pointer = NULL;
if (handle)
XUndefineCursor(xfc->display, handle);
xf_unlock_x11(xfc);
#endif
return TRUE;
}
static BOOL xf_Pointer_SetPosition(rdpContext* context, UINT32 x, UINT32 y)
2015-02-02 17:32:49 +03:00
{
2019-11-06 17:24:51 +03:00
xfContext* xfc = (xfContext*)context;
XWindowAttributes current = { 0 };
XSetWindowAttributes tmp = { 0 };
BOOL ret = FALSE;
Status rc = 0;
Window handle = xf_Pointer_get_window(xfc);
2015-02-02 17:32:49 +03:00
if (!handle)
{
WLog_WARN(TAG, "focus %d, handle%lu", xfc->focused, handle);
return TRUE;
}
WLog_DBG(TAG, "%" PRIu32 "x%" PRIu32, x, y);
if (!xfc->focused)
return TRUE;
2015-02-02 17:32:49 +03:00
xf_adjust_coordinates_to_screen(xfc, &x, &y);
xf_lock_x11(xfc);
2015-02-02 17:32:49 +03:00
rc = XGetWindowAttributes(xfc->display, handle, &current);
if (rc == 0)
{
WLog_WARN(TAG, "XGetWindowAttributes==%d", rc);
goto out;
}
tmp.event_mask = (current.your_event_mask & ~(PointerMotionMask));
2016-07-14 17:08:06 +03:00
rc = XChangeWindowAttributes(xfc->display, handle, CWEventMask, &tmp);
if (rc == 0)
{
WLog_WARN(TAG, "XChangeWindowAttributes==%d", rc);
goto out;
}
rc = XWarpPointer(xfc->display, handle, handle, 0, 0, 0, 0, x, y);
if (rc == 0)
WLog_WARN(TAG, "XWarpPointer==%d", rc);
tmp.event_mask = current.your_event_mask;
rc = XChangeWindowAttributes(xfc->display, handle, CWEventMask, &tmp);
if (rc == 0)
WLog_WARN(TAG, "2.try XChangeWindowAttributes==%d", rc);
ret = TRUE;
out:
xf_unlock_x11(xfc);
return ret;
2015-02-02 17:32:49 +03:00
}
2011-10-21 02:18:45 +04:00
/* Graphics Module */
2016-07-18 15:16:13 +03:00
BOOL xf_register_pointer(rdpGraphics* graphics)
{
2023-06-26 16:39:27 +03:00
rdpPointer pointer = { 0 };
pointer.size = sizeof(xfPointer);
pointer.New = xf_Pointer_New;
pointer.Free = xf_Pointer_Free;
pointer.Set = xf_Pointer_Set;
pointer.SetNull = xf_Pointer_SetNull;
pointer.SetDefault = xf_Pointer_SetDefault;
pointer.SetPosition = xf_Pointer_SetPosition;
graphics_register_pointer(graphics, &pointer);
2016-07-18 15:16:13 +03:00
return TRUE;
}
2011-10-21 02:18:45 +04:00
2016-08-03 15:16:20 +03:00
UINT32 xf_get_local_color_format(xfContext* xfc, BOOL aligned)
{
UINT32 DstFormat = 0;
make cppcheck even more happier: [channels/tsmf/client/gstreamer/tsmf_X11.c:317] -> [channels/tsmf/client/gstreamer/tsmf_X11.c:322]: (warning) Either the condition '!decoder' is redundant or there is possible null pointer dereference: decoder. [channels/tsmf/client/gstreamer/tsmf_X11.c:470] -> [channels/tsmf/client/gstreamer/tsmf_X11.c:475]: (warning) Either the condition '!decoder' is redundant or there is possible null pointer dereference: decoder. [channels/tsmf/client/gstreamer/tsmf_X11.c:472] -> [channels/tsmf/client/gstreamer/tsmf_X11.c:475]: (warning) Either the condition '!decoder' is redundant or there is possible null pointer dereference: decoder. [channels/tsmf/client/tsmf_media.c:179] -> [channels/tsmf/client/tsmf_media.c:181]: (warning) Either the condition '!stream' is redundant or there is possible null pointer dereference: stream. [client/Windows/wf_cliprdr.c:2219] -> [client/Windows/wf_cliprdr.c:2222]: (warning) Either the condition '!formatDataResponse' is redundant or there is possible null pointer dereference: formatDataResponse [client/Windows/wf_cliprdr.c:2445] -> [client/Windows/wf_cliprdr.c:2448]: (warning) Either the condition '!fileContentsResponse' is redundant or there is possible null pointer dereference: fileContentsResponse. [client/X11/xf_cliprdr.c:911] -> [client/X11/xf_cliprdr.c:913]: (warning) Either the condition '!clipboard' is redundant or there is possible null pointer dereference: clipboard. [client/X11/xf_graphics.c:504] -> [client/X11/xf_graphics.c:506]: (warning) Either the condition '!xfc' is redundant or there is possible null pointer dereference: xfc. [libfreerdp/core/transport.c:861] -> [libfreerdp/core/transport.c:863]: (warning) Either the condition '!transport' is redundant or there is possible null pointer dereference: transport. [server/shadow/shadow_server.c:777] -> [server/shadow/shadow_server.c:791]: (warning) Either the condition '!server' is redundant or there is possible null pointer dereference: server. [server/shadow/shadow_server.c:778] -> [server/shadow/shadow_server.c:791]: (warning) Either the condition '!server' is redundant or there is possible null pointer dereference: server. [server/shadow/shadow_server.c:779] -> [server/shadow/shadow_server.c:791]: (warning) Either the condition '!server' is redundant or there is possible null pointer dereference: server. [server/shadow/shadow_server.c:781] -> [server/shadow/shadow_server.c:791]: (warning) Either the condition '!server' is redundant or there is possible null pointer dereference: server. [server/shadow/shadow_server.c:782] -> [server/shadow/shadow_server.c:791]: (warning) Either the condition '!server' is redundant or there is possible null pointer dereference: server. [server/shadow/shadow_server.c:783] -> [server/shadow/shadow_server.c:791]: (warning) Either the condition '!server' is redundant or there is possible null pointer dereference: server. [server/shadow/shadow_server.c:784] -> [server/shadow/shadow_server.c:791]: (warning) Either the condition '!server' is redundant or there is possible null pointer dereference: server. [server/shadow/shadow_server.c:785] -> [server/shadow/shadow_server.c:791]: (warning) Either the condition '!server' is redundant or there is possible null pointer dereference: server. [server/shadow/shadow_server.c:787] -> [server/shadow/shadow_server.c:791]: (warning) Either the condition '!server' is redundant or there is possible null pointer dereference: server. [server/shadow/shadow_server.c:789] -> [server/shadow/shadow_server.c:791]: (warning) Either the condition '!server' is redundant or there is possible null pointer dereference: server.
2017-01-26 12:44:19 +03:00
BOOL invert = FALSE;
2016-08-03 15:16:20 +03:00
if (!xfc)
return 0;
make cppcheck even more happier: [channels/tsmf/client/gstreamer/tsmf_X11.c:317] -> [channels/tsmf/client/gstreamer/tsmf_X11.c:322]: (warning) Either the condition '!decoder' is redundant or there is possible null pointer dereference: decoder. [channels/tsmf/client/gstreamer/tsmf_X11.c:470] -> [channels/tsmf/client/gstreamer/tsmf_X11.c:475]: (warning) Either the condition '!decoder' is redundant or there is possible null pointer dereference: decoder. [channels/tsmf/client/gstreamer/tsmf_X11.c:472] -> [channels/tsmf/client/gstreamer/tsmf_X11.c:475]: (warning) Either the condition '!decoder' is redundant or there is possible null pointer dereference: decoder. [channels/tsmf/client/tsmf_media.c:179] -> [channels/tsmf/client/tsmf_media.c:181]: (warning) Either the condition '!stream' is redundant or there is possible null pointer dereference: stream. [client/Windows/wf_cliprdr.c:2219] -> [client/Windows/wf_cliprdr.c:2222]: (warning) Either the condition '!formatDataResponse' is redundant or there is possible null pointer dereference: formatDataResponse [client/Windows/wf_cliprdr.c:2445] -> [client/Windows/wf_cliprdr.c:2448]: (warning) Either the condition '!fileContentsResponse' is redundant or there is possible null pointer dereference: fileContentsResponse. [client/X11/xf_cliprdr.c:911] -> [client/X11/xf_cliprdr.c:913]: (warning) Either the condition '!clipboard' is redundant or there is possible null pointer dereference: clipboard. [client/X11/xf_graphics.c:504] -> [client/X11/xf_graphics.c:506]: (warning) Either the condition '!xfc' is redundant or there is possible null pointer dereference: xfc. [libfreerdp/core/transport.c:861] -> [libfreerdp/core/transport.c:863]: (warning) Either the condition '!transport' is redundant or there is possible null pointer dereference: transport. [server/shadow/shadow_server.c:777] -> [server/shadow/shadow_server.c:791]: (warning) Either the condition '!server' is redundant or there is possible null pointer dereference: server. [server/shadow/shadow_server.c:778] -> [server/shadow/shadow_server.c:791]: (warning) Either the condition '!server' is redundant or there is possible null pointer dereference: server. [server/shadow/shadow_server.c:779] -> [server/shadow/shadow_server.c:791]: (warning) Either the condition '!server' is redundant or there is possible null pointer dereference: server. [server/shadow/shadow_server.c:781] -> [server/shadow/shadow_server.c:791]: (warning) Either the condition '!server' is redundant or there is possible null pointer dereference: server. [server/shadow/shadow_server.c:782] -> [server/shadow/shadow_server.c:791]: (warning) Either the condition '!server' is redundant or there is possible null pointer dereference: server. [server/shadow/shadow_server.c:783] -> [server/shadow/shadow_server.c:791]: (warning) Either the condition '!server' is redundant or there is possible null pointer dereference: server. [server/shadow/shadow_server.c:784] -> [server/shadow/shadow_server.c:791]: (warning) Either the condition '!server' is redundant or there is possible null pointer dereference: server. [server/shadow/shadow_server.c:785] -> [server/shadow/shadow_server.c:791]: (warning) Either the condition '!server' is redundant or there is possible null pointer dereference: server. [server/shadow/shadow_server.c:787] -> [server/shadow/shadow_server.c:791]: (warning) Either the condition '!server' is redundant or there is possible null pointer dereference: server. [server/shadow/shadow_server.c:789] -> [server/shadow/shadow_server.c:791]: (warning) Either the condition '!server' is redundant or there is possible null pointer dereference: server.
2017-01-26 12:44:19 +03:00
invert = xfc->invert;
WINPR_ASSERT(xfc->depth != 0);
2016-08-03 15:16:20 +03:00
if (xfc->depth == 32)
2016-08-03 22:22:06 +03:00
DstFormat = (!invert) ? PIXEL_FORMAT_RGBA32 : PIXEL_FORMAT_BGRA32;
2022-03-19 15:19:41 +03:00
else if (xfc->depth == 30)
DstFormat = (!invert) ? PIXEL_FORMAT_RGBX32_DEPTH30 : PIXEL_FORMAT_BGRX32_DEPTH30;
2016-08-03 15:16:20 +03:00
else if (xfc->depth == 24)
{
if (aligned)
2016-08-03 22:22:06 +03:00
DstFormat = (!invert) ? PIXEL_FORMAT_RGBX32 : PIXEL_FORMAT_BGRX32;
2016-08-03 15:16:20 +03:00
else
2016-08-03 22:22:06 +03:00
DstFormat = (!invert) ? PIXEL_FORMAT_RGB24 : PIXEL_FORMAT_BGR24;
2016-08-03 15:16:20 +03:00
}
else if (xfc->depth == 16)
2017-01-19 19:14:16 +03:00
DstFormat = PIXEL_FORMAT_RGB16;
2016-08-03 15:16:20 +03:00
else if (xfc->depth == 15)
2017-01-19 19:14:16 +03:00
DstFormat = PIXEL_FORMAT_RGB15;
2016-08-03 15:16:20 +03:00
else
2016-08-03 22:22:06 +03:00
DstFormat = (!invert) ? PIXEL_FORMAT_RGBX32 : PIXEL_FORMAT_BGRX32;
2016-08-03 15:16:20 +03:00
return DstFormat;
}