2008-06-19 23:38:36 +00:00
|
|
|
/*
|
2008-05-19 16:57:39 +00:00
|
|
|
* GStreamer
|
2008-09-20 13:44:24 +00:00
|
|
|
* Copyright (C) 2007 David A. Schleef <ds@schleef.org>
|
2008-05-19 16:57:39 +00:00
|
|
|
* Copyright (C) 2008 Julien Isorce <julien.isorce@gmail.com>
|
2008-08-11 07:52:16 +00:00
|
|
|
* Copyright (C) 2008 Filippo Argiolas <filippo.argiolas@gmail.com>
|
2013-06-13 07:57:35 +00:00
|
|
|
* Copyright (C) 2013 Matthew Waters <ystreet00@gmail.com>
|
2008-05-19 16:57:39 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
2012-11-08 11:53:56 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2008-05-19 16:57:39 +00:00
|
|
|
*/
|
|
|
|
|
2013-11-23 11:54:46 +00:00
|
|
|
/**
|
|
|
|
* SECTION:gstgldisplay
|
|
|
|
* @short_description: window system display connection abstraction
|
|
|
|
* @title: GstGLDisplay
|
|
|
|
* @see_also: #GstContext, #GstGLContext, #GstGLWindow
|
|
|
|
*
|
|
|
|
* #GstGLDisplay represents a connection to the underlying windowing system.
|
|
|
|
* Elements are required to make use of #GstContext to share and propogate
|
|
|
|
* a #GstGLDisplay.
|
|
|
|
*/
|
|
|
|
|
2008-05-18 11:12:46 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2013-07-10 15:03:04 +00:00
|
|
|
#include "gl.h"
|
2013-01-16 04:21:44 +00:00
|
|
|
#include "gstgldisplay.h"
|
2009-08-03 15:52:31 +00:00
|
|
|
|
2013-11-27 06:52:46 +00:00
|
|
|
#if GST_GL_HAVE_WINDOW_X11
|
|
|
|
#include <gst/gl/x11/gstgldisplay_x11.h>
|
|
|
|
#endif
|
2014-03-17 09:56:39 +00:00
|
|
|
#if GST_GL_HAVE_PLATFORM_EGL
|
|
|
|
#include <gst/gl/egl/gstgldisplay_egl.h>
|
2014-03-22 22:01:49 +00:00
|
|
|
#include <gst/gl/egl/gsteglimagememory.h>
|
2014-03-17 09:56:39 +00:00
|
|
|
#endif
|
2013-11-27 06:52:46 +00:00
|
|
|
|
2013-11-12 23:43:16 +00:00
|
|
|
GST_DEBUG_CATEGORY_STATIC (gst_context);
|
2008-09-13 01:32:04 +00:00
|
|
|
GST_DEBUG_CATEGORY_STATIC (gst_gl_display_debug);
|
|
|
|
#define GST_CAT_DEFAULT gst_gl_display_debug
|
|
|
|
|
2012-05-30 03:46:21 +00:00
|
|
|
#define DEBUG_INIT \
|
2013-11-12 23:43:16 +00:00
|
|
|
GST_DEBUG_CATEGORY_INIT (gst_gl_display_debug, "gldisplay", 0, "opengl display"); \
|
|
|
|
GST_DEBUG_CATEGORY_GET (gst_context, "GST_CONTEXT");
|
2008-09-13 01:32:04 +00:00
|
|
|
|
2012-05-30 03:46:21 +00:00
|
|
|
G_DEFINE_TYPE_WITH_CODE (GstGLDisplay, gst_gl_display, G_TYPE_OBJECT,
|
2009-02-11 06:39:14 +00:00
|
|
|
DEBUG_INIT);
|
2012-12-06 07:40:26 +00:00
|
|
|
|
|
|
|
#define GST_GL_DISPLAY_GET_PRIVATE(o) \
|
2013-06-13 07:57:35 +00:00
|
|
|
(G_TYPE_INSTANCE_GET_PRIVATE((o), GST_TYPE_GL_DISPLAY, GstGLDisplayPrivate))
|
2012-12-06 07:40:26 +00:00
|
|
|
|
2009-02-11 06:39:14 +00:00
|
|
|
static void gst_gl_display_finalize (GObject * object);
|
2013-11-27 06:52:46 +00:00
|
|
|
static guintptr gst_gl_display_default_get_handle (GstGLDisplay * display);
|
2008-06-29 17:27:43 +00:00
|
|
|
|
2012-12-06 07:40:26 +00:00
|
|
|
struct _GstGLDisplayPrivate
|
|
|
|
{
|
2013-07-15 13:25:57 +00:00
|
|
|
gint dummy;
|
2012-12-06 07:40:26 +00:00
|
|
|
};
|
|
|
|
|
2008-05-18 11:12:46 +00:00
|
|
|
static void
|
|
|
|
gst_gl_display_class_init (GstGLDisplayClass * klass)
|
2008-06-19 23:38:36 +00:00
|
|
|
{
|
2012-12-06 07:40:26 +00:00
|
|
|
g_type_class_add_private (klass, sizeof (GstGLDisplayPrivate));
|
|
|
|
|
2013-11-27 06:52:46 +00:00
|
|
|
klass->get_handle = gst_gl_display_default_get_handle;
|
|
|
|
|
2008-08-01 09:00:49 +00:00
|
|
|
G_OBJECT_CLASS (klass)->finalize = gst_gl_display_finalize;
|
2008-05-18 11:12:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2012-05-30 03:46:21 +00:00
|
|
|
gst_gl_display_init (GstGLDisplay * display)
|
2008-05-18 11:12:46 +00:00
|
|
|
{
|
2012-12-06 07:40:26 +00:00
|
|
|
display->priv = GST_GL_DISPLAY_GET_PRIVATE (display);
|
|
|
|
|
2014-01-14 23:21:56 +00:00
|
|
|
display->gl_api = GST_GL_API_ANY;
|
|
|
|
display->type = GST_GL_DISPLAY_TYPE_ANY;
|
2013-06-13 07:57:35 +00:00
|
|
|
|
2013-11-12 23:43:16 +00:00
|
|
|
GST_TRACE ("init %p", display);
|
|
|
|
|
2012-09-16 11:23:09 +00:00
|
|
|
gst_gl_memory_init ();
|
2014-03-22 22:01:49 +00:00
|
|
|
|
|
|
|
#if GST_GL_HAVE_PLATFORM_EGL
|
|
|
|
gst_egl_image_memory_init ();
|
|
|
|
#endif
|
2008-05-18 11:12:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2009-02-11 06:39:14 +00:00
|
|
|
gst_gl_display_finalize (GObject * object)
|
2008-05-18 11:12:46 +00:00
|
|
|
{
|
2009-02-11 06:39:14 +00:00
|
|
|
GstGLDisplay *display = GST_GL_DISPLAY (object);
|
2008-08-01 09:00:49 +00:00
|
|
|
|
2013-08-14 00:44:19 +00:00
|
|
|
if (display->context) {
|
|
|
|
gst_object_unref (display->context);
|
|
|
|
display->context = NULL;
|
2012-12-19 03:32:20 +00:00
|
|
|
}
|
2008-06-29 17:27:43 +00:00
|
|
|
|
2013-11-12 23:43:16 +00:00
|
|
|
GST_TRACE ("finalize %p", object);
|
|
|
|
|
2013-06-12 13:17:30 +00:00
|
|
|
G_OBJECT_CLASS (gst_gl_display_parent_class)->finalize (object);
|
2008-06-29 17:27:43 +00:00
|
|
|
}
|
|
|
|
|
2014-01-14 23:21:56 +00:00
|
|
|
/**
|
|
|
|
* gst_gl_display_new:
|
|
|
|
*
|
|
|
|
* Returns: (transfer full): a new #GstGLDisplay
|
|
|
|
*/
|
2013-08-14 00:44:19 +00:00
|
|
|
GstGLDisplay *
|
|
|
|
gst_gl_display_new (void)
|
|
|
|
{
|
2013-11-27 06:52:46 +00:00
|
|
|
GstGLDisplay *display = NULL;
|
2014-05-06 06:31:28 +00:00
|
|
|
const gchar *user_choice, *platform_choice;
|
2013-11-27 06:52:46 +00:00
|
|
|
static volatile gsize _init = 0;
|
|
|
|
|
|
|
|
if (g_once_init_enter (&_init)) {
|
|
|
|
GST_DEBUG_CATEGORY_INIT (gst_gl_display_debug, "gldisplay", 0,
|
|
|
|
"gldisplay element");
|
|
|
|
g_once_init_leave (&_init, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
user_choice = g_getenv ("GST_GL_WINDOW");
|
2014-05-06 06:31:28 +00:00
|
|
|
platform_choice = g_getenv ("GST_GL_PLATFORM");
|
2013-11-27 06:52:46 +00:00
|
|
|
GST_INFO ("creating a window, user choice:%s", user_choice);
|
|
|
|
|
|
|
|
#if GST_GL_HAVE_WINDOW_X11
|
|
|
|
if (!display && (!user_choice || g_strstr_len (user_choice, 3, "x11")))
|
|
|
|
display = GST_GL_DISPLAY (gst_gl_display_x11_new (NULL));
|
2014-03-17 09:56:39 +00:00
|
|
|
#endif
|
|
|
|
#if GST_GL_HAVE_PLATFORM_EGL
|
2014-05-06 06:31:28 +00:00
|
|
|
if (!display && (!platform_choice
|
|
|
|
|| g_strstr_len (platform_choice, 3, "egl")))
|
2014-03-17 09:56:39 +00:00
|
|
|
display = GST_GL_DISPLAY (gst_gl_display_egl_new ());
|
2013-11-27 06:52:46 +00:00
|
|
|
#endif
|
|
|
|
if (!display) {
|
|
|
|
/* subclass returned a NULL window */
|
|
|
|
GST_WARNING ("Could not create display. user specified %s, creating dummy",
|
|
|
|
user_choice ? user_choice : "(null)");
|
|
|
|
|
|
|
|
return g_object_new (GST_TYPE_GL_DISPLAY, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
return display;
|
2013-08-14 00:44:19 +00:00
|
|
|
}
|
|
|
|
|
2012-12-06 07:40:26 +00:00
|
|
|
GstGLAPI
|
2013-06-12 13:17:30 +00:00
|
|
|
gst_gl_display_get_gl_api (GstGLDisplay * display)
|
2012-12-06 07:40:26 +00:00
|
|
|
{
|
2013-06-12 13:17:30 +00:00
|
|
|
g_return_val_if_fail (GST_IS_GL_DISPLAY (display), GST_GL_API_NONE);
|
|
|
|
|
2014-01-14 23:21:56 +00:00
|
|
|
return display->gl_api;
|
2012-12-06 07:40:26 +00:00
|
|
|
}
|
|
|
|
|
2013-11-27 06:52:46 +00:00
|
|
|
guintptr
|
|
|
|
gst_gl_display_get_handle (GstGLDisplay * display)
|
|
|
|
{
|
|
|
|
GstGLDisplayClass *klass;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GST_IS_GL_DISPLAY (display), 0);
|
|
|
|
klass = GST_GL_DISPLAY_GET_CLASS (display);
|
|
|
|
g_return_val_if_fail (klass->get_handle != NULL, 0);
|
|
|
|
|
|
|
|
return klass->get_handle (display);
|
|
|
|
}
|
|
|
|
|
|
|
|
static guintptr
|
|
|
|
gst_gl_display_default_get_handle (GstGLDisplay * display)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-11-23 11:54:46 +00:00
|
|
|
/**
|
|
|
|
* gst_context_set_gl_display:
|
|
|
|
* @context: a #GstContext
|
|
|
|
* @display: resulting #GstGLDisplay
|
|
|
|
*
|
|
|
|
* Sets @display on @context
|
|
|
|
*/
|
2013-06-13 07:57:35 +00:00
|
|
|
void
|
|
|
|
gst_context_set_gl_display (GstContext * context, GstGLDisplay * display)
|
|
|
|
{
|
|
|
|
GstStructure *s;
|
|
|
|
|
2013-11-12 23:43:16 +00:00
|
|
|
g_return_if_fail (context != NULL);
|
|
|
|
|
|
|
|
GST_CAT_LOG (gst_context, "setting GstGLDisplay(%p) on context(%p)", display,
|
|
|
|
context);
|
|
|
|
|
2013-06-13 07:57:35 +00:00
|
|
|
s = gst_context_writable_structure (context);
|
|
|
|
gst_structure_set (s, GST_GL_DISPLAY_CONTEXT_TYPE, GST_TYPE_GL_DISPLAY,
|
|
|
|
display, NULL);
|
|
|
|
}
|
|
|
|
|
2013-11-23 11:54:46 +00:00
|
|
|
/**
|
|
|
|
* gst_context_get_gl_display:
|
|
|
|
* @context: a #GstContext
|
|
|
|
* @display: resulting #GstGLDisplay
|
|
|
|
*
|
|
|
|
* Returns: Whether @display was in @context
|
|
|
|
*/
|
2013-06-13 07:57:35 +00:00
|
|
|
gboolean
|
|
|
|
gst_context_get_gl_display (GstContext * context, GstGLDisplay ** display)
|
|
|
|
{
|
|
|
|
const GstStructure *s;
|
2013-11-12 23:43:16 +00:00
|
|
|
gboolean ret;
|
|
|
|
|
|
|
|
g_return_val_if_fail (display != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (context != NULL, FALSE);
|
2013-06-13 07:57:35 +00:00
|
|
|
|
|
|
|
s = gst_context_get_structure (context);
|
2013-11-12 23:43:16 +00:00
|
|
|
ret = gst_structure_get (s, GST_GL_DISPLAY_CONTEXT_TYPE,
|
2013-06-13 07:57:35 +00:00
|
|
|
GST_TYPE_GL_DISPLAY, display, NULL);
|
2013-11-12 23:43:16 +00:00
|
|
|
|
|
|
|
GST_CAT_LOG (gst_context, "got GstGLDisplay(%p) from context(%p)", *display,
|
|
|
|
context);
|
|
|
|
|
|
|
|
return ret;
|
2013-06-12 13:17:30 +00:00
|
|
|
}
|