2010-05-04 09:37:38 +00:00
|
|
|
/*
|
2008-05-19 16:57:39 +00:00
|
|
|
* GStreamer
|
2008-09-20 13:44:24 +00:00
|
|
|
* Copyright (C) 2003 Julien Moutte <julien@moutte.net>
|
|
|
|
* Copyright (C) 2005,2006,2007 David A. Schleef <ds@schleef.org>
|
2008-05-19 16:57:39 +00:00
|
|
|
* Copyright (C) 2008 Julien Isorce <julien.isorce@gmail.com>
|
|
|
|
*
|
|
|
|
* 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
|
|
|
*/
|
|
|
|
|
2008-05-18 11:12:46 +00:00
|
|
|
#ifndef _GLIMAGESINK_H_
|
|
|
|
#define _GLIMAGESINK_H_
|
|
|
|
|
|
|
|
#include <gst/gst.h>
|
|
|
|
#include <gst/video/gstvideosink.h>
|
|
|
|
#include <gst/video/video.h>
|
|
|
|
|
2013-07-11 09:03:31 +00:00
|
|
|
#include <gst/gl/gl.h>
|
2008-05-18 11:12:46 +00:00
|
|
|
|
2012-06-05 12:59:31 +00:00
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2008-05-18 11:12:46 +00:00
|
|
|
GST_DEBUG_CATEGORY_EXTERN (gst_debug_glimage_sink);
|
|
|
|
|
|
|
|
#define GST_TYPE_GLIMAGE_SINK \
|
|
|
|
(gst_glimage_sink_get_type())
|
|
|
|
#define GST_GLIMAGE_SINK(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_GLIMAGE_SINK,GstGLImageSink))
|
|
|
|
#define GST_GLIMAGE_SINK_CLASS(klass) \
|
|
|
|
(G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_GLIMAGE_SINK,GstGLImageSinkClass))
|
|
|
|
#define GST_IS_GLIMAGE_SINK(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_GLIMAGE_SINK))
|
|
|
|
#define GST_IS_GLIMAGE_SINK_CLASS(klass) \
|
|
|
|
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_GLIMAGE_SINK))
|
|
|
|
|
|
|
|
typedef struct _GstGLImageSink GstGLImageSink;
|
|
|
|
typedef struct _GstGLImageSinkClass GstGLImageSinkClass;
|
|
|
|
|
|
|
|
struct _GstGLImageSink
|
|
|
|
{
|
2008-05-20 17:40:20 +00:00
|
|
|
GstVideoSink video_sink;
|
2008-05-18 11:12:46 +00:00
|
|
|
|
2008-05-20 17:40:20 +00:00
|
|
|
//properties
|
|
|
|
gchar *display_name;
|
2008-05-18 11:12:46 +00:00
|
|
|
|
2013-07-17 09:22:02 +00:00
|
|
|
guintptr window_id;
|
|
|
|
guintptr new_window_id;
|
2014-07-06 21:20:01 +00:00
|
|
|
gulong mouse_sig_id;
|
|
|
|
gulong key_sig_id;
|
2008-05-18 11:12:46 +00:00
|
|
|
|
2008-05-20 17:40:20 +00:00
|
|
|
//caps
|
2012-07-12 08:07:34 +00:00
|
|
|
GstVideoInfo info;
|
2008-05-18 11:12:46 +00:00
|
|
|
|
2008-05-20 17:40:20 +00:00
|
|
|
GstGLDisplay *display;
|
2013-09-15 04:23:43 +00:00
|
|
|
GstGLContext *context;
|
2014-03-06 07:11:22 +00:00
|
|
|
GstGLContext *other_context;
|
2014-10-29 11:24:16 +00:00
|
|
|
gboolean handle_events;
|
2015-01-30 04:13:27 +00:00
|
|
|
gboolean ignore_alpha;
|
2014-03-06 07:11:22 +00:00
|
|
|
|
2014-04-13 12:14:52 +00:00
|
|
|
guint next_tex;
|
2014-09-21 11:36:49 +00:00
|
|
|
GstBuffer *next_buffer;
|
2008-06-23 18:56:29 +00:00
|
|
|
|
2013-06-12 13:17:30 +00:00
|
|
|
volatile gint to_quit;
|
2009-04-19 22:52:41 +00:00
|
|
|
gboolean keep_aspect_ratio;
|
2013-07-16 12:22:53 +00:00
|
|
|
gint par_n, par_d;
|
2012-07-06 09:07:45 +00:00
|
|
|
|
|
|
|
GstBufferPool *pool;
|
2013-06-11 02:26:50 +00:00
|
|
|
|
2013-08-28 09:07:24 +00:00
|
|
|
/* avoid replacing the stored_buffer while drawing */
|
|
|
|
GMutex drawing_lock;
|
2014-05-30 01:35:04 +00:00
|
|
|
GstBuffer *stored_buffer;
|
2013-08-28 09:07:24 +00:00
|
|
|
GLuint redisplay_texture;
|
|
|
|
|
2014-10-31 01:52:50 +00:00
|
|
|
gboolean caps_change;
|
|
|
|
guint window_width;
|
|
|
|
guint window_height;
|
|
|
|
|
2014-10-21 11:18:51 +00:00
|
|
|
GstGLShader *redisplay_shader;
|
|
|
|
GLuint vao;
|
|
|
|
GLuint vertex_buffer;
|
2014-11-29 13:18:55 +00:00
|
|
|
GLint attr_position;
|
|
|
|
GLint attr_texture;
|
2008-05-18 11:12:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GstGLImageSinkClass
|
|
|
|
{
|
2008-05-20 17:40:20 +00:00
|
|
|
GstVideoSinkClass video_sink_class;
|
2008-05-18 11:12:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
GType gst_glimage_sink_get_type(void);
|
2015-02-20 05:47:01 +00:00
|
|
|
GType gst_gl_image_sink_bin_get_type(void);
|
2008-05-18 11:12:46 +00:00
|
|
|
|
2012-06-05 12:59:31 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
2008-05-18 11:12:46 +00:00
|
|
|
#endif
|
|
|
|
|