2010-03-25 17:28:49 +00:00
|
|
|
/*
|
|
|
|
* gstvaapidisplay_glx.c - VA/GLX display abstraction
|
|
|
|
*
|
2012-01-16 09:41:10 +00:00
|
|
|
* Copyright (C) 2010-2011 Splitted-Desktop Systems
|
2013-11-22 04:57:18 +00:00
|
|
|
* Author: Gwenole Beauchesne <gwenole.beauchesne@splitted-desktop.com>
|
2013-11-22 05:37:12 +00:00
|
|
|
* Copyright (C) 2011-2013 Intel Corporation
|
2013-11-22 04:57:18 +00:00
|
|
|
* Author: Gwenole Beauchesne <gwenole.beauchesne@intel.com>
|
2010-03-25 17:28:49 +00:00
|
|
|
*
|
2010-05-03 07:07:27 +00:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2.1
|
|
|
|
* of the License, or (at your option) any later version.
|
2010-03-25 17:28:49 +00:00
|
|
|
*
|
2010-05-03 07:07:27 +00:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
2010-03-25 17:28:49 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2010-05-03 07:07:27 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2010-03-25 17:28:49 +00:00
|
|
|
*
|
2010-05-03 07:07:27 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free
|
|
|
|
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301 USA
|
2010-03-25 17:28:49 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* SECTION:gstvaapidisplay_glx
|
|
|
|
* @short_description: VA/GLX display abstraction
|
|
|
|
*/
|
|
|
|
|
2012-01-30 17:12:59 +00:00
|
|
|
#include "sysdeps.h"
|
2010-03-30 13:01:34 +00:00
|
|
|
#include "gstvaapicompat.h"
|
2010-03-25 17:28:49 +00:00
|
|
|
#include "gstvaapiutils.h"
|
2010-04-01 13:41:24 +00:00
|
|
|
#include "gstvaapiutils_glx.h"
|
2010-04-01 09:47:59 +00:00
|
|
|
#include "gstvaapidisplay_priv.h"
|
2010-04-01 13:41:24 +00:00
|
|
|
#include "gstvaapidisplay_x11_priv.h"
|
|
|
|
#include "gstvaapidisplay_glx.h"
|
|
|
|
#include "gstvaapidisplay_glx_priv.h"
|
2010-03-25 17:28:49 +00:00
|
|
|
|
|
|
|
#define DEBUG 1
|
|
|
|
#include "gstvaapidebug.h"
|
|
|
|
|
2013-05-27 11:17:31 +00:00
|
|
|
static const guint g_display_types = 1U << GST_VAAPI_DISPLAY_TYPE_GLX;
|
|
|
|
|
2012-01-12 14:03:04 +00:00
|
|
|
static gboolean
|
2013-12-20 12:27:07 +00:00
|
|
|
gst_vaapi_display_glx_get_display_info (GstVaapiDisplay * display,
|
|
|
|
GstVaapiDisplayInfo * info)
|
2010-03-25 17:28:49 +00:00
|
|
|
{
|
2013-12-20 12:27:07 +00:00
|
|
|
const GstVaapiDisplayGLXClass *const klass =
|
|
|
|
GST_VAAPI_DISPLAY_GLX_GET_CLASS (display);
|
2012-01-12 14:03:04 +00:00
|
|
|
|
2014-10-23 11:11:54 +00:00
|
|
|
if (!klass->parent_get_display (display, info))
|
2013-12-20 12:27:07 +00:00
|
|
|
return FALSE;
|
|
|
|
info->display_type = GST_VAAPI_DISPLAY_TYPE_GLX;
|
2014-10-23 11:11:54 +00:00
|
|
|
return TRUE;
|
2010-03-25 17:28:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2013-12-20 12:27:07 +00:00
|
|
|
gst_vaapi_display_glx_class_init (GstVaapiDisplayGLXClass * klass)
|
2010-03-25 17:28:49 +00:00
|
|
|
{
|
2013-12-20 12:27:07 +00:00
|
|
|
GstVaapiMiniObjectClass *const object_class =
|
|
|
|
GST_VAAPI_MINI_OBJECT_CLASS (klass);
|
|
|
|
GstVaapiDisplayClass *const dpy_class = GST_VAAPI_DISPLAY_CLASS (klass);
|
2010-03-25 17:28:49 +00:00
|
|
|
|
2013-12-20 12:27:07 +00:00
|
|
|
gst_vaapi_display_x11_class_init (&klass->parent_class);
|
2013-05-07 09:39:34 +00:00
|
|
|
|
2013-12-20 12:27:07 +00:00
|
|
|
object_class->size = sizeof (GstVaapiDisplayGLX);
|
|
|
|
klass->parent_get_display = dpy_class->get_display;
|
|
|
|
dpy_class->display_types = g_display_types;
|
|
|
|
dpy_class->get_display = gst_vaapi_display_glx_get_display_info;
|
2010-03-25 17:28:49 +00:00
|
|
|
}
|
|
|
|
|
2013-05-07 09:39:34 +00:00
|
|
|
static inline const GstVaapiDisplayClass *
|
2013-12-20 12:27:07 +00:00
|
|
|
gst_vaapi_display_glx_class (void)
|
2010-03-25 17:28:49 +00:00
|
|
|
{
|
2013-12-20 12:27:07 +00:00
|
|
|
static GstVaapiDisplayGLXClass g_class;
|
|
|
|
static gsize g_class_init = FALSE;
|
2013-05-07 09:39:34 +00:00
|
|
|
|
2013-12-20 12:27:07 +00:00
|
|
|
if (g_once_init_enter (&g_class_init)) {
|
|
|
|
gst_vaapi_display_glx_class_init (&g_class);
|
|
|
|
g_once_init_leave (&g_class_init, TRUE);
|
|
|
|
}
|
|
|
|
return GST_VAAPI_DISPLAY_CLASS (&g_class);
|
2010-03-25 17:28:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_vaapi_display_glx_new:
|
|
|
|
* @display_name: the X11 display name
|
|
|
|
*
|
|
|
|
* Opens an X11 #Display using @display_name and returns a newly
|
|
|
|
* allocated #GstVaapiDisplay object. The X11 display will be cloed
|
|
|
|
* when the reference count of the object reaches zero.
|
|
|
|
*
|
|
|
|
* Return value: a newly allocated #GstVaapiDisplay object
|
|
|
|
*/
|
|
|
|
GstVaapiDisplay *
|
2013-12-20 12:27:07 +00:00
|
|
|
gst_vaapi_display_glx_new (const gchar * display_name)
|
2010-03-25 17:28:49 +00:00
|
|
|
{
|
2013-12-20 12:27:07 +00:00
|
|
|
return gst_vaapi_display_new (gst_vaapi_display_glx_class (),
|
|
|
|
GST_VAAPI_DISPLAY_INIT_FROM_DISPLAY_NAME, (gpointer) display_name);
|
2010-03-25 17:28:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_vaapi_display_glx_new_with_display:
|
|
|
|
* @x11_display: an X11 #Display
|
|
|
|
*
|
|
|
|
* Creates a #GstVaapiDisplay based on the X11 @x11_display
|
|
|
|
* display. The caller still owns the display and must call
|
|
|
|
* XCloseDisplay() when all #GstVaapiDisplay references are
|
|
|
|
* released. Doing so too early can yield undefined behaviour.
|
|
|
|
*
|
|
|
|
* Return value: a newly allocated #GstVaapiDisplay object
|
|
|
|
*/
|
|
|
|
GstVaapiDisplay *
|
2013-12-20 12:27:07 +00:00
|
|
|
gst_vaapi_display_glx_new_with_display (Display * x11_display)
|
2010-03-25 17:28:49 +00:00
|
|
|
{
|
2013-12-20 12:27:07 +00:00
|
|
|
g_return_val_if_fail (x11_display != NULL, NULL);
|
2013-05-07 09:39:34 +00:00
|
|
|
|
2013-12-20 12:27:07 +00:00
|
|
|
return gst_vaapi_display_new (gst_vaapi_display_glx_class (),
|
|
|
|
GST_VAAPI_DISPLAY_INIT_FROM_NATIVE_DISPLAY, x11_display);
|
2010-03-25 17:28:49 +00:00
|
|
|
}
|