e30b57042786784986e1e6c2e24c0924592bc174
[platform/upstream/gstreamer.git] / ext / eglgles / gstegladaptation.h
1 /*
2  * GStreamer EGL/GLES Sink Adaptation
3  * Copyright (C) 2012-2013 Collabora Ltd.
4  *   @author: Reynaldo H. Verdejo Pinochet <reynaldo@collabora.com>
5  *   @author: Sebastian Dröge <sebastian.droege@collabora.co.uk>
6  *   @author: Thiago Santos <thiago.sousa.santos@collabora.com>
7  *
8  * Permission is hereby granted, free of charge, to any person obtaining a
9  * copy of this software and associated documentation files (the "Software"),
10  * to deal in the Software without restriction, including without limitation
11  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
12  * and/or sell copies of the Software, and to permit persons to whom the
13  * Software is furnished to do so, subject to the following conditions:
14  *
15  * The above copyright notice and this permission notice shall be included in
16  * all copies or substantial portions of the Software.
17  *
18  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
23  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
24  * DEALINGS IN THE SOFTWARE.
25  *
26  * Alternatively, the contents of this file may be used under the
27  * GNU Lesser General Public License Version 2.1 (the "LGPL"), in
28  * which case the following provisions apply instead of the ones
29  * mentioned above:
30  *
31  * This library is free software; you can redistribute it and/or
32  * modify it under the terms of the GNU Library General Public
33  * License as published by the Free Software Foundation; either
34  * version 2 of the License, or (at your option) any later version.
35  *
36  * This library is distributed in the hope that it will be useful,
37  * but WITHOUT ANY WARRANTY; without even the implied warranty of
38  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
39  * Library General Public License for more details.
40  *
41  * You should have received a copy of the GNU Library General Public
42  * License along with this library; if not, write to the
43  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
44  * Boston, MA 02111-1307, USA.
45  */
46
47 #ifndef __GST_EGL_ADAPTATION_H__
48 #define __GST_EGL_ADAPTATION_H__
49
50 #ifdef HAVE_CONFIG_H
51 #  include <config.h>
52 #endif
53
54 #define EGL_EGLEXT_PROTOTYPES
55 #define GL_GLEXT_PROTOTYPES
56
57 #include <gst/gst.h>
58 #include <gst/egl/egl.h>
59 #include <gst/video/gstvideopool.h>
60
61 #ifdef HAVE_IOS
62 #include <OpenGLES/ES2/gl.h>
63
64 #else
65 #include <EGL/egl.h>
66 #include <EGL/eglext.h>
67 #include <GLES2/gl2.h>
68 #include <GLES2/gl2ext.h>
69 #endif
70
71 #define GST_EGLGLESSINK_EGL_MIN_VERSION 1
72
73 static const EGLint eglglessink_RGBA8888_attribs[] = {
74   EGL_RED_SIZE, 8,
75   EGL_GREEN_SIZE, 8,
76   EGL_BLUE_SIZE, 8,
77   EGL_ALPHA_SIZE, 8,
78   EGL_SURFACE_TYPE, EGL_WINDOW_BIT,
79   EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT,
80   EGL_NONE
81 };
82
83 G_BEGIN_DECLS
84
85 typedef struct _GstEglAdaptationContext GstEglAdaptationContext;
86 typedef struct _GstEglGlesImageFmt GstEglGlesImageFmt;
87
88 #ifdef HAVE_IOS
89 typedef struct _GstEaglContext GstEaglContext;
90 #else
91 typedef struct _GstEglGlesRenderContext GstEglGlesRenderContext;
92 #endif
93
94 typedef struct _coord5
95 {
96   float x;
97   float y;
98   float z;
99   float a;                      /* texpos x */
100   float b;                      /* texpos y */
101 } coord5;
102
103 typedef struct
104 {
105   GLuint texture;
106 } GstEGLGLESImageData;
107
108 /*
109  * GstEglAdaptationContext:
110  * @have_vbo: Set if the GLES VBO setup has been performed
111  * @have_texture: Set if the GLES texture setup has been performed
112  * @have_surface: Set if the EGL surface setup has been performed
113  *  
114  * The #GstEglAdaptationContext data structure.
115  */
116 struct _GstEglAdaptationContext
117 {
118   GstElement *element;
119
120 #ifdef HAVE_IOS
121   GstEaglContext *eaglctx;
122 #else
123   GstEglGlesRenderContext *eglglesctx;
124 #endif
125
126   GstEGLDisplay *display, *set_display;
127   EGLNativeWindowType window, used_window;
128
129   GLuint fragshader[2]; /* frame, border */
130   GLuint vertshader[2]; /* frame, border */
131   GLuint glslprogram[2]; /* frame, border */
132   GLuint texture[3]; /* RGB/Y, U/UV, V */
133   /* shader vars */
134   GLuint position_loc[2]; /* frame, border */
135   GLuint texpos_loc[1]; /* frame */
136   GLuint tex_scale_loc[1][3]; /* [frame] RGB/Y, U/UV, V */
137   GLuint tex_loc[1][3]; /* [frame] RGB/Y, U/UV, V */
138   coord5 position_array[16];    /* 4 x Frame x-normal,y-normal, 4x Frame x-normal,y-flip, 4 x Border1, 4 x Border2 */
139   unsigned short index_array[4];
140   unsigned int position_buffer, index_buffer;
141   gint n_textures;
142
143   EGLint surface_width;
144   EGLint surface_height;
145   EGLint pixel_aspect_ratio_n;
146   EGLint pixel_aspect_ratio_d;
147
148   gboolean have_vbo;
149   gboolean have_texture;
150   gboolean have_surface;
151   gboolean buffer_preserved;
152 };
153
154 GST_DEBUG_CATEGORY_EXTERN (egladaption_debug);
155
156 void gst_egl_adaption_init (void);
157
158 GstEglAdaptationContext * gst_egl_adaptation_context_new (GstElement * element);
159 void gst_egl_adaptation_context_free (GstEglAdaptationContext * ctx);
160 void gst_egl_adaptation_init (GstEglAdaptationContext * ctx);
161 void gst_egl_adaptation_deinit (GstEglAdaptationContext * ctx);
162
163 gboolean gst_egl_adaptation_create_surface (GstEglAdaptationContext * ctx);
164 void gst_egl_adaptation_query_buffer_preserved (GstEglAdaptationContext * ctx);
165 void gst_egl_adaptation_query_par (GstEglAdaptationContext * ctx);
166 void gst_egl_adaptation_destroy_surface (GstEglAdaptationContext * ctx);
167 void gst_egl_adaptation_destroy_context (GstEglAdaptationContext * ctx);
168
169 gboolean
170 gst_egl_adaptation_create_egl_context (GstEglAdaptationContext * ctx);
171
172 /* platform window */
173 gboolean gst_egl_adaptation_create_native_window (GstEglAdaptationContext
174 * ctx, gint width, gint height, gpointer * own_window_data);
175 void gst_egl_adaptation_destroy_native_window (GstEglAdaptationContext * ctx, gpointer * own_window_data);
176
177 GstCaps *gst_egl_adaptation_fill_supported_fbuffer_configs (GstEglAdaptationContext * ctx);
178 gboolean gst_egl_adaptation_init_egl_display (GstEglAdaptationContext * ctx);
179 gboolean gst_egl_adaptation_choose_config (GstEglAdaptationContext * ctx);
180 gboolean gst_egl_adaptation_init_egl_surface (GstEglAdaptationContext * ctx, GstVideoFormat format);
181 void gst_egl_adaptation_init_egl_exts (GstEglAdaptationContext * ctx);
182 gboolean gst_egl_adaptation_update_surface_dimensions (GstEglAdaptationContext * ctx);
183 gboolean _gst_egl_choose_config (GstEglAdaptationContext * ctx, gboolean try_only, gint * num_configs);
184
185 gboolean got_gl_error (const char *wtf);
186 gboolean got_egl_error (const char *wtf);
187
188 void gst_egl_adaptation_set_window (GstEglAdaptationContext * ctx, guintptr window);
189
190 gboolean gst_egl_adaptation_context_make_current (GstEglAdaptationContext * ctx, gboolean bind);
191 void gst_egl_adaptation_cleanup (GstEglAdaptationContext * ctx);
192
193 GstBuffer *
194 gst_egl_adaptation_allocate_eglimage (GstEglAdaptationContext * ctx, GstAllocator * allocator,
195     GstVideoFormat format, gint width, gint height);
196 gboolean
197 gst_egl_adaptation_context_swap_buffers (GstEglAdaptationContext * ctx);
198
199 G_END_DECLS
200
201 #endif /* __GST_EGL_ADAPTATION_H__ */