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-10-01 13:47:54 +00:00
|
|
|
#include <gst/gst.h>
|
|
|
|
|
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
|
|
|
|
|
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))
|
|
|
|
|
|
|
|
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),
|
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
|
|
|
|
{
|
2013-11-23 11:54:46 +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;
|
|
|
|
|
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
|
|
|
|
|
|
|
guintptr (*get_handle) (GstGLDisplay * display);
|
2008-05-18 11:12:46 +00:00
|
|
|
};
|
|
|
|
|
2009-04-10 18:30:46 +00:00
|
|
|
GstGLDisplay *gst_gl_display_new (void);
|
|
|
|
|
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
|
|
|
|
2014-05-06 07:27:15 +00:00
|
|
|
guintptr gst_gl_display_get_handle (GstGLDisplay * display);
|
|
|
|
GstGLDisplayType gst_gl_display_get_handle_type (GstGLDisplay * display);
|
2009-10-22 23:11:27 +00:00
|
|
|
|
2013-06-13 07:57:35 +00:00
|
|
|
#define GST_GL_DISPLAY_CONTEXT_TYPE "gst.gl.GLDisplay"
|
2013-06-13 08:33:47 +00:00
|
|
|
void gst_context_set_gl_display (GstContext * context, GstGLDisplay * display);
|
|
|
|
gboolean gst_context_get_gl_display (GstContext * context, GstGLDisplay ** display);
|
2013-06-12 13:17:30 +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__ */
|