2008-08-11 17:01:33 +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-06-13 07:57:35 +00:00
|
|
|
#ifndef __GST_GL_DISPLAY_H__
|
|
|
|
#define __GST_GL_DISPLAY_H__
|
2008-05-18 11:12:46 +00:00
|
|
|
|
2013-07-11 09:03:31 +00:00
|
|
|
#include <gst/gl/gstgl_fwd.h>
|
2008-07-19 01:00:26 +00:00
|
|
|
|
2010-12-14 23:56:55 +00:00
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2018-03-13 10:57:15 +00:00
|
|
|
GST_GL_API
|
2012-09-27 05:53:46 +00:00
|
|
|
GType gst_gl_display_get_type (void);
|
2013-06-13 07:57:35 +00:00
|
|
|
|
|
|
|
#define GST_TYPE_GL_DISPLAY (gst_gl_display_get_type())
|
|
|
|
#define GST_GL_DISPLAY(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_GL_DISPLAY,GstGLDisplay))
|
|
|
|
#define GST_GL_DISPLAY_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), GST_TYPE_GL_DISPLAY,GstGLDisplayClass))
|
|
|
|
#define GST_IS_GL_DISPLAY(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_GL_DISPLAY))
|
|
|
|
#define GST_IS_GL_DISPLAY_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), GST_TYPE_GL_DISPLAY))
|
|
|
|
#define GST_GL_DISPLAY_CAST(obj) ((GstGLDisplay*)(obj))
|
2014-01-14 23:21:56 +00:00
|
|
|
#define GST_GL_DISPLAY_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS((o), GST_TYPE_GL_DISPLAY, GstGLDisplayClass))
|
|
|
|
|
2016-03-06 08:35:38 +00:00
|
|
|
/**
|
|
|
|
* GstGLDisplayType:
|
|
|
|
* @GST_GL_DISPLAY_TYPE_NONE: no display type
|
|
|
|
* @GST_GL_DISPLAY_TYPE_X11: X11 display
|
|
|
|
* @GST_GL_DISPLAY_TYPE_WAYLAND: Wayland display
|
|
|
|
* @GST_GL_DISPLAY_TYPE_COCOA: Cocoa display
|
|
|
|
* @GST_GL_DISPLAY_TYPE_WIN32: Win32 display
|
|
|
|
* @GST_GL_DISPLAY_TYPE_DISPMANX: Dispmanx display
|
|
|
|
* @GST_GL_DISPLAY_TYPE_EGL: EGL display
|
2017-07-28 10:00:12 +00:00
|
|
|
* @GST_GL_DISPLAY_TYPE_VIV_FB: Vivante Framebuffer display
|
2018-02-23 18:59:45 +00:00
|
|
|
* @GST_GL_DISPLAY_TYPE_GBM: Mesa3D GBM display
|
2016-03-06 08:35:38 +00:00
|
|
|
* @GST_GL_DISPLAY_TYPE_ANY: any display type
|
|
|
|
*/
|
2021-05-18 09:56:13 +00:00
|
|
|
/**
|
|
|
|
* GST_GL_DISPLAY_TYPE_EGL_DEVICE:
|
|
|
|
*
|
|
|
|
* EGLDevice display.
|
|
|
|
*
|
|
|
|
* Since: 1.18
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* GST_GL_DISPLAY_TYPE_EAGL:
|
|
|
|
*
|
|
|
|
* EAGL display.
|
|
|
|
*
|
|
|
|
* Since: 1.20
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* GST_GL_DISPLAY_TYPE_WINRT:
|
|
|
|
*
|
|
|
|
* WinRT display.
|
|
|
|
*
|
|
|
|
* Since: 1.20
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* GST_GL_DISPLAY_TYPE_ANDROID:
|
|
|
|
*
|
|
|
|
* Android display.
|
|
|
|
*
|
|
|
|
* Since: 1.20
|
|
|
|
*/
|
2014-01-14 23:21:56 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
GST_GL_DISPLAY_TYPE_NONE = 0,
|
|
|
|
GST_GL_DISPLAY_TYPE_X11 = (1 << 0),
|
|
|
|
GST_GL_DISPLAY_TYPE_WAYLAND = (1 << 1),
|
|
|
|
GST_GL_DISPLAY_TYPE_COCOA = (1 << 2),
|
|
|
|
GST_GL_DISPLAY_TYPE_WIN32 = (1 << 3),
|
2014-03-17 09:56:39 +00:00
|
|
|
GST_GL_DISPLAY_TYPE_DISPMANX = (1 << 4),
|
|
|
|
GST_GL_DISPLAY_TYPE_EGL = (1 << 5),
|
2017-02-17 10:24:58 +00:00
|
|
|
GST_GL_DISPLAY_TYPE_VIV_FB = (1 << 6),
|
2018-02-23 18:59:45 +00:00
|
|
|
GST_GL_DISPLAY_TYPE_GBM = (1 << 7),
|
2019-04-04 08:41:13 +00:00
|
|
|
GST_GL_DISPLAY_TYPE_EGL_DEVICE = (1 << 8),
|
2021-05-18 09:56:13 +00:00
|
|
|
GST_GL_DISPLAY_TYPE_EAGL = (1 << 9),
|
|
|
|
GST_GL_DISPLAY_TYPE_WINRT = (1 << 10),
|
|
|
|
GST_GL_DISPLAY_TYPE_ANDROID = (1 << 11),
|
2014-01-14 23:21:56 +00:00
|
|
|
|
|
|
|
GST_GL_DISPLAY_TYPE_ANY = G_MAXUINT32
|
|
|
|
} GstGLDisplayType;
|
2008-05-18 11:12:46 +00:00
|
|
|
|
2012-09-27 05:53:46 +00:00
|
|
|
/**
|
|
|
|
* GstGLDisplay:
|
|
|
|
*
|
2013-11-23 11:54:46 +00:00
|
|
|
* The contents of a #GstGLDisplay are private and should only be accessed
|
2012-09-27 05:53:46 +00:00
|
|
|
* through the provided API
|
|
|
|
*/
|
2009-04-10 18:30:46 +00:00
|
|
|
struct _GstGLDisplay
|
|
|
|
{
|
2019-05-20 01:14:27 +00:00
|
|
|
/*< private >*/
|
2013-06-13 07:57:35 +00:00
|
|
|
GstObject object;
|
2012-09-27 05:53:46 +00:00
|
|
|
|
2014-01-14 23:21:56 +00:00
|
|
|
GstGLDisplayType type;
|
|
|
|
|
2019-05-20 01:14:27 +00:00
|
|
|
/*< protected >*/
|
2019-11-02 13:46:49 +00:00
|
|
|
GList *windows; /* internal lock, use *_window functions instead */
|
2016-06-30 13:04:16 +00:00
|
|
|
GMainContext *main_context;
|
|
|
|
GMainLoop *main_loop;
|
|
|
|
GSource *event_source;
|
|
|
|
|
2013-06-13 07:57:35 +00:00
|
|
|
GstGLDisplayPrivate *priv;
|
2008-05-18 11:12:46 +00:00
|
|
|
};
|
|
|
|
|
2009-04-10 18:30:46 +00:00
|
|
|
struct _GstGLDisplayClass
|
|
|
|
{
|
2013-06-16 10:47:05 +00:00
|
|
|
GstObjectClass object_class;
|
2013-11-27 06:52:46 +00:00
|
|
|
|
2019-06-26 02:15:29 +00:00
|
|
|
guintptr (*get_handle) (GstGLDisplay * display);
|
|
|
|
GstGLWindow * (*create_window) (GstGLDisplay * display);
|
2016-09-28 05:20:25 +00:00
|
|
|
|
2019-05-20 01:14:27 +00:00
|
|
|
/*< private >*/
|
2020-07-16 06:31:28 +00:00
|
|
|
gpointer _padding[GST_PADDING];
|
2008-05-18 11:12:46 +00:00
|
|
|
};
|
|
|
|
|
2018-03-13 10:57:15 +00:00
|
|
|
GST_GL_API
|
2009-04-10 18:30:46 +00:00
|
|
|
GstGLDisplay *gst_gl_display_new (void);
|
2021-05-18 09:56:13 +00:00
|
|
|
GST_GL_API
|
|
|
|
GstGLDisplay *gst_gl_display_new_with_type (GstGLDisplayType type);
|
2009-04-10 18:30:46 +00:00
|
|
|
|
2013-06-13 07:57:35 +00:00
|
|
|
#define gst_gl_display_lock(display) GST_OBJECT_LOCK (display)
|
|
|
|
#define gst_gl_display_unlock(display) GST_OBJECT_UNLOCK (display)
|
2009-04-10 18:30:46 +00:00
|
|
|
|
2018-03-13 10:57:15 +00:00
|
|
|
GST_GL_API
|
2014-05-06 07:27:15 +00:00
|
|
|
guintptr gst_gl_display_get_handle (GstGLDisplay * display);
|
2018-03-13 10:57:15 +00:00
|
|
|
GST_GL_API
|
2014-05-06 07:27:15 +00:00
|
|
|
GstGLDisplayType gst_gl_display_get_handle_type (GstGLDisplay * display);
|
2018-03-13 10:57:15 +00:00
|
|
|
GST_GL_API
|
2014-11-27 10:05:45 +00:00
|
|
|
void gst_gl_display_filter_gl_api (GstGLDisplay * display,
|
2016-03-06 08:35:38 +00:00
|
|
|
GstGLAPI gl_api);
|
2018-03-13 10:57:15 +00:00
|
|
|
GST_GL_API
|
2014-11-27 10:05:45 +00:00
|
|
|
GstGLAPI gst_gl_display_get_gl_api (GstGLDisplay * display);
|
2018-03-13 10:57:15 +00:00
|
|
|
GST_GL_API
|
2015-04-21 02:19:46 +00:00
|
|
|
GstGLAPI gst_gl_display_get_gl_api_unlocked (GstGLDisplay * display);
|
2009-10-22 23:11:27 +00:00
|
|
|
|
2017-07-28 10:00:12 +00:00
|
|
|
/**
|
|
|
|
* GST_GL_DISPLAY_CONTEXT_TYPE:
|
|
|
|
*
|
|
|
|
* The name used in #GstContext queries for requesting a #GstGLDisplay
|
|
|
|
*/
|
2013-06-13 07:57:35 +00:00
|
|
|
#define GST_GL_DISPLAY_CONTEXT_TYPE "gst.gl.GLDisplay"
|
2018-03-13 10:57:15 +00:00
|
|
|
GST_GL_API
|
2013-06-13 08:33:47 +00:00
|
|
|
void gst_context_set_gl_display (GstContext * context, GstGLDisplay * display);
|
2018-03-13 10:57:15 +00:00
|
|
|
GST_GL_API
|
2013-06-13 08:33:47 +00:00
|
|
|
gboolean gst_context_get_gl_display (GstContext * context, GstGLDisplay ** display);
|
2013-06-12 13:17:30 +00:00
|
|
|
|
2018-03-13 10:57:15 +00:00
|
|
|
GST_GL_API
|
2015-06-15 15:09:54 +00:00
|
|
|
gboolean gst_gl_display_create_context (GstGLDisplay * display,
|
|
|
|
GstGLContext * other_context, GstGLContext ** p_context, GError **error);
|
2018-03-13 10:57:15 +00:00
|
|
|
GST_GL_API
|
2015-03-03 06:26:47 +00:00
|
|
|
GstGLContext * gst_gl_display_get_gl_context_for_thread (GstGLDisplay * display,
|
|
|
|
GThread * thread);
|
2018-03-13 10:57:15 +00:00
|
|
|
GST_GL_API
|
2020-02-04 03:04:21 +00:00
|
|
|
gboolean gst_gl_display_add_context (GstGLDisplay * display,
|
|
|
|
GstGLContext * context);
|
|
|
|
GST_GL_API
|
|
|
|
void gst_gl_display_remove_context (GstGLDisplay * display,
|
|
|
|
GstGLContext * context);
|
2015-03-03 06:26:47 +00:00
|
|
|
|
2018-03-13 10:57:15 +00:00
|
|
|
GST_GL_API
|
2016-06-30 13:12:33 +00:00
|
|
|
GstGLWindow * gst_gl_display_create_window (GstGLDisplay * display);
|
2018-03-13 10:57:15 +00:00
|
|
|
GST_GL_API
|
2016-06-30 13:12:33 +00:00
|
|
|
gboolean gst_gl_display_remove_window (GstGLDisplay * display, GstGLWindow * window);
|
2019-11-02 11:58:42 +00:00
|
|
|
GST_GL_API G_DEPRECATED_FOR(gst_gl_display_retrieve_window)
|
2017-01-10 04:35:52 +00:00
|
|
|
GstGLWindow * gst_gl_display_find_window (GstGLDisplay * display, gpointer data, GCompareFunc compare_func);
|
2019-11-02 11:58:42 +00:00
|
|
|
GST_GL_API
|
|
|
|
GstGLWindow * gst_gl_display_retrieve_window (GstGLDisplay * display, gpointer data, GCompareFunc compare_func);
|
2016-06-30 13:12:33 +00:00
|
|
|
|
2010-12-14 23:56:55 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
2013-06-13 07:57:35 +00:00
|
|
|
#endif /* __GST_GL_DISPLAY_H__ */
|