Mercurial > mplayer.hg
annotate libvo/vo_gl.c @ 14996:576b810a034d
100l to oded.. edl was causing the decoder to get a first broken packet
author | rfelker |
---|---|
date | Wed, 23 Mar 2005 23:29:54 +0000 |
parents | d87cc822b343 |
children | c5b69cb0ac3e |
rev | line source |
---|---|
1 | 1 #include <stdio.h> |
2 #include <stdlib.h> | |
3 #include <string.h> | |
4 #include <math.h> | |
4737
32e1f5042f65
I don't like such reports: '-vo dga:vidix or -vo x11:vidix works fine for me'
nick
parents:
4658
diff
changeset
|
5 #include <errno.h> |
1 | 6 |
11988 | 7 #include "mp_msg.h" |
1 | 8 #include "config.h" |
14286 | 9 #include "subopt-helper.h" |
1 | 10 #include "video_out.h" |
11 #include "video_out_internal.h" | |
13585 | 12 #include "font_load.h" |
13 #include "sub.h" | |
1 | 14 |
15 #include <errno.h> | |
16 | |
13653
799f81d3cb19
added gl_common for code used by both vo_gl.c and vo_gl2.c.
reimar
parents:
13601
diff
changeset
|
17 #include "gl_common.h" |
2057 | 18 #include "aspect.h" |
13843 | 19 #ifdef HAVE_NEW_GUI |
20 #include "Gui/interface.h" | |
21 #endif | |
31 | 22 |
8148
5b39e79af5fe
removed get_info, using the same sheme as in libmpcodecs instead
alex
parents:
7931
diff
changeset
|
23 static vo_info_t info = |
1 | 24 { |
25 "X11 (OpenGL)", | |
26 "gl", | |
27 "Arpad Gereoffy <arpi@esp-team.scene.hu>", | |
28 "" | |
29 }; | |
30 | |
8148
5b39e79af5fe
removed get_info, using the same sheme as in libmpcodecs instead
alex
parents:
7931
diff
changeset
|
31 LIBVO_EXTERN(gl) |
5b39e79af5fe
removed get_info, using the same sheme as in libmpcodecs instead
alex
parents:
7931
diff
changeset
|
32 |
13843 | 33 static XVisualInfo *gl_vinfo = NULL; |
34 static GLXContext gl_context = 0; | |
2041
ba8a225d1a18
now using x11_common stuff for X11 opening and w/h/bpp query
arpi
parents:
2040
diff
changeset
|
35 static int wsGLXAttrib[] = { GLX_RGBA, |
1 | 36 GLX_RED_SIZE,1, |
37 GLX_GREEN_SIZE,1, | |
38 GLX_BLUE_SIZE,1, | |
39 GLX_DOUBLEBUFFER, | |
40 None }; | |
41 | |
13599 | 42 static int use_osd; |
13660
b34c5aa5f798
OSD variant for vo_gl.c that behaves more like the one of other vos.
reimar
parents:
13653
diff
changeset
|
43 static int scaled_osd; |
14269 | 44 //! How many parts the OSD may consist of at most |
13585 | 45 #define MAX_OSD_PARTS 20 |
14269 | 46 //! Textures for OSD |
13599 | 47 static GLuint osdtex[MAX_OSD_PARTS]; |
13585 | 48 #ifndef FAST_OSD |
14269 | 49 //! Alpha textures for OSD |
13599 | 50 static GLuint osdatex[MAX_OSD_PARTS]; |
13585 | 51 #endif |
14269 | 52 //! Display lists that draw the OSD parts |
13599 | 53 static GLuint osdDispList[MAX_OSD_PARTS]; |
14269 | 54 //! How many parts the OSD currently consists of |
13599 | 55 static int osdtexCnt = 0; |
1 | 56 |
13601 | 57 static int use_aspect; |
1 | 58 static uint32_t image_width; |
59 static uint32_t image_height; | |
60 static uint32_t image_bytes; | |
12159 | 61 static int many_fmts; |
12445
d97398ed403e
changes to get manyfmts nearer to working and fixed memory leak
reimar
parents:
12212
diff
changeset
|
62 static GLenum gl_texfmt; |
12159 | 63 static GLenum gl_format; |
64 static GLenum gl_type; | |
1 | 65 |
10757
3aea64e0d6d9
Avoid flickering during resizes. Keep video contents even when paused. Fix by Tomas Simonaitis <haden@homelan.lt>
mosu
parents:
10138
diff
changeset
|
66 static int int_pause; |
3aea64e0d6d9
Avoid flickering during resizes. Keep video contents even when paused. Fix by Tomas Simonaitis <haden@homelan.lt>
mosu
parents:
10138
diff
changeset
|
67 |
1 | 68 static uint32_t texture_width; |
69 static uint32_t texture_height; | |
70 | |
13237
f85c105bfeaa
improved suboption parsing, fixes also compiler warnings
reimar
parents:
13206
diff
changeset
|
71 static unsigned int slice_height = 1; |
8654
2c4cebb8637d
- optional slice height for -vo gl (example: -vo gl:32)
arpi
parents:
8148
diff
changeset
|
72 |
612 | 73 static void resize(int x,int y){ |
11988 | 74 mp_msg(MSGT_VO, MSGL_V, "[gl] Resize: %dx%d\n",x,y); |
1 | 75 glViewport( 0, 0, x, y ); |
76 | |
77 glMatrixMode(GL_PROJECTION); | |
78 glLoadIdentity(); | |
13601 | 79 if (vo_fs && use_aspect) { |
80 int new_w, new_h; | |
81 GLdouble scale_x, scale_y; | |
82 aspect(&new_w, &new_h, A_ZOOM); | |
83 panscan_calc(); | |
84 new_w += vo_panscan_x; | |
85 new_h += vo_panscan_y; | |
86 scale_x = (GLdouble) new_w / (GLdouble) x; | |
87 scale_y = (GLdouble) new_h / (GLdouble) y; | |
88 glScaled(scale_x, scale_y, 1); | |
89 } | |
1 | 90 glOrtho(0, image_width, image_height, 0, -1,1); |
91 | |
92 glMatrixMode(GL_MODELVIEW); | |
93 glLoadIdentity(); | |
13585 | 94 |
13660
b34c5aa5f798
OSD variant for vo_gl.c that behaves more like the one of other vos.
reimar
parents:
13653
diff
changeset
|
95 if (!scaled_osd) { |
13585 | 96 #ifdef HAVE_FREETYPE |
97 // adjust font size to display size | |
98 force_load_font = 1; | |
99 #endif | |
13660
b34c5aa5f798
OSD variant for vo_gl.c that behaves more like the one of other vos.
reimar
parents:
13653
diff
changeset
|
100 vo_osd_changed(OSDTYPE_OSD); |
b34c5aa5f798
OSD variant for vo_gl.c that behaves more like the one of other vos.
reimar
parents:
13653
diff
changeset
|
101 } |
1 | 102 } |
103 | |
13843 | 104 /** |
105 * \brief Initialize a (new or reused) OpenGL context. | |
106 */ | |
107 static int initGl(uint32_t d_width, uint32_t d_height) { | |
108 unsigned char *ImageData = NULL; | |
109 texture_width = 32; | |
110 while (texture_width < image_width || | |
111 texture_width < image_height) | |
112 texture_width *= 2; | |
113 texture_height = texture_width; | |
114 | |
115 glDisable(GL_BLEND); | |
116 glDisable(GL_DEPTH_TEST); | |
117 glDepthMask(GL_FALSE); | |
118 glDisable(GL_CULL_FACE); | |
119 glEnable(GL_TEXTURE_2D); | |
120 | |
121 mp_msg(MSGT_VO, MSGL_V, "[gl] Creating %dx%d texture...\n", | |
122 texture_width, texture_height); | |
123 | |
124 glTexParameterf(GL_TEXTURE_2D,GL_TEXTURE_MAG_FILTER, GL_LINEAR); | |
125 glTexParameterf(GL_TEXTURE_2D,GL_TEXTURE_MIN_FILTER, GL_LINEAR); | |
126 | |
127 glAdjustAlignment(texture_width * image_bytes); | |
128 ImageData = malloc(texture_width * texture_height * image_bytes); | |
129 memset(ImageData, 0, texture_width * texture_height * image_bytes); | |
130 glTexImage2D(GL_TEXTURE_2D, 0, gl_texfmt, texture_width, texture_height, 0, | |
131 gl_format, gl_type, ImageData); | |
132 free (ImageData); | |
133 | |
134 // set alignment as default is 4 which will break some files | |
135 glAdjustAlignment(image_width * image_bytes); | |
136 | |
137 resize(d_width, d_height); | |
138 | |
139 glClearColor( 0.0f,0.0f,0.0f,0.0f ); | |
140 glClear( GL_COLOR_BUFFER_BIT ); | |
13920 | 141 return 1; |
13843 | 142 } |
143 | |
1 | 144 /* connect to server, create and map window, |
145 * allocate colors and (shared) memory | |
146 */ | |
147 static uint32_t | |
7124
eca7dbad0166
finally removed query_vaa, bes_da and vo_tune_info - the obsoleted libvo api
alex
parents:
7111
diff
changeset
|
148 config(uint32_t width, uint32_t height, uint32_t d_width, uint32_t d_height, uint32_t flags, char *title, uint32_t format) |
1 | 149 { |
150 image_height = height; | |
151 image_width = width; | |
14078
c4033dcb986f
More similar code from gl and gl2 moved to gl_common
reimar
parents:
13993
diff
changeset
|
152 glFindFormat(format, &image_bytes, &gl_texfmt, &gl_format, &gl_type); |
c4033dcb986f
More similar code from gl and gl2 moved to gl_common
reimar
parents:
13993
diff
changeset
|
153 image_bytes = (image_bytes + 7) / 8; |
10757
3aea64e0d6d9
Avoid flickering during resizes. Keep video contents even when paused. Fix by Tomas Simonaitis <haden@homelan.lt>
mosu
parents:
10138
diff
changeset
|
154 |
14430
3512ff2cddb2
set sub_bg_alpha only to 255 when using hardware OSD.
reimar
parents:
14286
diff
changeset
|
155 if (use_osd) |
13585 | 156 sub_bg_alpha = 255; // We need alpha = 255 for invisible part of the OSD |
10757
3aea64e0d6d9
Avoid flickering during resizes. Keep video contents even when paused. Fix by Tomas Simonaitis <haden@homelan.lt>
mosu
parents:
10138
diff
changeset
|
157 int_pause = 0; |
3aea64e0d6d9
Avoid flickering during resizes. Keep video contents even when paused. Fix by Tomas Simonaitis <haden@homelan.lt>
mosu
parents:
10138
diff
changeset
|
158 |
13601 | 159 panscan_init(); |
2249
48f0ac1e9d13
Update to new (cleaner, more bugfree, better) aspect api. vo_gl vo_gl2 and vo_xmga are untested!
atmos4
parents:
2057
diff
changeset
|
160 aspect_save_orig(width,height); |
48f0ac1e9d13
Update to new (cleaner, more bugfree, better) aspect api. vo_gl vo_gl2 and vo_xmga are untested!
atmos4
parents:
2057
diff
changeset
|
161 aspect_save_prescale(d_width,d_height); |
48f0ac1e9d13
Update to new (cleaner, more bugfree, better) aspect api. vo_gl vo_gl2 and vo_xmga are untested!
atmos4
parents:
2057
diff
changeset
|
162 aspect_save_screenres(vo_screenwidth,vo_screenheight); |
48f0ac1e9d13
Update to new (cleaner, more bugfree, better) aspect api. vo_gl vo_gl2 and vo_xmga are untested!
atmos4
parents:
2057
diff
changeset
|
163 |
48f0ac1e9d13
Update to new (cleaner, more bugfree, better) aspect api. vo_gl vo_gl2 and vo_xmga are untested!
atmos4
parents:
2057
diff
changeset
|
164 aspect(&d_width,&d_height,A_NOZOOM); |
2040 | 165 #ifdef X11_FULLSCREEN |
6095 | 166 // if( flags&0x01 ){ // (-fs) |
167 // aspect(&d_width,&d_height,A_ZOOM); | |
168 // } | |
2040 | 169 #endif |
13843 | 170 #ifdef HAVE_NEW_GUI |
171 if (use_gui) { | |
172 // GUI creates and manages window for us | |
173 vo_dwidth = d_width; | |
174 vo_dheight= d_height; | |
175 guiGetEvent(guiSetShVideo, 0); | |
176 setGlWindow(&gl_vinfo, &gl_context, vo_window); | |
177 initGl(vo_dwidth, vo_dheight); | |
178 return 0; | |
179 } | |
180 #endif | |
181 if ( vo_window == None ) { | |
182 unsigned int fg, bg; | |
183 XSizeHints hint; | |
184 XVisualInfo *vinfo; | |
185 XEvent xev; | |
186 | |
13871 | 187 vo_fs = VO_FALSE; |
13843 | 188 |
1 | 189 hint.x = 0; |
190 hint.y = 0; | |
191 hint.width = d_width; | |
192 hint.height = d_height; | |
193 hint.flags = PPosition | PSize; | |
194 | |
195 /* Get some colors */ | |
196 | |
2041
ba8a225d1a18
now using x11_common stuff for X11 opening and w/h/bpp query
arpi
parents:
2040
diff
changeset
|
197 bg = WhitePixel(mDisplay, mScreen); |
ba8a225d1a18
now using x11_common stuff for X11 opening and w/h/bpp query
arpi
parents:
2040
diff
changeset
|
198 fg = BlackPixel(mDisplay, mScreen); |
1 | 199 |
200 /* Make the window */ | |
201 | |
2041
ba8a225d1a18
now using x11_common stuff for X11 opening and w/h/bpp query
arpi
parents:
2040
diff
changeset
|
202 vinfo=glXChooseVisual( mDisplay,mScreen,wsGLXAttrib ); |
1290 | 203 if (vinfo == NULL) |
204 { | |
11988 | 205 mp_msg(MSGT_VO, MSGL_ERR, "[gl] no GLX support present\n"); |
1290 | 206 return -1; |
207 } | |
1 | 208 |
10757
3aea64e0d6d9
Avoid flickering during resizes. Keep video contents even when paused. Fix by Tomas Simonaitis <haden@homelan.lt>
mosu
parents:
10138
diff
changeset
|
209 |
1137
4c7b219e126c
patch: some X11 compliance fixed: set ClassHint and better fullscreen mode
arpi_esp
parents:
1109
diff
changeset
|
210 |
10757
3aea64e0d6d9
Avoid flickering during resizes. Keep video contents even when paused. Fix by Tomas Simonaitis <haden@homelan.lt>
mosu
parents:
10138
diff
changeset
|
211 vo_window = vo_x11_create_smooth_window(mDisplay, mRootWin, vinfo->visual, hint.x, hint.y, hint.width, hint.height, |
3aea64e0d6d9
Avoid flickering during resizes. Keep video contents even when paused. Fix by Tomas Simonaitis <haden@homelan.lt>
mosu
parents:
10138
diff
changeset
|
212 vinfo->depth, XCreateColormap(mDisplay, mRootWin, vinfo->visual, AllocNone)); |
1 | 213 |
7777 | 214 vo_x11_classhint( mDisplay,vo_window,"gl" ); |
215 vo_hidecursor(mDisplay,vo_window); | |
1 | 216 |
7777 | 217 // if ( flags&0x01 ) vo_x11_decoration( mDisplay,vo_window,0 ); |
218 XSelectInput(mDisplay, vo_window, StructureNotifyMask); | |
219 /* Tell other applications about this window */ | |
10138
5e286cc6ad21
Removed YUV (YV12) and BGR support, leaving the native RGB support. Also cleaned some other parts.
alex
parents:
8654
diff
changeset
|
220 XSetStandardProperties(mDisplay, vo_window, title, title, None, NULL, 0, &hint); |
7777 | 221 /* Map window. */ |
222 XMapWindow(mDisplay, vo_window); | |
4017 | 223 #ifdef HAVE_XINERAMA |
7777 | 224 vo_x11_xinerama_move(mDisplay,vo_window); |
4017 | 225 #endif |
1 | 226 |
7777 | 227 /* Wait for map. */ |
228 do | |
229 { | |
2041
ba8a225d1a18
now using x11_common stuff for X11 opening and w/h/bpp query
arpi
parents:
2040
diff
changeset
|
230 XNextEvent(mDisplay, &xev); |
7777 | 231 } |
232 while (xev.type != MapNotify || xev.xmap.event != vo_window); | |
1 | 233 |
7777 | 234 XSelectInput(mDisplay, vo_window, NoEventMask); |
1 | 235 |
2041
ba8a225d1a18
now using x11_common stuff for X11 opening and w/h/bpp query
arpi
parents:
2040
diff
changeset
|
236 XSync(mDisplay, False); |
1 | 237 |
6953
ce67cc1f0beb
ignore BadAccess error at XSelectInput() (grabbing mouse etc) with warning
arpi
parents:
6212
diff
changeset
|
238 vo_x11_selectinput_witherr(mDisplay, vo_window, StructureNotifyMask | KeyPressMask | PointerMotionMask |
10757
3aea64e0d6d9
Avoid flickering during resizes. Keep video contents even when paused. Fix by Tomas Simonaitis <haden@homelan.lt>
mosu
parents:
10138
diff
changeset
|
239 | ButtonPressMask | ButtonReleaseMask | ExposureMask |
4658 | 240 ); |
13843 | 241 } |
242 if (vo_ontop) vo_x11_setlayer(mDisplay, vo_window, vo_ontop); | |
13575 | 243 |
13843 | 244 vo_x11_nofs_sizepos(0, 0, d_width, d_height); |
245 if (vo_fs ^ (flags & VOFLAG_FULLSCREEN)) | |
246 vo_x11_fullscreen(); | |
247 setGlWindow(&gl_vinfo, &gl_context, vo_window); | |
248 initGl(vo_dwidth, vo_dheight); | |
11542 | 249 |
1 | 250 return 0; |
251 } | |
252 | |
31 | 253 static void check_events(void) |
1 | 254 { |
2041
ba8a225d1a18
now using x11_common stuff for X11 opening and w/h/bpp query
arpi
parents:
2040
diff
changeset
|
255 int e=vo_x11_check_events(mDisplay); |
31 | 256 if(e&VO_EVENT_RESIZE) resize(vo_dwidth,vo_dheight); |
10757
3aea64e0d6d9
Avoid flickering during resizes. Keep video contents even when paused. Fix by Tomas Simonaitis <haden@homelan.lt>
mosu
parents:
10138
diff
changeset
|
257 if(e&VO_EVENT_EXPOSE && int_pause) flip_page(); |
31 | 258 } |
1 | 259 |
13585 | 260 /** |
261 * Creates the textures and the display list needed for displaying | |
262 * an OSD part. | |
263 * Callback function for vo_draw_text(). | |
264 */ | |
265 static void create_osd_texture(int x0, int y0, int w, int h, | |
266 unsigned char *src, unsigned char *srca, | |
267 int stride) | |
268 { | |
13653
799f81d3cb19
added gl_common for code used by both vo_gl.c and vo_gl2.c.
reimar
parents:
13601
diff
changeset
|
269 // initialize to 8 to avoid special-casing on alignment |
799f81d3cb19
added gl_common for code used by both vo_gl.c and vo_gl2.c.
reimar
parents:
13601
diff
changeset
|
270 int sx = 8, sy = 8; |
13585 | 271 GLfloat xcov, ycov; |
13660
b34c5aa5f798
OSD variant for vo_gl.c that behaves more like the one of other vos.
reimar
parents:
13653
diff
changeset
|
272 GLint scale_type = (scaled_osd) ? GL_LINEAR : GL_NEAREST; |
13585 | 273 char *clearTexture; |
274 while (sx < w) sx *= 2; | |
275 while (sy < h) sy *= 2; | |
276 xcov = (GLfloat) w / (GLfloat) sx; | |
277 ycov = (GLfloat) h / (GLfloat) sy; | |
278 | |
279 if (osdtexCnt >= MAX_OSD_PARTS) { | |
280 mp_msg(MSGT_VO, MSGL_ERR, "Too many OSD parts, contact the developers!\n"); | |
281 return; | |
282 } | |
283 clearTexture = malloc(sx * sy); | |
284 memset(clearTexture, 0, sx * sy); | |
285 | |
286 // create Textures for OSD part | |
13653
799f81d3cb19
added gl_common for code used by both vo_gl.c and vo_gl2.c.
reimar
parents:
13601
diff
changeset
|
287 glAdjustAlignment(stride); |
799f81d3cb19
added gl_common for code used by both vo_gl.c and vo_gl2.c.
reimar
parents:
13601
diff
changeset
|
288 glPixelStorei(GL_UNPACK_ROW_LENGTH, stride); |
13585 | 289 glGenTextures(1, &osdtex[osdtexCnt]); |
290 glBindTexture(GL_TEXTURE_2D, osdtex[osdtexCnt]); | |
291 glTexImage2D(GL_TEXTURE_2D, 0, GL_LUMINANCE, sx, sy, 0, | |
292 GL_LUMINANCE, GL_UNSIGNED_BYTE, clearTexture); | |
13660
b34c5aa5f798
OSD variant for vo_gl.c that behaves more like the one of other vos.
reimar
parents:
13653
diff
changeset
|
293 glTexParameteri (GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, scale_type); |
b34c5aa5f798
OSD variant for vo_gl.c that behaves more like the one of other vos.
reimar
parents:
13653
diff
changeset
|
294 glTexParameteri (GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, scale_type); |
13585 | 295 glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, w, h, GL_LUMINANCE, |
296 GL_UNSIGNED_BYTE, src); | |
297 | |
298 #ifndef FAST_OSD | |
299 glGenTextures(1, &osdatex[osdtexCnt]); | |
300 glBindTexture(GL_TEXTURE_2D, osdatex[osdtexCnt]); | |
301 glTexImage2D(GL_TEXTURE_2D, 0, GL_ALPHA, sx, sy, 0, | |
302 GL_LUMINANCE, GL_UNSIGNED_BYTE, clearTexture); | |
13660
b34c5aa5f798
OSD variant for vo_gl.c that behaves more like the one of other vos.
reimar
parents:
13653
diff
changeset
|
303 glTexParameteri (GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, scale_type); |
b34c5aa5f798
OSD variant for vo_gl.c that behaves more like the one of other vos.
reimar
parents:
13653
diff
changeset
|
304 glTexParameteri (GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, scale_type); |
13585 | 305 glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, w, h, GL_ALPHA, |
306 GL_UNSIGNED_BYTE, srca); | |
13653
799f81d3cb19
added gl_common for code used by both vo_gl.c and vo_gl2.c.
reimar
parents:
13601
diff
changeset
|
307 #endif |
13585 | 308 glPixelStorei(GL_UNPACK_ROW_LENGTH, 0); |
13653
799f81d3cb19
added gl_common for code used by both vo_gl.c and vo_gl2.c.
reimar
parents:
13601
diff
changeset
|
309 glAdjustAlignment(image_width * image_bytes); |
13585 | 310 |
311 glBindTexture(GL_TEXTURE_2D, 0); | |
312 free(clearTexture); | |
313 | |
314 // Create a list for rendering this OSD part | |
315 osdDispList[osdtexCnt] = glGenLists(1); | |
316 glNewList(osdDispList[osdtexCnt], GL_COMPILE); | |
317 #ifndef FAST_OSD | |
318 // render alpha | |
319 glBlendFunc(GL_ZERO, GL_SRC_ALPHA); | |
320 glBindTexture(GL_TEXTURE_2D, osdatex[osdtexCnt]); | |
321 glBegin(GL_QUADS); | |
322 glTexCoord2f (0, 0); | |
323 glVertex2f (x0, y0); | |
324 glTexCoord2f (0, ycov); | |
325 glVertex2f (x0, y0 + h); | |
326 glTexCoord2f (xcov, ycov); | |
327 glVertex2f (x0 + w, y0 + h); | |
328 glTexCoord2f (xcov, 0); | |
329 glVertex2f (x0 + w, y0); | |
330 glEnd(); | |
331 #endif | |
332 // render OSD | |
333 glBlendFunc (GL_ONE, GL_ONE); | |
334 glBindTexture(GL_TEXTURE_2D, osdtex[osdtexCnt]); | |
335 glBegin(GL_QUADS); | |
336 glTexCoord2f (0, 0); | |
337 glVertex2f (x0, y0); | |
338 glTexCoord2f (0, ycov); | |
339 glVertex2f (x0, y0 + h); | |
340 glTexCoord2f (xcov, ycov); | |
341 glVertex2f (x0 + w, y0 + h); | |
342 glTexCoord2f (xcov, 0); | |
343 glVertex2f (x0 + w, y0); | |
344 glEnd(); | |
345 glEndList(); | |
346 | |
347 osdtexCnt++; | |
348 } | |
349 | |
1501
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1302
diff
changeset
|
350 static void draw_osd(void) |
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1302
diff
changeset
|
351 { |
13585 | 352 int i; |
13660
b34c5aa5f798
OSD variant for vo_gl.c that behaves more like the one of other vos.
reimar
parents:
13653
diff
changeset
|
353 int osd_h, osd_w; |
13585 | 354 if (!use_osd) return; |
355 if (vo_osd_changed(0)) { | |
356 for (i = 0; i < osdtexCnt; i++) { | |
357 glDeleteTextures(1, &osdtex[i]); | |
358 #ifndef FAST_OSD | |
359 glDeleteTextures(1, &osdatex[i]); | |
360 #endif | |
361 glDeleteLists(osdDispList[i], 1); | |
362 } | |
363 osdtexCnt = 0; | |
13660
b34c5aa5f798
OSD variant for vo_gl.c that behaves more like the one of other vos.
reimar
parents:
13653
diff
changeset
|
364 |
b34c5aa5f798
OSD variant for vo_gl.c that behaves more like the one of other vos.
reimar
parents:
13653
diff
changeset
|
365 osd_w = (scaled_osd) ? image_width : vo_dwidth; |
b34c5aa5f798
OSD variant for vo_gl.c that behaves more like the one of other vos.
reimar
parents:
13653
diff
changeset
|
366 osd_h = (scaled_osd) ? image_height : vo_dheight; |
b34c5aa5f798
OSD variant for vo_gl.c that behaves more like the one of other vos.
reimar
parents:
13653
diff
changeset
|
367 vo_draw_text(osd_w, osd_h, create_osd_texture); |
13585 | 368 } |
1501
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1302
diff
changeset
|
369 } |
31 | 370 |
371 static void | |
372 flip_page(void) | |
373 { | |
374 | |
1 | 375 // glEnable(GL_TEXTURE_2D); |
376 // glBindTexture(GL_TEXTURE_2D, texture_id); | |
377 | |
378 glColor3f(1,1,1); | |
379 glBegin(GL_QUADS); | |
380 glTexCoord2f(0,0);glVertex2i(0,0); | |
381 glTexCoord2f(0,1);glVertex2i(0,texture_height); | |
382 glTexCoord2f(1,1);glVertex2i(texture_width,texture_height); | |
383 glTexCoord2f(1,0);glVertex2i(texture_width,0); | |
384 glEnd(); | |
385 | |
13585 | 386 if (osdtexCnt > 0) { |
387 // set special rendering parameters | |
13660
b34c5aa5f798
OSD variant for vo_gl.c that behaves more like the one of other vos.
reimar
parents:
13653
diff
changeset
|
388 if (!scaled_osd) { |
13585 | 389 glMatrixMode(GL_PROJECTION); |
390 glPushMatrix(); | |
391 glLoadIdentity(); | |
392 glOrtho(0, vo_dwidth, vo_dheight, 0, -1, 1); | |
13660
b34c5aa5f798
OSD variant for vo_gl.c that behaves more like the one of other vos.
reimar
parents:
13653
diff
changeset
|
393 } |
13585 | 394 glEnable(GL_BLEND); |
395 // draw OSD | |
396 glCallLists(osdtexCnt, GL_UNSIGNED_INT, osdDispList); | |
397 // set rendering parameters back to defaults | |
398 glDisable (GL_BLEND); | |
13660
b34c5aa5f798
OSD variant for vo_gl.c that behaves more like the one of other vos.
reimar
parents:
13653
diff
changeset
|
399 if (!scaled_osd) |
13585 | 400 glPopMatrix(); |
401 glBindTexture(GL_TEXTURE_2D, 0); | |
402 } | |
403 | |
1 | 404 // glFlush(); |
405 glFinish(); | |
6095 | 406 glXSwapBuffers( mDisplay,vo_window ); |
407 | |
13601 | 408 if (vo_fs && use_aspect) |
409 glClear(GL_COLOR_BUFFER_BIT); | |
1 | 410 } |
411 | |
412 //static inline uint32_t draw_slice_x11(uint8_t *src[], uint32_t slice_num) | |
413 static uint32_t draw_slice(uint8_t *src[], int stride[], int w,int h,int x,int y) | |
414 { | |
415 return 0; | |
416 } | |
417 | |
418 | |
10138
5e286cc6ad21
Removed YUV (YV12) and BGR support, leaving the native RGB support. Also cleaned some other parts.
alex
parents:
8654
diff
changeset
|
419 static uint32_t |
5e286cc6ad21
Removed YUV (YV12) and BGR support, leaving the native RGB support. Also cleaned some other parts.
alex
parents:
8654
diff
changeset
|
420 draw_frame(uint8_t *src[]) |
1 | 421 { |
13237
f85c105bfeaa
improved suboption parsing, fixes also compiler warnings
reimar
parents:
13206
diff
changeset
|
422 unsigned int i; |
1 | 423 uint8_t *ImageData=src[0]; |
424 | |
12212
2e8b305586a0
fixed suboption parsing, added help for suboptions
reimar
parents:
12159
diff
changeset
|
425 if (slice_height == 0) |
2e8b305586a0
fixed suboption parsing, added help for suboptions
reimar
parents:
12159
diff
changeset
|
426 glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, image_width, image_height, |
2e8b305586a0
fixed suboption parsing, added help for suboptions
reimar
parents:
12159
diff
changeset
|
427 gl_format, gl_type, ImageData); |
2e8b305586a0
fixed suboption parsing, added help for suboptions
reimar
parents:
12159
diff
changeset
|
428 else |
8654
2c4cebb8637d
- optional slice height for -vo gl (example: -vo gl:32)
arpi
parents:
8148
diff
changeset
|
429 for(i=0;i<image_height;i+=slice_height){ |
1 | 430 glTexSubImage2D( GL_TEXTURE_2D, // target |
431 0, // level | |
432 0, // x offset | |
433 // image_height-1-i, // y offset | |
434 i, // y offset | |
435 image_width, // width | |
8654
2c4cebb8637d
- optional slice height for -vo gl (example: -vo gl:32)
arpi
parents:
8148
diff
changeset
|
436 (i+slice_height<=image_height)?slice_height:image_height-i, // height |
12159 | 437 gl_format, |
438 gl_type, | |
1 | 439 ImageData+i*image_bytes*image_width ); // *pixels |
440 } | |
441 | |
442 return 0; | |
443 } | |
444 | |
445 static uint32_t | |
446 query_format(uint32_t format) | |
447 { | |
13585 | 448 int caps = VFCAP_CSP_SUPPORTED | VFCAP_CSP_SUPPORTED_BY_HW; |
449 if (use_osd) | |
450 caps |= VFCAP_OSD; | |
13206
6e8d1ac141fc
Using updated colorspace specifications from colorspaces.txt.
reimar
parents:
13188
diff
changeset
|
451 if ((format == IMGFMT_RGB24) || (format == IMGFMT_RGBA)) |
13585 | 452 return caps; |
14078
c4033dcb986f
More similar code from gl and gl2 moved to gl_common
reimar
parents:
13993
diff
changeset
|
453 if (many_fmts && |
c4033dcb986f
More similar code from gl and gl2 moved to gl_common
reimar
parents:
13993
diff
changeset
|
454 glFindFormat(format, NULL, NULL, NULL, NULL)) |
13585 | 455 return caps; |
1 | 456 return 0; |
457 } | |
458 | |
459 | |
460 static void | |
461 uninit(void) | |
462 { | |
6095 | 463 if ( !vo_config_count ) return; |
13843 | 464 releaseGlContext(&gl_vinfo, &gl_context); |
6095 | 465 vo_x11_uninit(); |
1 | 466 } |
4352 | 467 |
14286 | 468 static opt_t subopts[] = { |
469 {"manyfmts", OPT_ARG_BOOL, &many_fmts, NULL}, | |
470 {"osd", OPT_ARG_BOOL, &use_osd, NULL}, | |
471 {"scaled-osd", OPT_ARG_BOOL, &scaled_osd, NULL}, | |
472 {"aspect", OPT_ARG_BOOL, &use_aspect, NULL}, | |
473 {"slice-height", OPT_ARG_INT, &slice_height, (opt_test_f)int_non_neg}, | |
474 {NULL} | |
475 }; | |
476 | |
4352 | 477 static uint32_t preinit(const char *arg) |
478 { | |
14286 | 479 // set defaults |
12159 | 480 many_fmts = 0; |
13585 | 481 use_osd = 1; |
13660
b34c5aa5f798
OSD variant for vo_gl.c that behaves more like the one of other vos.
reimar
parents:
13653
diff
changeset
|
482 scaled_osd = 0; |
13601 | 483 use_aspect = 1; |
12159 | 484 slice_height = 4; |
14286 | 485 if (subopt_parse(arg, subopts) != 0) { |
13237
f85c105bfeaa
improved suboption parsing, fixes also compiler warnings
reimar
parents:
13206
diff
changeset
|
486 mp_msg(MSGT_VO, MSGL_FATAL, |
12212
2e8b305586a0
fixed suboption parsing, added help for suboptions
reimar
parents:
12159
diff
changeset
|
487 "\n-vo gl command line help:\n" |
2e8b305586a0
fixed suboption parsing, added help for suboptions
reimar
parents:
12159
diff
changeset
|
488 "Example: mplayer -vo gl:slice-height=4\n" |
2e8b305586a0
fixed suboption parsing, added help for suboptions
reimar
parents:
12159
diff
changeset
|
489 "\nOptions:\n" |
2e8b305586a0
fixed suboption parsing, added help for suboptions
reimar
parents:
12159
diff
changeset
|
490 " manyfmts\n" |
2e8b305586a0
fixed suboption parsing, added help for suboptions
reimar
parents:
12159
diff
changeset
|
491 " Enable extended color formats for OpenGL 1.2 and later\n" |
2e8b305586a0
fixed suboption parsing, added help for suboptions
reimar
parents:
12159
diff
changeset
|
492 " slice-height=<0-...>\n" |
2e8b305586a0
fixed suboption parsing, added help for suboptions
reimar
parents:
12159
diff
changeset
|
493 " Slice size for texture transfer, 0 for whole image\n" |
13585 | 494 " noosd\n" |
495 " Do not use OpenGL OSD code\n" | |
13601 | 496 " noaspect\n" |
497 " Do not do aspect scaling\n" | |
12212
2e8b305586a0
fixed suboption parsing, added help for suboptions
reimar
parents:
12159
diff
changeset
|
498 "\n" ); |
2e8b305586a0
fixed suboption parsing, added help for suboptions
reimar
parents:
12159
diff
changeset
|
499 return -1; |
2e8b305586a0
fixed suboption parsing, added help for suboptions
reimar
parents:
12159
diff
changeset
|
500 } |
2e8b305586a0
fixed suboption parsing, added help for suboptions
reimar
parents:
12159
diff
changeset
|
501 if (many_fmts) |
2e8b305586a0
fixed suboption parsing, added help for suboptions
reimar
parents:
12159
diff
changeset
|
502 mp_msg (MSGT_VO, MSGL_WARN, "[gl] using extended formats.\n" |
2e8b305586a0
fixed suboption parsing, added help for suboptions
reimar
parents:
12159
diff
changeset
|
503 "Make sure you have OpenGL >= 1.2 and used corresponding " |
2e8b305586a0
fixed suboption parsing, added help for suboptions
reimar
parents:
12159
diff
changeset
|
504 "headers for compiling!\n"); |
2e8b305586a0
fixed suboption parsing, added help for suboptions
reimar
parents:
12159
diff
changeset
|
505 mp_msg (MSGT_VO, MSGL_INFO, "[gl] Using %d as slice height " |
2e8b305586a0
fixed suboption parsing, added help for suboptions
reimar
parents:
12159
diff
changeset
|
506 "(0 means image height).\n", slice_height); |
7931 | 507 if( !vo_init() ) return -1; // Can't open X11 |
7777 | 508 |
4737
32e1f5042f65
I don't like such reports: '-vo dga:vidix or -vo x11:vidix works fine for me'
nick
parents:
4658
diff
changeset
|
509 return 0; |
4352 | 510 } |
511 | |
4596 | 512 static uint32_t control(uint32_t request, void *data, ...) |
4352 | 513 { |
4592
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4448
diff
changeset
|
514 switch (request) { |
10757
3aea64e0d6d9
Avoid flickering during resizes. Keep video contents even when paused. Fix by Tomas Simonaitis <haden@homelan.lt>
mosu
parents:
10138
diff
changeset
|
515 case VOCTRL_PAUSE: return (int_pause=1); |
3aea64e0d6d9
Avoid flickering during resizes. Keep video contents even when paused. Fix by Tomas Simonaitis <haden@homelan.lt>
mosu
parents:
10138
diff
changeset
|
516 case VOCTRL_RESUME: return (int_pause=0); |
4592
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4448
diff
changeset
|
517 case VOCTRL_QUERY_FORMAT: |
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4448
diff
changeset
|
518 return query_format(*((uint32_t*)data)); |
13843 | 519 case VOCTRL_GUISUPPORT: |
520 return VO_TRUE; | |
11542 | 521 case VOCTRL_ONTOP: |
522 vo_x11_ontop(); | |
523 return VO_TRUE; | |
6095 | 524 case VOCTRL_FULLSCREEN: |
525 vo_x11_fullscreen(); | |
526 return VO_TRUE; | |
13601 | 527 case VOCTRL_GET_PANSCAN: |
528 if (!use_aspect) return VO_NOTIMPL; | |
529 return VO_TRUE; | |
530 case VOCTRL_SET_PANSCAN: | |
531 if (!use_aspect) return VO_NOTIMPL; | |
532 resize (vo_dwidth, vo_dheight); | |
533 return VO_TRUE; | |
4592
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4448
diff
changeset
|
534 } |
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4448
diff
changeset
|
535 return VO_NOTIMPL; |
4352 | 536 } |