gstreamer/gst-libs/gst/vaapi/gstvaapiwindow_x11.c

617 lines
18 KiB
C
Raw Normal View History

2010-03-15 15:12:27 +00:00
/*
* gstvaapiwindow_x11.c - VA/X11 window abstraction
*
* gstreamer-vaapi (C) 2010 Splitted-Desktop Systems
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*/
2010-03-19 15:45:21 +00:00
/**
2010-03-24 08:16:32 +00:00
* SECTION:gstvaapiwindow_x11
* @short_description: VA/X11 window abstraction
2010-03-19 15:45:21 +00:00
*/
2010-03-15 15:12:27 +00:00
#include "config.h"
#include <string.h>
#include <X11/Xatom.h>
2010-03-15 15:12:27 +00:00
#include "gstvaapiwindow_x11.h"
#include "gstvaapidisplay_x11.h"
#include "gstvaapiutils_x11.h"
#include "gstvaapiobject_priv.h"
2010-03-15 15:12:27 +00:00
#define DEBUG 1
#include "gstvaapidebug.h"
2010-03-15 15:12:27 +00:00
G_DEFINE_TYPE(GstVaapiWindowX11, gst_vaapi_window_x11, GST_VAAPI_TYPE_WINDOW);
#define GST_VAAPI_WINDOW_X11_GET_PRIVATE(obj) \
(G_TYPE_INSTANCE_GET_PRIVATE((obj), \
GST_VAAPI_TYPE_WINDOW_X11, \
GstVaapiWindowX11Private))
struct _GstVaapiWindowX11Private {
GstVaapiDisplay *display;
Window xid;
Atom atom_NET_WM_STATE;
Atom atom_NET_WM_STATE_FULLSCREEN;
guint create_window : 1;
guint is_mapped : 1;
guint fullscreen_on_map : 1;
2010-03-15 15:12:27 +00:00
};
enum {
PROP_0,
PROP_XID,
};
#define _NET_WM_STATE_REMOVE 0 /* remove/unset property */
#define _NET_WM_STATE_ADD 1 /* add/set property */
#define _NET_WM_STATE_TOGGLE 2 /* toggle property */
static void
send_wmspec_change_state(GstVaapiWindowX11 *window, Atom state, gboolean add)
{
GstVaapiWindowX11Private * const priv = window->priv;
Display * const dpy = GST_VAAPI_DISPLAY_XDISPLAY(priv->display);
XClientMessageEvent xclient;
memset(&xclient, 0, sizeof(xclient));
xclient.type = ClientMessage;
xclient.window = priv->xid;
xclient.message_type = priv->atom_NET_WM_STATE;
xclient.format = 32;
xclient.data.l[0] = add ? _NET_WM_STATE_ADD : _NET_WM_STATE_REMOVE;
xclient.data.l[1] = state;
xclient.data.l[2] = 0;
xclient.data.l[3] = 0;
xclient.data.l[4] = 0;
XSendEvent(
dpy,
DefaultRootWindow(dpy),
False,
SubstructureRedirectMask|SubstructureNotifyMask,
(XEvent *)&xclient
);
}
static void
wait_event(GstVaapiWindow *window, int type)
{
GstVaapiWindowX11Private * const priv = GST_VAAPI_WINDOW_X11(window)->priv;
Display * const dpy = GST_VAAPI_DISPLAY_XDISPLAY(priv->display);
XEvent e;
Bool got_event;
for (;;) {
GST_VAAPI_DISPLAY_LOCK(priv->display);
got_event = XCheckTypedWindowEvent(dpy, priv->xid, type, &e);
GST_VAAPI_DISPLAY_UNLOCK(priv->display);
if (got_event)
break;
g_usleep(10);
}
}
static gboolean
timed_wait_event(GstVaapiWindow *window, int type, guint64 end_time, XEvent *e)
{
GstVaapiWindowX11Private * const priv = GST_VAAPI_WINDOW_X11(window)->priv;
Display * const dpy = GST_VAAPI_DISPLAY_XDISPLAY(priv->display);
XEvent tmp_event;
GTimeVal now;
guint64 now_time;
Bool got_event;
if (!e)
e = &tmp_event;
GST_VAAPI_DISPLAY_LOCK(priv->display);
got_event = XCheckTypedWindowEvent(dpy, priv->xid, type, e);
GST_VAAPI_DISPLAY_UNLOCK(priv->display);
if (got_event)
return TRUE;
do {
g_usleep(10);
GST_VAAPI_DISPLAY_LOCK(priv->display);
got_event = XCheckTypedWindowEvent(dpy, priv->xid, type, e);
GST_VAAPI_DISPLAY_UNLOCK(priv->display);
if (got_event)
return TRUE;
g_get_current_time(&now);
now_time = (guint64)now.tv_sec * 1000000 + now.tv_usec;
} while (now_time < end_time);
return FALSE;
}
2010-03-15 16:57:37 +00:00
static gboolean
gst_vaapi_window_x11_show(GstVaapiWindow *window)
{
GstVaapiWindowX11Private * const priv = GST_VAAPI_WINDOW_X11(window)->priv;
Display * const dpy = GST_VAAPI_DISPLAY_XDISPLAY(priv->display);
XWindowAttributes wattr;
2010-03-17 07:59:31 +00:00
gboolean has_errors;
2010-03-15 16:57:37 +00:00
if (priv->is_mapped)
return TRUE;
2010-03-17 07:59:31 +00:00
GST_VAAPI_DISPLAY_LOCK(priv->display);
2010-03-15 16:57:37 +00:00
x11_trap_errors();
if (!priv->create_window) {
XGetWindowAttributes(dpy, priv->xid, &wattr);
if (!(wattr.your_event_mask & StructureNotifyMask))
XSelectInput(dpy, priv->xid, StructureNotifyMask);
}
2010-03-15 16:57:37 +00:00
XMapWindow(dpy, priv->xid);
2010-03-17 07:59:31 +00:00
has_errors = x11_untrap_errors() != 0;
GST_VAAPI_DISPLAY_UNLOCK(priv->display);
if (!has_errors) {
wait_event(window, MapNotify);
if (!priv->create_window &&
!(wattr.your_event_mask & StructureNotifyMask)) {
GST_VAAPI_DISPLAY_LOCK(priv->display);
x11_trap_errors();
XSelectInput(dpy, priv->xid, wattr.your_event_mask);
has_errors = x11_untrap_errors() != 0;
GST_VAAPI_DISPLAY_UNLOCK(priv->display);
}
priv->is_mapped = TRUE;
if (priv->fullscreen_on_map)
gst_vaapi_window_set_fullscreen(window, TRUE);
}
return !has_errors;
2010-03-15 16:57:37 +00:00
}
static gboolean
gst_vaapi_window_x11_hide(GstVaapiWindow *window)
{
GstVaapiWindowX11Private * const priv = GST_VAAPI_WINDOW_X11(window)->priv;
Display * const dpy = GST_VAAPI_DISPLAY_XDISPLAY(priv->display);
XWindowAttributes wattr;
2010-03-17 07:59:31 +00:00
gboolean has_errors;
2010-03-15 16:57:37 +00:00
if (!priv->is_mapped)
return TRUE;
2010-03-17 07:59:31 +00:00
GST_VAAPI_DISPLAY_LOCK(priv->display);
2010-03-15 16:57:37 +00:00
x11_trap_errors();
if (!priv->create_window) {
XGetWindowAttributes(dpy, priv->xid, &wattr);
if (!(wattr.your_event_mask & StructureNotifyMask))
XSelectInput(dpy, priv->xid, StructureNotifyMask);
}
2010-03-15 16:57:37 +00:00
XUnmapWindow(dpy, priv->xid);
2010-03-17 07:59:31 +00:00
has_errors = x11_untrap_errors() != 0;
GST_VAAPI_DISPLAY_UNLOCK(priv->display);
if (!has_errors) {
wait_event(window, UnmapNotify);
if (!priv->create_window &&
!(wattr.your_event_mask & StructureNotifyMask)) {
GST_VAAPI_DISPLAY_LOCK(priv->display);
x11_trap_errors();
XSelectInput(dpy, priv->xid, wattr.your_event_mask);
has_errors = x11_untrap_errors() != 0;
GST_VAAPI_DISPLAY_UNLOCK(priv->display);
}
priv->is_mapped = FALSE;
}
return !has_errors;
2010-03-15 16:57:37 +00:00
}
2010-03-15 15:12:27 +00:00
static gboolean
gst_vaapi_window_x11_create(GstVaapiWindow *window, guint *width, guint *height)
2010-03-15 15:12:27 +00:00
{
GstVaapiWindowX11Private * const priv = GST_VAAPI_WINDOW_X11(window)->priv;
Display * const dpy = GST_VAAPI_DISPLAY_XDISPLAY(priv->display);
XWindowAttributes wattr;
Atom atoms[2];
gboolean ok;
2010-03-15 15:12:27 +00:00
static const char *atom_names[2] = {
"_NET_WM_STATE",
"_NET_WM_STATE_FULLSCREEN",
};
if (!priv->create_window && priv->xid) {
GST_VAAPI_DISPLAY_LOCK(priv->display);
XGetWindowAttributes(dpy, priv->xid, &wattr);
priv->is_mapped = wattr.map_state == IsViewable;
ok = x11_get_geometry(dpy, priv->xid, NULL, NULL, width, height);
GST_VAAPI_DISPLAY_UNLOCK(priv->display);
return ok;
}
2010-03-15 15:12:27 +00:00
2010-03-17 07:59:31 +00:00
GST_VAAPI_DISPLAY_LOCK(priv->display);
XInternAtoms(dpy, (char **)atom_names, G_N_ELEMENTS(atom_names), False, atoms);
priv->atom_NET_WM_STATE = atoms[0];
priv->atom_NET_WM_STATE_FULLSCREEN = atoms[1];
priv->xid = x11_create_window(dpy, *width, *height);
2010-03-17 07:59:31 +00:00
if (priv->xid)
XRaiseWindow(dpy, priv->xid);
GST_VAAPI_DISPLAY_UNLOCK(priv->display);
return priv->xid != None;
2010-03-15 15:12:27 +00:00
}
static void
gst_vaapi_window_x11_destroy(GstVaapiWindow *window)
{
GstVaapiWindowX11Private * const priv = GST_VAAPI_WINDOW_X11(window)->priv;
Display * const dpy = GST_VAAPI_DISPLAY_XDISPLAY(priv->display);
2010-03-17 06:49:27 +00:00
if (priv->xid) {
2010-03-17 07:59:31 +00:00
if (priv->create_window) {
GST_VAAPI_DISPLAY_LOCK(priv->display);
2010-03-17 06:49:27 +00:00
XDestroyWindow(dpy, priv->xid);
2010-03-17 07:59:31 +00:00
GST_VAAPI_DISPLAY_UNLOCK(priv->display);
}
2010-03-15 15:12:27 +00:00
priv->xid = None;
}
2010-03-17 06:49:27 +00:00
if (priv->display) {
g_object_unref(priv->display);
priv->display = NULL;
}
2010-03-15 15:12:27 +00:00
}
static gboolean
gst_vaapi_window_x11_get_geometry(
GstVaapiWindow *window,
gint *px,
gint *py,
guint *pwidth,
guint *pheight)
{
GstVaapiWindowX11Private * const priv = GST_VAAPI_WINDOW_X11(window)->priv;
Display * const dpy = GST_VAAPI_DISPLAY_XDISPLAY(priv->display);
return x11_get_geometry(dpy, priv->xid, px, py, pwidth, pheight);
}
static gboolean
gst_vaapi_window_x11_set_fullscreen(GstVaapiWindow *window, gboolean fullscreen)
{
GstVaapiWindowX11Private * const priv = GST_VAAPI_WINDOW_X11(window)->priv;
Display * const dpy = GST_VAAPI_DISPLAY_XDISPLAY(priv->display);
XEvent e;
guint width, height;
gboolean has_errors;
GTimeVal now;
guint64 end_time;
GST_VAAPI_DISPLAY_LOCK(priv->display);
x11_trap_errors();
if (fullscreen) {
if (!priv->is_mapped) {
priv->fullscreen_on_map = TRUE;
XChangeProperty(
dpy,
priv->xid,
priv->atom_NET_WM_STATE, XA_ATOM, 32,
PropModeReplace,
(unsigned char *)&priv->atom_NET_WM_STATE_FULLSCREEN, 1
);
}
else {
send_wmspec_change_state(
GST_VAAPI_WINDOW_X11(window),
priv->atom_NET_WM_STATE_FULLSCREEN,
TRUE
);
}
}
else {
if (!priv->is_mapped) {
priv->fullscreen_on_map = FALSE;
XDeleteProperty(
dpy,
priv->xid,
priv->atom_NET_WM_STATE
);
}
else {
send_wmspec_change_state(
GST_VAAPI_WINDOW_X11(window),
priv->atom_NET_WM_STATE_FULLSCREEN,
FALSE
);
}
}
XSync(dpy, False);
has_errors = x11_untrap_errors() != 0;
GST_VAAPI_DISPLAY_UNLOCK(priv->display);
if (has_errors)
return FALSE;
/* Try to wait for the completion of the fullscreen mode switch */
if (priv->create_window && priv->is_mapped) {
const guint DELAY = 100000; /* 100 ms */
g_get_current_time(&now);
end_time = DELAY + ((guint64)now.tv_sec * 1000000 + now.tv_usec);
while (timed_wait_event(window, ConfigureNotify, end_time, &e)) {
if (fullscreen) {
gst_vaapi_display_get_size(priv->display, &width, &height);
if (e.xconfigure.width == width && e.xconfigure.height == height)
return TRUE;
}
else {
gst_vaapi_window_get_size(window, &width, &height);
if (e.xconfigure.width != width || e.xconfigure.height != height)
return TRUE;
}
}
}
return FALSE;
}
2010-03-15 15:12:27 +00:00
static gboolean
gst_vaapi_window_x11_resize(GstVaapiWindow *window, guint width, guint height)
{
GstVaapiWindowX11Private * const priv = GST_VAAPI_WINDOW_X11(window)->priv;
2010-03-17 07:59:31 +00:00
gboolean has_errors;
2010-03-15 15:12:27 +00:00
if (!priv->xid)
return FALSE;
2010-03-17 07:59:31 +00:00
GST_VAAPI_DISPLAY_LOCK(priv->display);
2010-03-15 15:12:27 +00:00
x11_trap_errors();
XResizeWindow(
GST_VAAPI_DISPLAY_XDISPLAY(priv->display),
priv->xid,
width,
height
);
2010-03-17 07:59:31 +00:00
has_errors = x11_untrap_errors() != 0;
GST_VAAPI_DISPLAY_UNLOCK(priv->display);
return !has_errors;
2010-03-15 15:12:27 +00:00
}
static gboolean
gst_vaapi_window_x11_render(
GstVaapiWindow *window,
GstVaapiSurface *surface,
const GstVaapiRectangle *src_rect,
const GstVaapiRectangle *dst_rect,
2010-03-15 15:12:27 +00:00
guint flags
)
{
2010-03-17 07:59:31 +00:00
GstVaapiDisplay *display;
2010-03-15 15:12:27 +00:00
VASurfaceID surface_id;
VAStatus status;
display = GST_VAAPI_OBJECT_GET_DISPLAY(surface);
2010-03-17 07:59:31 +00:00
if (!display)
return FALSE;
surface_id = GST_VAAPI_OBJECT_ID(surface);
2010-03-15 15:12:27 +00:00
if (surface_id == VA_INVALID_ID)
return FALSE;
2010-03-17 07:59:31 +00:00
GST_VAAPI_DISPLAY_LOCK(display);
2010-03-15 15:12:27 +00:00
status = vaPutSurface(
2010-03-17 07:59:31 +00:00
GST_VAAPI_DISPLAY_VADISPLAY(display),
2010-03-15 15:12:27 +00:00
surface_id,
GST_VAAPI_WINDOW_X11(window)->priv->xid,
src_rect->x,
src_rect->y,
src_rect->width,
src_rect->height,
2010-03-15 15:12:27 +00:00
dst_rect->x,
dst_rect->y,
dst_rect->width,
dst_rect->height,
2010-03-15 15:12:27 +00:00
NULL, 0,
get_PutSurface_flags_from_GstVaapiSurfaceRenderFlags(flags)
2010-03-15 15:12:27 +00:00
);
2010-03-17 07:59:31 +00:00
GST_VAAPI_DISPLAY_UNLOCK(display);
2010-03-15 15:12:27 +00:00
if (!vaapi_check_status(status, "vaPutSurface()"))
return FALSE;
return TRUE;
}
static void
gst_vaapi_window_x11_finalize(GObject *object)
{
G_OBJECT_CLASS(gst_vaapi_window_x11_parent_class)->finalize(object);
}
static void
gst_vaapi_window_x11_set_property(
GObject *object,
guint prop_id,
const GValue *value,
GParamSpec *pspec
)
{
GstVaapiWindowX11 * const window = GST_VAAPI_WINDOW_X11(object);
switch (prop_id) {
case PROP_XID:
window->priv->xid = g_value_get_uint(value);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID(object, prop_id, pspec);
break;
}
}
static void
gst_vaapi_window_x11_get_property(
GObject *object,
guint prop_id,
GValue *value,
GParamSpec *pspec
)
{
GstVaapiWindowX11 * const window = GST_VAAPI_WINDOW_X11(object);
switch (prop_id) {
case PROP_XID:
g_value_set_uint(value, gst_vaapi_window_x11_get_xid(window));
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID(object, prop_id, pspec);
break;
}
}
static void
gst_vaapi_window_x11_constructed(GObject *object)
{
GstVaapiWindowX11 * const window = GST_VAAPI_WINDOW_X11(object);
GObjectClass *parent_class;
window->priv->display =
g_object_ref(gst_vaapi_window_get_display(GST_VAAPI_WINDOW(window)));
2010-03-15 15:12:27 +00:00
window->priv->create_window = window->priv->xid == None;
parent_class = G_OBJECT_CLASS(gst_vaapi_window_x11_parent_class);
if (parent_class->constructed)
parent_class->constructed(object);
}
static void
gst_vaapi_window_x11_class_init(GstVaapiWindowX11Class *klass)
{
GObjectClass * const object_class = G_OBJECT_CLASS(klass);
GstVaapiWindowClass * const window_class = GST_VAAPI_WINDOW_CLASS(klass);
g_type_class_add_private(klass, sizeof(GstVaapiWindowX11Private));
object_class->finalize = gst_vaapi_window_x11_finalize;
object_class->set_property = gst_vaapi_window_x11_set_property;
object_class->get_property = gst_vaapi_window_x11_get_property;
object_class->constructed = gst_vaapi_window_x11_constructed;
2010-03-15 15:12:27 +00:00
window_class->create = gst_vaapi_window_x11_create;
window_class->destroy = gst_vaapi_window_x11_destroy;
window_class->show = gst_vaapi_window_x11_show;
window_class->hide = gst_vaapi_window_x11_hide;
window_class->get_geometry = gst_vaapi_window_x11_get_geometry;
window_class->set_fullscreen = gst_vaapi_window_x11_set_fullscreen;
window_class->resize = gst_vaapi_window_x11_resize;
window_class->render = gst_vaapi_window_x11_render;
2010-03-15 15:12:27 +00:00
2010-03-19 15:45:21 +00:00
/**
* GstVaapiWindowX11:xid:
*
* The underlying X11 #Window XID.
*/
2010-03-15 15:12:27 +00:00
g_object_class_install_property
(object_class,
PROP_XID,
g_param_spec_uint("xid",
"X window id",
2010-03-19 15:45:21 +00:00
"The underlying X11 window id",
2010-03-15 15:12:27 +00:00
0, G_MAXUINT32, 0,
G_PARAM_READWRITE|G_PARAM_CONSTRUCT_ONLY));
}
static void
gst_vaapi_window_x11_init(GstVaapiWindowX11 *window)
{
GstVaapiWindowX11Private *priv = GST_VAAPI_WINDOW_X11_GET_PRIVATE(window);
window->priv = priv;
priv->display = NULL;
priv->xid = None;
priv->create_window = TRUE;
priv->is_mapped = FALSE;
priv->fullscreen_on_map = FALSE;
2010-03-15 15:12:27 +00:00
}
2010-03-19 15:45:21 +00:00
/**
* gst_vaapi_window_x11_new:
* @display: a #GstVaapiDisplay
* @width: the requested window width, in pixels
* @height: the requested windo height, in pixels
*
* Creates a window with the specified @width and @height. The window
* will be attached to the @display and remains invisible to the user
* until gst_vaapi_window_show() is called.
*
* Return value: the newly allocated #GstVaapiWindow object
*/
2010-03-15 15:12:27 +00:00
GstVaapiWindow *
gst_vaapi_window_x11_new(GstVaapiDisplay *display, guint width, guint height)
{
GST_DEBUG("new window, size %ux%u", width, height);
g_return_val_if_fail(GST_VAAPI_IS_DISPLAY(display), NULL);
g_return_val_if_fail(width > 0, NULL);
g_return_val_if_fail(height > 0, NULL);
return g_object_new(GST_VAAPI_TYPE_WINDOW_X11,
"display", display,
"width", width,
"height", height,
NULL);
}
2010-03-19 15:45:21 +00:00
/**
* gst_vaapi_window_x11_new_with_xid:
* @display: a #GstVaapiDisplay
* @xid: an X11 #Window id
*
* Creates a #GstVaapiWindow using the X11 #Window @xid. The caller
* still owns the window and must call XDestroyWindow() when all
* #GstVaapiWindow references are released. Doing so too early can
* yield undefined behaviour.
*
* Return value: the newly allocated #GstVaapiWindow object
*/
2010-03-15 15:12:27 +00:00
GstVaapiWindow *
gst_vaapi_window_x11_new_with_xid(GstVaapiDisplay *display, Window xid)
{
GST_DEBUG("new window from xid 0x%08x", xid);
g_return_val_if_fail(GST_VAAPI_IS_DISPLAY(display), NULL);
g_return_val_if_fail(xid != None, NULL);
2010-03-15 15:12:27 +00:00
return g_object_new(GST_VAAPI_TYPE_WINDOW_X11,
"display", display,
"xid", xid,
NULL);
}
2010-03-19 15:45:21 +00:00
/**
* gst_vaapi_window_x11_get_xid:
* @window: a #GstVaapiWindowX11
*
* Returns the underlying X11 #Window that was created by
* gst_vaapi_window_x11_new() or that was bound with
* gst_vaapi_window_x11_new_with_xid().
*
* Return value: the underlying X11 #Window bound to @window.
*/
2010-03-15 15:12:27 +00:00
Window
gst_vaapi_window_x11_get_xid(GstVaapiWindowX11 *window)
{
g_return_val_if_fail(GST_VAAPI_WINDOW_X11(window), None);
return window->priv->xid;
}