5e20f4ae90d0e32b86a0eac95f8fe238d1112f33
[platform/upstream/gstreamer.git] / ext / eglgles / gsteglglessink.h
1 /*
2  * GStreamer EGL/GLES Sink
3  * Copyright (C) 2012 Collabora Ltd.
4  *   @author: Reynaldo H. Verdejo Pinochet <reynaldo@collabora.com>
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a
7  * copy of this software and associated documentation files (the "Software"),
8  * to deal in the Software without restriction, including without limitation
9  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10  * and/or sell copies of the Software, and to permit persons to whom the
11  * Software is furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22  * DEALINGS IN THE SOFTWARE.
23  *
24  * Alternatively, the contents of this file may be used under the
25  * GNU Lesser General Public License Version 2.1 (the "LGPL"), in
26  * which case the following provisions apply instead of the ones
27  * mentioned above:
28  *
29  * This library is free software; you can redistribute it and/or
30  * modify it under the terms of the GNU Library General Public
31  * License as published by the Free Software Foundation; either
32  * version 2 of the License, or (at your option) any later version.
33  *
34  * This library is distributed in the hope that it will be useful,
35  * but WITHOUT ANY WARRANTY; without even the implied warranty of
36  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
37  * Library General Public License for more details.
38  *
39  * You should have received a copy of the GNU Library General Public
40  * License along with this library; if not, write to the
41  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
42  * Boston, MA 02111-1307, USA.
43  */
44
45 #ifndef __GST_EGLGLESSINK_H__
46 #define __GST_EGLGLESSINK_H__
47
48 #include <gst/gst.h>
49
50 #include <EGL/egl.h>
51 #include <EGL/eglext.h>
52 #include <GLES2/gl2.h>
53 #include <GLES2/gl2ext.h>
54
55 G_BEGIN_DECLS
56 #define GST_TYPE_EGLGLESSINK \
57   (gst_eglglessink_get_type())
58 #define GST_EGLGLESSINK(obj) \
59   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_EGLGLESSINK,GstEglGlesSink))
60 #define GST_EGLGLESSINK_CLASS(klass) \
61   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_EGLGLESSINK,GstEglGlesSinkClass))
62 #define GST_IS_EGLGLESSINK(obj) \
63   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_EGLGLESSINK))
64 #define GST_IS_EGLGLESSINK_CLASS(klass) \
65   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_EGLGLESSINK))
66
67 #define GST_EGLGLESSINK_IMAGE_NOFMT 0
68 #define GST_EGLGLESSINK_IMAGE_RGB888 1
69 #define GST_EGLGLESSINK_IMAGE_RGB565 2
70 #define GST_EGLGLESSINK_IMAGE_RGBA8888 3 
71
72 #define GST_EGLGLESSINK_EGL_MIN_VERSION 1
73
74 typedef struct _GstEglGlesBuffer GstEglGlesBuffer;
75 typedef struct _GstEglGlesBufferClass GstEglGlesBufferClass;
76
77 typedef struct _GstEglGlesSink GstEglGlesSink;
78 typedef struct _GstEglGlesSinkClass GstEglGlesSinkClass;
79
80 typedef struct _GstEglGlesImageFmt GstEglGlesImageFmt;
81
82 /* Should be extended when new rendering methods
83  *   get implemented.
84  */
85 typedef enum {
86     GST_EGLGLESSINK_RENDER_SLOW,
87     GST_EGLGLESSINK_RENDER_FAST
88 } GstEglGlesSinkRenderingPath;
89
90 typedef struct _coord2
91 {
92   float x;
93   float y;
94 } coord2;
95
96 typedef struct _coord3
97 {
98   float x;
99   float y;
100   float z;
101 } coord3;
102
103 struct _GstEglGlesImageFmt
104 {
105   gint fmt;              /* Private identifier */
106   const EGLint *attribs; /* EGL Attributes */
107   GstCaps *caps;         /* Matching caps for the attribs */
108 };
109
110 /* XXX: Maybe use GstVideoRectangle for the image data? */
111 struct _GstEglGlesBuffer
112 {
113   GstBuffer buffer;
114   GstEglGlesSink *eglglessink;
115
116   EGLint *image;
117   gint format;
118
119   gint width, height;
120   size_t size;
121 };
122
123 struct _GstEglGlesSink
124 {
125   GstVideoSink videosink;
126   GstVideoFormat format;
127   GstCaps *current_caps;
128
129   GstVideoRectangle display_region;
130   GList *supported_fmts;
131   GstEglGlesImageFmt *selected_fmt;
132   GstCaps *sinkcaps;
133
134   GMutex *flow_lock;
135
136   EGLConfig config;
137   EGLContext context;
138   EGLDisplay display;
139   EGLNativeWindowType window;
140   EGLSurface surface;
141   GLuint fragshader, vertshader, program;
142   GLuint texture[3];
143   gint n_textures;
144
145   gboolean have_window;
146   gboolean using_own_window;
147   gboolean have_surface;;
148   gboolean have_vbo;
149   gboolean have_texture;
150   gboolean egl_started;
151
152   GstEglGlesSinkRenderingPath rendering_path;
153
154   /* shader vars */
155   GLuint coord_pos, tex_pos;
156   GLuint tex_uniform[3];
157   coord3 coordarray[4];
158   coord2 texarray[4];
159   unsigned short indexarray[4];
160   unsigned int vdata, tdata, idata;
161
162   /* props */
163   gboolean silent;
164   gboolean can_create_window;
165   gboolean force_rendering_slow;
166   gboolean keep_aspect_ratio;
167   gint window_default_width;
168   gint window_default_height;
169   EGLint surface_width;
170   EGLint surface_height;
171 };
172
173 struct _GstEglGlesSinkClass
174 {
175   GstVideoSinkClass parent_class;
176 };
177
178 GType gst_eglglessink_get_type (void);
179
180 G_END_DECLS
181 #endif /* __GST_EGLGLESSINK_H__ */