2011-09-20 12:27:59 +04:00
|
|
|
/**
|
2012-10-09 07:02:04 +04:00
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
2011-09-20 12:27:59 +04:00
|
|
|
* X11 Video Redirection
|
|
|
|
*
|
|
|
|
* Copyright 2010-2011 Vic Lee
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2012-08-15 01:20:53 +04:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2011-09-20 12:27:59 +04:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2012-08-15 01:20:53 +04:00
|
|
|
|
2011-09-20 12:27:59 +04:00
|
|
|
#include <sys/ipc.h>
|
|
|
|
#include <sys/shm.h>
|
2012-08-15 01:20:53 +04:00
|
|
|
|
2011-09-20 12:27:59 +04:00
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <X11/Xutil.h>
|
|
|
|
#include <X11/Xatom.h>
|
|
|
|
#include <X11/extensions/XShm.h>
|
2012-08-15 01:20:53 +04:00
|
|
|
|
2012-11-20 08:49:08 +04:00
|
|
|
#include <winpr/crt.h>
|
|
|
|
|
2011-09-20 12:27:59 +04:00
|
|
|
#include <freerdp/utils/event.h>
|
2012-10-09 04:33:58 +04:00
|
|
|
#include <freerdp/client/tsmf.h>
|
2011-09-20 12:27:59 +04:00
|
|
|
|
|
|
|
#include "xf_tsmf.h"
|
|
|
|
|
|
|
|
#ifdef WITH_XV
|
|
|
|
|
|
|
|
#include <X11/extensions/Xv.h>
|
|
|
|
#include <X11/extensions/Xvlib.h>
|
|
|
|
|
|
|
|
typedef struct xf_xv_context xfXvContext;
|
|
|
|
|
|
|
|
struct xf_xv_context
|
|
|
|
{
|
|
|
|
long xv_port;
|
|
|
|
Atom xv_colorkey_atom;
|
|
|
|
int xv_image_size;
|
|
|
|
int xv_shmid;
|
|
|
|
char* xv_shmaddr;
|
2012-10-09 11:26:39 +04:00
|
|
|
UINT32* xv_pixfmts;
|
2011-09-20 12:27:59 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#ifdef WITH_DEBUG_XV
|
|
|
|
#define DEBUG_XV(fmt, ...) DEBUG_CLASS(XV, fmt, ## __VA_ARGS__)
|
|
|
|
#else
|
|
|
|
#define DEBUG_XV(fmt, ...) DEBUG_NULL(fmt, ## __VA_ARGS__)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void xf_tsmf_init(xfInfo* xfi, long xv_port)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
unsigned int i;
|
|
|
|
unsigned int version;
|
|
|
|
unsigned int release;
|
|
|
|
unsigned int event_base;
|
|
|
|
unsigned int error_base;
|
|
|
|
unsigned int request_base;
|
|
|
|
unsigned int num_adaptors;
|
|
|
|
xfXvContext* xv;
|
|
|
|
XvAdaptorInfo* ai;
|
|
|
|
XvAttribute* attr;
|
|
|
|
XvImageFormatValues* fo;
|
|
|
|
|
2012-11-20 08:49:08 +04:00
|
|
|
xv = (xfXvContext*) malloc(sizeof(xfXvContext));
|
|
|
|
ZeroMemory(xv, sizeof(xfXvContext));
|
|
|
|
|
2011-09-20 12:27:59 +04:00
|
|
|
xfi->xv_context = xv;
|
|
|
|
|
|
|
|
xv->xv_colorkey_atom = None;
|
|
|
|
xv->xv_image_size = 0;
|
|
|
|
xv->xv_port = xv_port;
|
|
|
|
|
|
|
|
if (!XShmQueryExtension(xfi->display))
|
|
|
|
{
|
|
|
|
DEBUG_XV("no shmem available.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = XvQueryExtension(xfi->display, &version, &release, &request_base, &event_base, &error_base);
|
|
|
|
if (ret != Success)
|
|
|
|
{
|
|
|
|
DEBUG_XV("XvQueryExtension failed %d.", ret);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
DEBUG_XV("version %u release %u", version, release);
|
|
|
|
|
|
|
|
ret = XvQueryAdaptors(xfi->display, DefaultRootWindow(xfi->display),
|
|
|
|
&num_adaptors, &ai);
|
|
|
|
if (ret != Success)
|
|
|
|
{
|
|
|
|
DEBUG_XV("XvQueryAdaptors failed %d.", ret);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < num_adaptors; i++)
|
|
|
|
{
|
|
|
|
DEBUG_XV("adapter port %ld-%ld (%s)", ai[i].base_id,
|
|
|
|
ai[i].base_id + ai[i].num_ports - 1, ai[i].name);
|
|
|
|
if (xv->xv_port == 0 && i == num_adaptors - 1)
|
|
|
|
xv->xv_port = ai[i].base_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (num_adaptors > 0)
|
|
|
|
XvFreeAdaptorInfo(ai);
|
|
|
|
|
|
|
|
if (xv->xv_port == 0)
|
|
|
|
{
|
|
|
|
DEBUG_XV("no adapter selected, video frames will not be processed.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
DEBUG_XV("selected %ld", xv->xv_port);
|
|
|
|
|
|
|
|
attr = XvQueryPortAttributes(xfi->display, xv->xv_port, &ret);
|
|
|
|
for (i = 0; i < (unsigned int)ret; i++)
|
|
|
|
{
|
|
|
|
if (strcmp(attr[i].name, "XV_COLORKEY") == 0)
|
|
|
|
{
|
2012-10-09 10:31:28 +04:00
|
|
|
xv->xv_colorkey_atom = XInternAtom(xfi->display, "XV_COLORKEY", FALSE);
|
2011-09-20 12:27:59 +04:00
|
|
|
XvSetPortAttribute(xfi->display, xv->xv_port, xv->xv_colorkey_atom, attr[i].min_value + 1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
XFree(attr);
|
|
|
|
|
|
|
|
#ifdef WITH_DEBUG_XV
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "xf_tsmf_init: pixel format ");
|
2011-09-20 12:27:59 +04:00
|
|
|
#endif
|
|
|
|
fo = XvListImageFormats(xfi->display, xv->xv_port, &ret);
|
|
|
|
if (ret > 0)
|
|
|
|
{
|
2012-11-20 08:49:08 +04:00
|
|
|
xv->xv_pixfmts = (UINT32*) malloc((ret + 1) * sizeof(UINT32));
|
|
|
|
ZeroMemory(xv->xv_pixfmts, (ret + 1) * sizeof(UINT32));
|
|
|
|
|
2011-09-20 12:27:59 +04:00
|
|
|
for (i = 0; i < ret; i++)
|
|
|
|
{
|
|
|
|
xv->xv_pixfmts[i] = fo[i].id;
|
|
|
|
#ifdef WITH_DEBUG_XV
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "%c%c%c%c ", ((char*)(xv->xv_pixfmts + i))[0], ((char*)(xv->xv_pixfmts + i))[1],
|
2011-09-20 12:27:59 +04:00
|
|
|
((char*)(xv->xv_pixfmts + i))[2], ((char*)(xv->xv_pixfmts + i))[3]);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
xv->xv_pixfmts[i] = 0;
|
|
|
|
}
|
|
|
|
XFree(fo);
|
|
|
|
#ifdef WITH_DEBUG_XV
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "\n");
|
2011-09-20 12:27:59 +04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void xf_tsmf_uninit(xfInfo* xfi)
|
|
|
|
{
|
|
|
|
xfXvContext* xv = (xfXvContext*) xfi->xv_context;
|
|
|
|
|
|
|
|
if (xv)
|
|
|
|
{
|
|
|
|
if (xv->xv_image_size > 0)
|
|
|
|
{
|
|
|
|
shmdt(xv->xv_shmaddr);
|
|
|
|
shmctl(xv->xv_shmid, IPC_RMID, NULL);
|
|
|
|
}
|
|
|
|
if (xv->xv_pixfmts)
|
|
|
|
{
|
2012-10-09 07:21:26 +04:00
|
|
|
free(xv->xv_pixfmts);
|
2011-09-20 12:27:59 +04:00
|
|
|
xv->xv_pixfmts = NULL;
|
|
|
|
}
|
2012-10-09 07:21:26 +04:00
|
|
|
free(xv);
|
2011-09-20 12:27:59 +04:00
|
|
|
xfi->xv_context = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-09 10:38:39 +04:00
|
|
|
static BOOL
|
2012-10-09 11:26:39 +04:00
|
|
|
xf_tsmf_is_format_supported(xfXvContext* xv, UINT32 pixfmt)
|
2011-09-20 12:27:59 +04:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (!xv->xv_pixfmts)
|
2012-10-09 10:31:28 +04:00
|
|
|
return FALSE;
|
2011-09-20 12:27:59 +04:00
|
|
|
|
|
|
|
for (i = 0; xv->xv_pixfmts[i]; i++)
|
|
|
|
{
|
|
|
|
if (xv->xv_pixfmts[i] == pixfmt)
|
2012-10-09 10:31:28 +04:00
|
|
|
return TRUE;
|
2011-09-20 12:27:59 +04:00
|
|
|
}
|
|
|
|
|
2012-10-09 10:31:28 +04:00
|
|
|
return FALSE;
|
2011-09-20 12:27:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void xf_process_tsmf_video_frame_event(xfInfo* xfi, RDP_VIDEO_FRAME_EVENT* vevent)
|
|
|
|
{
|
|
|
|
int i;
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE* data1;
|
|
|
|
BYTE* data2;
|
2012-10-09 11:26:39 +04:00
|
|
|
UINT32 pixfmt;
|
|
|
|
UINT32 xvpixfmt;
|
2012-10-09 10:38:39 +04:00
|
|
|
BOOL converti420yv12 = FALSE;
|
2011-09-20 12:27:59 +04:00
|
|
|
XvImage * image;
|
|
|
|
int colorkey = 0;
|
|
|
|
XShmSegmentInfo shminfo;
|
|
|
|
xfXvContext* xv = (xfXvContext*) xfi->xv_context;
|
|
|
|
|
|
|
|
if (xv->xv_port == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* In case the player is minimized */
|
|
|
|
if (vevent->x < -2048 || vevent->y < -2048 || vevent->num_visible_rects <= 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (xv->xv_colorkey_atom != None)
|
|
|
|
{
|
|
|
|
XvGetPortAttribute(xfi->display, xv->xv_port, xv->xv_colorkey_atom, &colorkey);
|
|
|
|
XSetFunction(xfi->display, xfi->gc, GXcopy);
|
|
|
|
XSetFillStyle(xfi->display, xfi->gc, FillSolid);
|
|
|
|
XSetForeground(xfi->display, xfi->gc, colorkey);
|
|
|
|
for (i = 0; i < vevent->num_visible_rects; i++)
|
|
|
|
{
|
|
|
|
XFillRectangle(xfi->display, xfi->window->handle, xfi->gc,
|
|
|
|
vevent->x + vevent->visible_rects[i].x,
|
|
|
|
vevent->y + vevent->visible_rects[i].y,
|
|
|
|
vevent->visible_rects[i].width,
|
|
|
|
vevent->visible_rects[i].height);
|
|
|
|
}
|
|
|
|
}
|
2012-03-13 11:34:45 +04:00
|
|
|
else
|
|
|
|
{
|
|
|
|
XSetClipRectangles(xfi->display, xfi->gc, vevent->x, vevent->y,
|
|
|
|
(XRectangle*) vevent->visible_rects, vevent->num_visible_rects, YXBanded);
|
|
|
|
}
|
2011-09-20 12:27:59 +04:00
|
|
|
|
|
|
|
pixfmt = vevent->frame_pixfmt;
|
2012-03-13 20:32:59 +04:00
|
|
|
|
|
|
|
if (xf_tsmf_is_format_supported(xv, pixfmt))
|
|
|
|
{
|
|
|
|
xvpixfmt = pixfmt;
|
|
|
|
}
|
|
|
|
else if (pixfmt == RDP_PIXFMT_I420 && xf_tsmf_is_format_supported(xv, RDP_PIXFMT_YV12))
|
|
|
|
{
|
|
|
|
xvpixfmt = RDP_PIXFMT_YV12;
|
2012-10-09 10:31:28 +04:00
|
|
|
converti420yv12 = TRUE;
|
2012-03-13 20:32:59 +04:00
|
|
|
}
|
|
|
|
else if (pixfmt == RDP_PIXFMT_YV12 && xf_tsmf_is_format_supported(xv, RDP_PIXFMT_I420))
|
|
|
|
{
|
|
|
|
xvpixfmt = RDP_PIXFMT_I420;
|
2012-10-09 10:31:28 +04:00
|
|
|
converti420yv12 = TRUE;
|
2012-03-13 20:32:59 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
DEBUG_XV("pixel format 0x%X not supported by hardware.", pixfmt);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-09-20 12:27:59 +04:00
|
|
|
image = XvShmCreateImage(xfi->display, xv->xv_port,
|
2012-03-13 20:32:59 +04:00
|
|
|
xvpixfmt, 0, vevent->frame_width, vevent->frame_height, &shminfo);
|
|
|
|
|
2011-09-20 12:27:59 +04:00
|
|
|
if (xv->xv_image_size != image->data_size)
|
|
|
|
{
|
|
|
|
if (xv->xv_image_size > 0)
|
|
|
|
{
|
|
|
|
shmdt(xv->xv_shmaddr);
|
|
|
|
shmctl(xv->xv_shmid, IPC_RMID, NULL);
|
|
|
|
}
|
|
|
|
xv->xv_image_size = image->data_size;
|
|
|
|
xv->xv_shmid = shmget(IPC_PRIVATE, image->data_size, IPC_CREAT | 0777);
|
|
|
|
xv->xv_shmaddr = shmat(xv->xv_shmid, 0, 0);
|
|
|
|
}
|
|
|
|
shminfo.shmid = xv->xv_shmid;
|
|
|
|
shminfo.shmaddr = image->data = xv->xv_shmaddr;
|
2012-10-09 10:31:28 +04:00
|
|
|
shminfo.readOnly = FALSE;
|
2011-09-20 12:27:59 +04:00
|
|
|
|
|
|
|
if (!XShmAttach(xfi->display, &shminfo))
|
|
|
|
{
|
|
|
|
XFree(image);
|
|
|
|
DEBUG_XV("XShmAttach failed.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* The video driver may align each line to a different size
|
|
|
|
and we need to convert our original image data. */
|
|
|
|
switch (pixfmt)
|
|
|
|
{
|
|
|
|
case RDP_PIXFMT_I420:
|
|
|
|
case RDP_PIXFMT_YV12:
|
|
|
|
/* Y */
|
|
|
|
if (image->pitches[0] == vevent->frame_width)
|
|
|
|
{
|
|
|
|
memcpy(image->data + image->offsets[0],
|
|
|
|
vevent->frame_data,
|
|
|
|
vevent->frame_width * vevent->frame_height);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for (i = 0; i < vevent->frame_height; i++)
|
|
|
|
{
|
|
|
|
memcpy(image->data + image->offsets[0] + i * image->pitches[0],
|
|
|
|
vevent->frame_data + i * vevent->frame_width,
|
|
|
|
vevent->frame_width);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* UV */
|
|
|
|
/* Conversion between I420 and YV12 is to simply swap U and V */
|
2012-10-09 10:31:28 +04:00
|
|
|
if (converti420yv12 == FALSE)
|
2011-09-20 12:27:59 +04:00
|
|
|
{
|
|
|
|
data1 = vevent->frame_data + vevent->frame_width * vevent->frame_height;
|
|
|
|
data2 = vevent->frame_data + vevent->frame_width * vevent->frame_height +
|
|
|
|
vevent->frame_width * vevent->frame_height / 4;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
data2 = vevent->frame_data + vevent->frame_width * vevent->frame_height;
|
|
|
|
data1 = vevent->frame_data + vevent->frame_width * vevent->frame_height +
|
|
|
|
vevent->frame_width * vevent->frame_height / 4;
|
|
|
|
image->id = pixfmt == RDP_PIXFMT_I420 ? RDP_PIXFMT_YV12 : RDP_PIXFMT_I420;
|
|
|
|
}
|
|
|
|
if (image->pitches[1] * 2 == vevent->frame_width)
|
|
|
|
{
|
|
|
|
memcpy(image->data + image->offsets[1],
|
|
|
|
data1,
|
|
|
|
vevent->frame_width * vevent->frame_height / 4);
|
|
|
|
memcpy(image->data + image->offsets[2],
|
|
|
|
data2,
|
|
|
|
vevent->frame_width * vevent->frame_height / 4);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for (i = 0; i < vevent->frame_height / 2; i++)
|
|
|
|
{
|
|
|
|
memcpy(image->data + image->offsets[1] + i * image->pitches[1],
|
|
|
|
data1 + i * vevent->frame_width / 2,
|
|
|
|
vevent->frame_width / 2);
|
|
|
|
memcpy(image->data + image->offsets[2] + i * image->pitches[2],
|
|
|
|
data2 + i * vevent->frame_width / 2,
|
|
|
|
vevent->frame_width / 2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
memcpy(image->data, vevent->frame_data, image->data_size <= vevent->frame_size ?
|
|
|
|
image->data_size : vevent->frame_size);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
XvShmPutImage(xfi->display, xv->xv_port, xfi->window->handle, xfi->gc, image,
|
|
|
|
0, 0, image->width, image->height,
|
2012-10-09 10:31:28 +04:00
|
|
|
vevent->x, vevent->y, vevent->width, vevent->height, FALSE);
|
2012-03-13 11:34:45 +04:00
|
|
|
if (xv->xv_colorkey_atom == None)
|
|
|
|
XSetClipMask(xfi->display, xfi->gc, None);
|
2012-10-09 10:31:28 +04:00
|
|
|
XSync(xfi->display, FALSE);
|
2011-09-20 12:27:59 +04:00
|
|
|
|
|
|
|
XShmDetach(xfi->display, &shminfo);
|
|
|
|
XFree(image);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void xf_process_tsmf_redraw_event(xfInfo* xfi, RDP_REDRAW_EVENT* revent)
|
|
|
|
{
|
|
|
|
XSetFunction(xfi->display, xfi->gc, GXcopy);
|
|
|
|
XSetFillStyle(xfi->display, xfi->gc, FillSolid);
|
|
|
|
XCopyArea(xfi->display, xfi->primary, xfi->window->handle, xfi->gc,
|
|
|
|
revent->x, revent->y, revent->width, revent->height, revent->x, revent->y);
|
|
|
|
}
|
|
|
|
|
2013-03-29 05:13:56 +04:00
|
|
|
void xf_process_tsmf_event(xfInfo* xfi, wMessage* event)
|
2011-09-20 12:27:59 +04:00
|
|
|
{
|
2013-03-29 03:33:31 +04:00
|
|
|
switch (GetMessageType(event->id))
|
2011-09-20 12:27:59 +04:00
|
|
|
{
|
2013-03-29 03:33:31 +04:00
|
|
|
case TsmfChannel_VideoFrame:
|
2011-09-20 12:27:59 +04:00
|
|
|
xf_process_tsmf_video_frame_event(xfi, (RDP_VIDEO_FRAME_EVENT*) event);
|
|
|
|
break;
|
|
|
|
|
2013-03-29 03:33:31 +04:00
|
|
|
case TsmfChannel_Redraw:
|
2011-09-20 12:27:59 +04:00
|
|
|
xf_process_tsmf_redraw_event(xfi, (RDP_REDRAW_EVENT*) event);
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#else /* WITH_XV */
|
|
|
|
|
|
|
|
void xf_tsmf_init(xfInfo* xfi, long xv_port)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void xf_tsmf_uninit(xfInfo* xfi)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-03-29 05:13:56 +04:00
|
|
|
void xf_process_tsmf_event(xfInfo* xfi, wMessage* event)
|
2011-09-20 12:27:59 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* WITH_XV */
|