av_sub: Set size correctly for decoded text subs
[mplayer/glamo.git] / libvo / vo_gl.c
blob442ad9f1475927ff77050998ad81ba0894de9bdf
1 /*
2 * This file is part of MPlayer.
4 * MPlayer is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * MPlayer is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 * You can alternatively redistribute this file and/or
19 * modify it under the terms of the GNU Lesser General Public
20 * License as published by the Free Software Foundation; either
21 * version 2.1 of the License, or (at your option) any later version.
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <string.h>
27 #include <math.h>
29 #include "config.h"
30 #include "mp_msg.h"
31 #include "subopt-helper.h"
32 #include "video_out.h"
33 #include "video_out_internal.h"
34 #include "font_load.h"
35 #include "sub.h"
37 #include "gl_common.h"
38 #include "aspect.h"
39 #include "fastmemcpy.h"
40 #include "ass_mp.h"
42 #ifdef CONFIG_GL_SDL
43 #ifdef CONFIG_SDL_SDL_H
44 #include <SDL/SDL.h>
45 #else
46 #include <SDL.h>
47 #endif
48 #endif
50 static const vo_info_t info =
52 "OpenGL",
53 "gl",
54 "Reimar Doeffinger <Reimar.Doeffinger@gmx.de>",
58 const LIBVO_EXTERN(gl)
61 static const vo_info_t info_nosw =
63 "OpenGL no software rendering",
64 "gl_nosw",
65 "Reimar Doeffinger <Reimar.Doeffinger@gmx.de>",
68 static int preinit_nosw(const char *arg);
69 const struct vo_driver video_out_gl_nosw =
71 .is_new = 0,
72 .info = &info_nosw,
73 .preinit = old_vo_preinit,
74 .config = old_vo_config,
75 .control = old_vo_control,
76 .draw_slice = old_vo_draw_slice,
77 .draw_osd = old_vo_draw_osd,
78 .flip_page = old_vo_flip_page,
79 .check_events = old_vo_check_events,
80 .uninit = old_vo_uninit,
81 .old_functions = &(struct vo_old_functions){
82 preinit_nosw,
83 config,
84 control,
85 draw_frame,
86 draw_slice,
87 draw_osd,
88 flip_page,
89 check_events,
90 uninit,
94 static MPGLContext glctx;
96 static int use_osd;
97 static int scaled_osd;
98 //! How many parts the OSD may consist of at most
99 #define MAX_OSD_PARTS 20
100 //! Textures for OSD
101 static GLuint osdtex[MAX_OSD_PARTS];
102 #ifndef FAST_OSD
103 //! Alpha textures for OSD
104 static GLuint osdatex[MAX_OSD_PARTS];
105 #endif
106 static GLuint *eosdtex;
107 #define LARGE_EOSD_TEX_SIZE 512
108 #define TINYTEX_SIZE 16
109 #define TINYTEX_COLS (LARGE_EOSD_TEX_SIZE/TINYTEX_SIZE)
110 #define TINYTEX_MAX (TINYTEX_COLS*TINYTEX_COLS)
111 #define SMALLTEX_SIZE 32
112 #define SMALLTEX_COLS (LARGE_EOSD_TEX_SIZE/SMALLTEX_SIZE)
113 #define SMALLTEX_MAX (SMALLTEX_COLS*SMALLTEX_COLS)
114 static GLuint largeeosdtex[2];
115 //! Display lists that draw the OSD parts
116 static GLuint osdDispList[MAX_OSD_PARTS];
117 #ifndef FAST_OSD
118 static GLuint osdaDispList[MAX_OSD_PARTS];
119 #endif
120 static GLuint eosdDispList;
121 //! How many parts the OSD currently consists of
122 static int osdtexCnt;
123 static int eosdtexCnt;
124 static int osd_color;
126 static int use_aspect;
127 static int use_ycbcr;
128 #define MASK_ALL_YUV (~(1 << YUV_CONVERSION_NONE))
129 #define MASK_NOT_COMBINERS (~((1 << YUV_CONVERSION_NONE) | (1 << YUV_CONVERSION_COMBINERS)))
130 #define MASK_GAMMA_SUPPORT (MASK_NOT_COMBINERS & ~(1 << YUV_CONVERSION_FRAGMENT))
131 static int use_yuv;
132 static int colorspace;
133 static int levelconv;
134 static int is_yuv;
135 static int lscale;
136 static int cscale;
137 static float filter_strength;
138 static int yuvconvtype;
139 static int use_rectangle;
140 static int err_shown;
141 static uint32_t image_width;
142 static uint32_t image_height;
143 static uint32_t image_format;
144 static int many_fmts;
145 static int ati_hack;
146 static int force_pbo;
147 static int mesa_buffer;
148 static int use_glFinish;
149 static int swap_interval;
150 static GLenum gl_target;
151 static GLint gl_texfmt;
152 static GLenum gl_format;
153 static GLenum gl_type;
154 static GLuint gl_buffer;
155 static GLuint gl_buffer_uv[2];
156 static int gl_buffersize;
157 static int gl_buffersize_uv;
158 static void *gl_bufferptr;
159 static void *gl_bufferptr_uv[2];
160 static int mesa_buffersize;
161 static void *mesa_bufferptr;
162 static GLuint fragprog;
163 static GLuint default_texs[22];
164 static char *custom_prog;
165 static char *custom_tex;
166 static int custom_tlin;
167 static int custom_trect;
168 static int mipmap_gen;
169 static int stereo_mode;
171 static int int_pause;
172 static int eq_bri = 0;
173 static int eq_cont = 0;
174 static int eq_sat = 0;
175 static int eq_hue = 0;
176 static int eq_rgamma = 0;
177 static int eq_ggamma = 0;
178 static int eq_bgamma = 0;
180 static int texture_width;
181 static int texture_height;
182 static int mpi_flipped;
183 static int vo_flipped;
184 static int ass_border_x, ass_border_y;
186 static unsigned int slice_height = 1;
188 static void redraw(void);
190 static void resize(int x,int y){
191 mp_msg(MSGT_VO, MSGL_V, "[gl] Resize: %dx%d\n",x,y);
192 if (WinID >= 0) {
193 int left = 0, top = 0, w = x, h = y;
194 geometry(&left, &top, &w, &h, vo_dwidth, vo_dheight);
195 top = y - h - top;
196 mpglViewport(left, top, w, h);
197 } else
198 mpglViewport( 0, 0, x, y );
200 mpglMatrixMode(GL_PROJECTION);
201 mpglLoadIdentity();
202 ass_border_x = ass_border_y = 0;
203 if (aspect_scaling() && use_aspect) {
204 int new_w, new_h;
205 GLdouble scale_x, scale_y;
206 aspect(&new_w, &new_h, A_WINZOOM);
207 panscan_calc_windowed();
208 new_w += vo_panscan_x;
209 new_h += vo_panscan_y;
210 scale_x = (GLdouble)new_w / (GLdouble)x;
211 scale_y = (GLdouble)new_h / (GLdouble)y;
212 mpglScaled(scale_x, scale_y, 1);
213 ass_border_x = (vo_dwidth - new_w) / 2;
214 ass_border_y = (vo_dheight - new_h) / 2;
216 mpglOrtho(0, image_width, image_height, 0, -1,1);
218 mpglMatrixMode(GL_MODELVIEW);
219 mpglLoadIdentity();
221 if (!scaled_osd) {
222 #ifdef CONFIG_FREETYPE
223 // adjust font size to display size
224 force_load_font = 1;
225 #endif
226 vo_osd_changed(OSDTYPE_OSD);
228 mpglClear(GL_COLOR_BUFFER_BIT);
229 redraw();
232 static void texSize(int w, int h, int *texw, int *texh) {
233 if (use_rectangle) {
234 *texw = w; *texh = h;
235 } else {
236 *texw = 32;
237 while (*texw < w)
238 *texw *= 2;
239 *texh = 32;
240 while (*texh < h)
241 *texh *= 2;
243 if (mesa_buffer) *texw = (*texw + 63) & ~63;
244 else if (ati_hack) *texw = (*texw + 511) & ~511;
247 //! maximum size of custom fragment program
248 #define MAX_CUSTOM_PROG_SIZE (1024 * 1024)
249 static void update_yuvconv(void) {
250 int xs, ys;
251 float bri = eq_bri / 100.0;
252 float cont = (eq_cont + 100) / 100.0;
253 float hue = eq_hue / 100.0 * 3.1415927;
254 float sat = (eq_sat + 100) / 100.0;
255 float rgamma = exp(log(8.0) * eq_rgamma / 100.0);
256 float ggamma = exp(log(8.0) * eq_ggamma / 100.0);
257 float bgamma = exp(log(8.0) * eq_bgamma / 100.0);
258 gl_conversion_params_t params = {gl_target, yuvconvtype,
259 {colorspace, levelconv, bri, cont, hue, sat, rgamma, ggamma, bgamma},
260 texture_width, texture_height, 0, 0, filter_strength};
261 mp_get_chroma_shift(image_format, &xs, &ys);
262 params.chrom_texw = params.texw >> xs;
263 params.chrom_texh = params.texh >> ys;
264 glSetupYUVConversion(&params);
265 if (custom_prog) {
266 FILE *f = fopen(custom_prog, "rb");
267 if (!f) {
268 mp_msg(MSGT_VO, MSGL_WARN,
269 "[gl] Could not read customprog %s\n", custom_prog);
270 } else {
271 char *prog = calloc(1, MAX_CUSTOM_PROG_SIZE + 1);
272 fread(prog, 1, MAX_CUSTOM_PROG_SIZE, f);
273 fclose(f);
274 loadGPUProgram(GL_FRAGMENT_PROGRAM, prog);
275 free(prog);
277 mpglProgramEnvParameter4f(GL_FRAGMENT_PROGRAM, 0,
278 1.0 / texture_width, 1.0 / texture_height,
279 texture_width, texture_height);
281 if (custom_tex) {
282 FILE *f = fopen(custom_tex, "rb");
283 if (!f) {
284 mp_msg(MSGT_VO, MSGL_WARN,
285 "[gl] Could not read customtex %s\n", custom_tex);
286 } else {
287 int width, height, maxval;
288 mpglActiveTexture(GL_TEXTURE3);
289 if (glCreatePPMTex(custom_trect?GL_TEXTURE_RECTANGLE:GL_TEXTURE_2D, 0,
290 custom_tlin?GL_LINEAR:GL_NEAREST,
291 f, &width, &height, &maxval)) {
292 mpglProgramEnvParameter4f(GL_FRAGMENT_PROGRAM, 1,
293 1.0 / width, 1.0 / height, width, height);
294 } else
295 mp_msg(MSGT_VO, MSGL_WARN,
296 "[gl] Error parsing customtex %s\n", custom_tex);
297 fclose(f);
298 mpglActiveTexture(GL_TEXTURE0);
304 * \brief remove all OSD textures and display-lists, thus clearing it.
306 static void clearOSD(void) {
307 int i;
308 if (!osdtexCnt)
309 return;
310 mpglDeleteTextures(osdtexCnt, osdtex);
311 #ifndef FAST_OSD
312 mpglDeleteTextures(osdtexCnt, osdatex);
313 for (i = 0; i < osdtexCnt; i++)
314 mpglDeleteLists(osdaDispList[i], 1);
315 #endif
316 for (i = 0; i < osdtexCnt; i++)
317 mpglDeleteLists(osdDispList[i], 1);
318 osdtexCnt = 0;
322 * \brief remove textures, display list and free memory used by EOSD
324 static void clearEOSD(void) {
325 if (eosdDispList)
326 mpglDeleteLists(eosdDispList, 1);
327 eosdDispList = 0;
328 if (eosdtexCnt)
329 mpglDeleteTextures(eosdtexCnt, eosdtex);
330 eosdtexCnt = 0;
331 free(eosdtex);
332 eosdtex = NULL;
335 static inline int is_tinytex(ASS_Image *i, int tinytexcur) {
336 return i->w < TINYTEX_SIZE && i->h < TINYTEX_SIZE && tinytexcur < TINYTEX_MAX;
339 static inline int is_smalltex(ASS_Image *i, int smalltexcur) {
340 return i->w < SMALLTEX_SIZE && i->h < SMALLTEX_SIZE && smalltexcur < SMALLTEX_MAX;
343 static inline void tinytex_pos(int tinytexcur, int *x, int *y) {
344 *x = (tinytexcur % TINYTEX_COLS) * TINYTEX_SIZE;
345 *y = (tinytexcur / TINYTEX_COLS) * TINYTEX_SIZE;
348 static inline void smalltex_pos(int smalltexcur, int *x, int *y) {
349 *x = (smalltexcur % SMALLTEX_COLS) * SMALLTEX_SIZE;
350 *y = (smalltexcur / SMALLTEX_COLS) * SMALLTEX_SIZE;
354 * \brief construct display list from ass image list
355 * \param img image list to create OSD from.
356 * A value of NULL has the same effect as clearEOSD()
358 static void genEOSD(mp_eosd_images_t *imgs) {
359 int sx, sy;
360 int tinytexcur = 0;
361 int smalltexcur = 0;
362 GLuint *curtex;
363 GLint scale_type = scaled_osd ? GL_LINEAR : GL_NEAREST;
364 ASS_Image *img = imgs->imgs;
365 ASS_Image *i;
367 if (imgs->changed == 0) // there are elements, but they are unchanged
368 return;
369 if (img && imgs->changed == 1) // there are elements, but they just moved
370 goto skip_upload;
372 clearEOSD();
373 if (!img)
374 return;
375 if (!largeeosdtex[0]) {
376 mpglGenTextures(2, largeeosdtex);
377 mpglBindTexture(gl_target, largeeosdtex[0]);
378 glCreateClearTex(gl_target, GL_ALPHA, GL_ALPHA, GL_UNSIGNED_BYTE, scale_type, LARGE_EOSD_TEX_SIZE, LARGE_EOSD_TEX_SIZE, 0);
379 mpglBindTexture(gl_target, largeeosdtex[1]);
380 glCreateClearTex(gl_target, GL_ALPHA, GL_ALPHA, GL_UNSIGNED_BYTE, scale_type, LARGE_EOSD_TEX_SIZE, LARGE_EOSD_TEX_SIZE, 0);
382 for (i = img; i; i = i->next)
384 if (i->w <= 0 || i->h <= 0 || i->stride < i->w)
385 continue;
386 if (is_tinytex(i, tinytexcur))
387 tinytexcur++;
388 else if (is_smalltex(i, smalltexcur))
389 smalltexcur++;
390 else
391 eosdtexCnt++;
393 mp_msg(MSGT_VO, MSGL_DBG2, "EOSD counts (tiny, small, all): %i, %i, %i\n",
394 tinytexcur, smalltexcur, eosdtexCnt);
395 if (eosdtexCnt) {
396 eosdtex = calloc(eosdtexCnt, sizeof(GLuint));
397 mpglGenTextures(eosdtexCnt, eosdtex);
399 tinytexcur = smalltexcur = 0;
400 for (i = img, curtex = eosdtex; i; i = i->next) {
401 int x = 0, y = 0;
402 if (i->w <= 0 || i->h <= 0 || i->stride < i->w) {
403 mp_msg(MSGT_VO, MSGL_V, "Invalid dimensions OSD for part!\n");
404 continue;
406 if (is_tinytex(i, tinytexcur)) {
407 tinytex_pos(tinytexcur, &x, &y);
408 mpglBindTexture(gl_target, largeeosdtex[0]);
409 tinytexcur++;
410 } else if (is_smalltex(i, smalltexcur)) {
411 smalltex_pos(smalltexcur, &x, &y);
412 mpglBindTexture(gl_target, largeeosdtex[1]);
413 smalltexcur++;
414 } else {
415 texSize(i->w, i->h, &sx, &sy);
416 mpglBindTexture(gl_target, *curtex++);
417 glCreateClearTex(gl_target, GL_ALPHA, GL_ALPHA, GL_UNSIGNED_BYTE, scale_type, sx, sy, 0);
419 glUploadTex(gl_target, GL_ALPHA, GL_UNSIGNED_BYTE, i->bitmap, i->stride,
420 x, y, i->w, i->h, 0);
422 eosdDispList = mpglGenLists(1);
423 skip_upload:
424 mpglNewList(eosdDispList, GL_COMPILE);
425 tinytexcur = smalltexcur = 0;
426 for (i = img, curtex = eosdtex; i; i = i->next) {
427 int x = 0, y = 0;
428 if (i->w <= 0 || i->h <= 0 || i->stride < i->w)
429 continue;
430 mpglColor4ub(i->color >> 24, (i->color >> 16) & 0xff, (i->color >> 8) & 0xff, 255 - (i->color & 0xff));
431 if (is_tinytex(i, tinytexcur)) {
432 tinytex_pos(tinytexcur, &x, &y);
433 sx = sy = LARGE_EOSD_TEX_SIZE;
434 mpglBindTexture(gl_target, largeeosdtex[0]);
435 tinytexcur++;
436 } else if (is_smalltex(i, smalltexcur)) {
437 smalltex_pos(smalltexcur, &x, &y);
438 sx = sy = LARGE_EOSD_TEX_SIZE;
439 mpglBindTexture(gl_target, largeeosdtex[1]);
440 smalltexcur++;
441 } else {
442 texSize(i->w, i->h, &sx, &sy);
443 mpglBindTexture(gl_target, *curtex++);
445 glDrawTex(i->dst_x, i->dst_y, i->w, i->h, x, y, i->w, i->h, sx, sy, use_rectangle == 1, 0, 0);
447 mpglEndList();
448 mpglBindTexture(gl_target, 0);
452 * \brief uninitialize OpenGL context, freeing textures, buffers etc.
454 static void uninitGl(void) {
455 int i = 0;
456 if (mpglDeletePrograms && fragprog)
457 mpglDeletePrograms(1, &fragprog);
458 fragprog = 0;
459 while (default_texs[i] != 0)
460 i++;
461 if (i)
462 mpglDeleteTextures(i, default_texs);
463 default_texs[0] = 0;
464 clearOSD();
465 clearEOSD();
466 if (largeeosdtex[0])
467 mpglDeleteTextures(2, largeeosdtex);
468 largeeosdtex[0] = 0;
469 if (mpglDeleteBuffers && gl_buffer)
470 mpglDeleteBuffers(1, &gl_buffer);
471 gl_buffer = 0; gl_buffersize = 0;
472 gl_bufferptr = NULL;
473 if (mpglDeleteBuffers && gl_buffer_uv[0])
474 mpglDeleteBuffers(2, gl_buffer_uv);
475 gl_buffer_uv[0] = gl_buffer_uv[1] = 0; gl_buffersize_uv = 0;
476 gl_bufferptr_uv[0] = gl_bufferptr_uv[1] = 0;
477 #ifdef CONFIG_GL_X11
478 if (mesa_bufferptr)
479 mpglFreeMemoryMESA(mDisplay, mScreen, mesa_bufferptr);
480 #endif
481 mesa_bufferptr = NULL;
482 err_shown = 0;
485 static int isSoftwareGl(void)
487 const char *renderer = mpglGetString(GL_RENDERER);
488 return !renderer || strcmp(renderer, "Software Rasterizer") == 0;
491 static void autodetectGlExtensions(void) {
492 const char *extensions = mpglGetString(GL_EXTENSIONS);
493 const char *vendor = mpglGetString(GL_VENDOR);
494 const char *version = mpglGetString(GL_VERSION);
495 const char *renderer = mpglGetString(GL_RENDERER);
496 int is_ati = vendor && strstr(vendor, "ATI") != NULL;
497 int ati_broken_pbo = 0;
498 mp_msg(MSGT_VO, MSGL_V, "[gl] Running on OpenGL '%s' by '%s', version '%s'\n", renderer, vendor, version);
499 if (is_ati && strncmp(version, "2.1.", 4) == 0) {
500 int ver = atoi(version + 4);
501 mp_msg(MSGT_VO, MSGL_V, "[gl] Detected ATI driver version: %i\n", ver);
502 ati_broken_pbo = ver && ver < 8395;
504 if (ati_hack == -1) ati_hack = ati_broken_pbo;
505 if (force_pbo == -1) {
506 force_pbo = 0;
507 if (extensions && strstr(extensions, "_pixel_buffer_object"))
508 force_pbo = is_ati;
510 if (use_rectangle == -1) {
511 use_rectangle = 0;
512 if (extensions) {
513 // if (strstr(extensions, "_texture_non_power_of_two"))
514 if (strstr(extensions, "_texture_rectangle"))
515 use_rectangle = renderer && strstr(renderer, "Mesa DRI R200") ? 1 : 0;
518 if (use_osd == -1)
519 use_osd = mpglBindTexture != NULL;
520 if (use_yuv == -1)
521 use_yuv = glAutodetectYUVConversion();
522 if (is_ati && (lscale == 1 || lscale == 2 || cscale == 1 || cscale == 2))
523 mp_msg(MSGT_VO, MSGL_WARN, "[gl] Selected scaling mode may be broken on ATI cards.\n"
524 "Tell _them_ to fix GL_REPEAT if you have issues.\n");
525 mp_msg(MSGT_VO, MSGL_V, "[gl] Settings after autodetection: ati-hack = %i, force-pbo = %i, rectangle = %i, yuv = %i\n",
526 ati_hack, force_pbo, use_rectangle, use_yuv);
530 * \brief Initialize a (new or reused) OpenGL context.
531 * set global gl-related variables to their default values
533 static int initGl(uint32_t d_width, uint32_t d_height) {
534 int scale_type = mipmap_gen ? GL_LINEAR_MIPMAP_NEAREST : GL_LINEAR;
535 autodetectGlExtensions();
536 gl_target = use_rectangle == 1 ? GL_TEXTURE_RECTANGLE : GL_TEXTURE_2D;
537 yuvconvtype = use_yuv | lscale << YUV_LUM_SCALER_SHIFT | cscale << YUV_CHROM_SCALER_SHIFT;
539 texSize(image_width, image_height, &texture_width, &texture_height);
541 mpglDisable(GL_BLEND);
542 mpglDisable(GL_DEPTH_TEST);
543 mpglDepthMask(GL_FALSE);
544 mpglDisable(GL_CULL_FACE);
545 mpglEnable(gl_target);
546 mpglDrawBuffer(vo_doublebuffering?GL_BACK:GL_FRONT);
547 mpglTexEnvi(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE);
549 mp_msg(MSGT_VO, MSGL_V, "[gl] Creating %dx%d texture...\n",
550 texture_width, texture_height);
552 if (is_yuv) {
553 int i;
554 int xs, ys;
555 mp_get_chroma_shift(image_format, &xs, &ys);
556 mpglGenTextures(21, default_texs);
557 default_texs[21] = 0;
558 for (i = 0; i < 7; i++) {
559 mpglActiveTexture(GL_TEXTURE1 + i);
560 mpglBindTexture(GL_TEXTURE_2D, default_texs[i]);
561 mpglBindTexture(GL_TEXTURE_RECTANGLE, default_texs[i + 7]);
562 mpglBindTexture(GL_TEXTURE_3D, default_texs[i + 14]);
564 mpglActiveTexture(GL_TEXTURE1);
565 glCreateClearTex(gl_target, gl_texfmt, gl_format, gl_type, scale_type,
566 texture_width >> xs, texture_height >> ys, 128);
567 if (mipmap_gen)
568 mpglTexParameteri(gl_target, GL_GENERATE_MIPMAP, GL_TRUE);
569 mpglActiveTexture(GL_TEXTURE2);
570 glCreateClearTex(gl_target, gl_texfmt, gl_format, gl_type, scale_type,
571 texture_width >> xs, texture_height >> ys, 128);
572 if (mipmap_gen)
573 mpglTexParameteri(gl_target, GL_GENERATE_MIPMAP, GL_TRUE);
574 mpglActiveTexture(GL_TEXTURE0);
575 mpglBindTexture(gl_target, 0);
577 if (is_yuv || custom_prog)
579 if ((MASK_NOT_COMBINERS & (1 << use_yuv)) || custom_prog) {
580 if (!mpglGenPrograms || !mpglBindProgram) {
581 mp_msg(MSGT_VO, MSGL_ERR, "[gl] fragment program functions missing!\n");
582 } else {
583 mpglGenPrograms(1, &fragprog);
584 mpglBindProgram(GL_FRAGMENT_PROGRAM, fragprog);
587 update_yuvconv();
589 glCreateClearTex(gl_target, gl_texfmt, gl_format, gl_type, scale_type,
590 texture_width, texture_height, 0);
591 if (mipmap_gen)
592 mpglTexParameteri(gl_target, GL_GENERATE_MIPMAP, GL_TRUE);
594 resize(d_width, d_height);
596 mpglClearColor( 0.0f,0.0f,0.0f,0.0f );
597 mpglClear( GL_COLOR_BUFFER_BIT );
598 if (mpglSwapInterval && swap_interval >= 0)
599 mpglSwapInterval(swap_interval);
600 return 1;
603 static int create_window(uint32_t d_width, uint32_t d_height, uint32_t flags, const char *title)
605 #ifdef CONFIG_GL_WIN32
606 if (glctx.type == GLTYPE_W32 && !vo_w32_config(d_width, d_height, flags))
607 return -1;
608 #endif
609 #ifdef CONFIG_GL_X11
610 if (glctx.type == GLTYPE_X11) {
611 static int default_glx_attribs[] = {
612 GLX_RGBA, GLX_RED_SIZE, 1, GLX_GREEN_SIZE, 1, GLX_BLUE_SIZE, 1,
613 GLX_DOUBLEBUFFER, None
615 static int stereo_glx_attribs[] = {
616 GLX_RGBA, GLX_RED_SIZE, 1, GLX_GREEN_SIZE, 1, GLX_BLUE_SIZE, 1,
617 GLX_DOUBLEBUFFER, GLX_STEREO, None
619 XVisualInfo *vinfo = NULL;
620 if (stereo_mode == GL_3D_QUADBUFFER) {
621 vinfo = glXChooseVisual(mDisplay, mScreen, stereo_glx_attribs);
622 if (!vinfo)
623 mp_msg(MSGT_VO, MSGL_ERR, "[gl] Could not find a stereo visual, "
624 "3D will probably not work!\n");
626 if (!vinfo)
627 vinfo = glXChooseVisual(mDisplay, mScreen, default_glx_attribs);
628 if (!vinfo) {
629 mp_msg(MSGT_VO, MSGL_ERR, "[gl] no GLX support present\n");
630 return -1;
632 mp_msg(MSGT_VO, MSGL_V, "[gl] GLX chose visual with ID 0x%x\n", (int)vinfo->visualid);
634 vo_x11_create_vo_window(vinfo, vo_dx, vo_dy, d_width, d_height, flags,
635 XCreateColormap(mDisplay, mRootWin, vinfo->visual, AllocNone),
636 "gl", title);
638 #endif
639 #ifdef CONFIG_GL_SDL
640 if (glctx.type == GLTYPE_SDL) {
641 SDL_WM_SetCaption(title, NULL);
642 vo_dwidth = d_width;
643 vo_dheight = d_height;
645 #endif
646 return 0;
649 /* connect to server, create and map window,
650 * allocate colors and (shared) memory
652 static int
653 config(uint32_t width, uint32_t height, uint32_t d_width, uint32_t d_height, uint32_t flags, char *title, uint32_t format)
655 int xs, ys;
656 image_height = height;
657 image_width = width;
658 image_format = format;
659 is_yuv = mp_get_chroma_shift(image_format, &xs, &ys) > 0;
660 is_yuv |= (xs << 8) | (ys << 16);
661 glFindFormat(format, NULL, &gl_texfmt, &gl_format, &gl_type);
663 vo_flipped = !!(flags & VOFLAG_FLIPPING);
665 if (create_window(d_width, d_height, flags, title) < 0)
666 return -1;
668 if (vo_config_count)
669 uninitGl();
670 if (glctx.setGlWindow(&glctx) == SET_WINDOW_FAILED)
671 return -1;
672 if (mesa_buffer && !mpglAllocateMemoryMESA) {
673 mp_msg(MSGT_VO, MSGL_ERR, "Can not enable mesa-buffer because AllocateMemoryMESA was not found\n");
674 mesa_buffer = 0;
676 initGl(vo_dwidth, vo_dheight);
678 return 0;
681 static void check_events(void)
683 int e=glctx.check_events();
684 if(e&VO_EVENT_REINIT) {
685 uninitGl();
686 initGl(vo_dwidth, vo_dheight);
688 if(e&VO_EVENT_RESIZE) resize(vo_dwidth,vo_dheight);
689 if(e&VO_EVENT_EXPOSE && int_pause) redraw();
693 * Creates the textures and the display list needed for displaying
694 * an OSD part.
695 * Callback function for vo_draw_text().
697 static void create_osd_texture(int x0, int y0, int w, int h,
698 unsigned char *src, unsigned char *srca,
699 int stride)
701 // initialize to 8 to avoid special-casing on alignment
702 int sx = 8, sy = 8;
703 GLint scale_type = scaled_osd ? GL_LINEAR : GL_NEAREST;
705 if (w <= 0 || h <= 0 || stride < w) {
706 mp_msg(MSGT_VO, MSGL_V, "Invalid dimensions OSD for part!\n");
707 return;
709 texSize(w, h, &sx, &sy);
711 if (osdtexCnt >= MAX_OSD_PARTS) {
712 mp_msg(MSGT_VO, MSGL_ERR, "Too many OSD parts, contact the developers!\n");
713 return;
716 // create Textures for OSD part
717 mpglGenTextures(1, &osdtex[osdtexCnt]);
718 mpglBindTexture(gl_target, osdtex[osdtexCnt]);
719 glCreateClearTex(gl_target, GL_LUMINANCE, GL_LUMINANCE, GL_UNSIGNED_BYTE, scale_type, sx, sy, 0);
720 glUploadTex(gl_target, GL_LUMINANCE, GL_UNSIGNED_BYTE, src, stride,
721 0, 0, w, h, 0);
723 #ifndef FAST_OSD
724 mpglGenTextures(1, &osdatex[osdtexCnt]);
725 mpglBindTexture(gl_target, osdatex[osdtexCnt]);
726 glCreateClearTex(gl_target, GL_ALPHA, GL_ALPHA, GL_UNSIGNED_BYTE, scale_type, sx, sy, 0);
728 int i;
729 char *tmp = malloc(stride * h);
730 // convert alpha from weird MPlayer scale.
731 // in-place is not possible since it is reused for future OSDs
732 for (i = h * stride - 1; i >= 0; i--)
733 tmp[i] = -srca[i];
734 glUploadTex(gl_target, GL_ALPHA, GL_UNSIGNED_BYTE, tmp, stride,
735 0, 0, w, h, 0);
736 free(tmp);
738 #endif
740 mpglBindTexture(gl_target, 0);
742 // Create a list for rendering this OSD part
743 #ifndef FAST_OSD
744 osdaDispList[osdtexCnt] = mpglGenLists(1);
745 mpglNewList(osdaDispList[osdtexCnt], GL_COMPILE);
746 // render alpha
747 mpglBindTexture(gl_target, osdatex[osdtexCnt]);
748 glDrawTex(x0, y0, w, h, 0, 0, w, h, sx, sy, use_rectangle == 1, 0, 0);
749 mpglEndList();
750 #endif
751 osdDispList[osdtexCnt] = mpglGenLists(1);
752 mpglNewList(osdDispList[osdtexCnt], GL_COMPILE);
753 // render OSD
754 mpglBindTexture(gl_target, osdtex[osdtexCnt]);
755 glDrawTex(x0, y0, w, h, 0, 0, w, h, sx, sy, use_rectangle == 1, 0, 0);
756 mpglEndList();
758 osdtexCnt++;
762 * \param type bit 0: render OSD, bit 1: render EOSD
764 static void do_render_osd(int type) {
765 if (((type & 1) && osdtexCnt > 0) || ((type & 2) && eosdDispList)) {
766 // set special rendering parameters
767 if (!scaled_osd) {
768 mpglMatrixMode(GL_PROJECTION);
769 mpglPushMatrix();
770 mpglLoadIdentity();
771 mpglOrtho(0, vo_dwidth, vo_dheight, 0, -1, 1);
773 mpglEnable(GL_BLEND);
774 if ((type & 2) && eosdDispList) {
775 mpglBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
776 mpglCallList(eosdDispList);
778 if ((type & 1) && osdtexCnt > 0) {
779 mpglColor4ub((osd_color >> 16) & 0xff, (osd_color >> 8) & 0xff, osd_color & 0xff, 0xff - (osd_color >> 24));
780 // draw OSD
781 #ifndef FAST_OSD
782 mpglBlendFunc(GL_ZERO, GL_ONE_MINUS_SRC_ALPHA);
783 mpglCallLists(osdtexCnt, GL_UNSIGNED_INT, osdaDispList);
784 #endif
785 mpglBlendFunc(GL_SRC_ALPHA, GL_ONE);
786 mpglCallLists(osdtexCnt, GL_UNSIGNED_INT, osdDispList);
788 // set rendering parameters back to defaults
789 mpglDisable(GL_BLEND);
790 if (!scaled_osd)
791 mpglPopMatrix();
792 mpglBindTexture(gl_target, 0);
796 static void draw_osd(void)
798 if (!use_osd) return;
799 if (vo_osd_changed(0)) {
800 int osd_h, osd_w;
801 clearOSD();
802 osd_w = scaled_osd ? image_width : vo_dwidth;
803 osd_h = scaled_osd ? image_height : vo_dheight;
804 vo_draw_text_ext(osd_w, osd_h, ass_border_x, ass_border_y, ass_border_x, ass_border_y,
805 image_width, image_height, create_osd_texture);
807 if (vo_doublebuffering) do_render_osd(1);
810 static void do_render(void) {
811 // Enable(GL_TEXTURE_2D);
812 // BindTexture(GL_TEXTURE_2D, texture_id);
814 mpglColor3f(1,1,1);
815 if (is_yuv || custom_prog)
816 glEnableYUVConversion(gl_target, yuvconvtype);
817 if (stereo_mode) {
818 glEnable3DLeft(stereo_mode);
819 glDrawTex(0, 0, image_width, image_height,
820 0, 0, image_width >> 1, image_height,
821 texture_width, texture_height,
822 use_rectangle == 1, is_yuv,
823 mpi_flipped ^ vo_flipped);
824 glEnable3DRight(stereo_mode);
825 glDrawTex(0, 0, image_width, image_height,
826 image_width >> 1, 0, image_width >> 1, image_height,
827 texture_width, texture_height,
828 use_rectangle == 1, is_yuv,
829 mpi_flipped ^ vo_flipped);
830 glDisable3D(stereo_mode);
831 } else {
832 glDrawTex(0, 0, image_width, image_height,
833 0, 0, image_width, image_height,
834 texture_width, texture_height,
835 use_rectangle == 1, is_yuv,
836 mpi_flipped ^ vo_flipped);
838 if (is_yuv || custom_prog)
839 glDisableYUVConversion(gl_target, yuvconvtype);
842 static void flip_page(void) {
843 if (vo_doublebuffering) {
844 if (use_glFinish) mpglFinish();
845 glctx.swapGlBuffers(&glctx);
846 if (aspect_scaling() && use_aspect)
847 mpglClear(GL_COLOR_BUFFER_BIT);
848 } else {
849 do_render();
850 do_render_osd(3);
851 if (use_glFinish) mpglFinish();
852 else mpglFlush();
856 static void redraw(void) {
857 if (vo_doublebuffering) { do_render(); do_render_osd(3); }
858 flip_page();
861 static int draw_slice(uint8_t *src[], int stride[], int w,int h,int x,int y)
863 mpi_flipped = stride[0] < 0;
864 glUploadTex(gl_target, gl_format, gl_type, src[0], stride[0],
865 x, y, w, h, slice_height);
866 if (is_yuv) {
867 int xs, ys;
868 mp_get_chroma_shift(image_format, &xs, &ys);
869 mpglActiveTexture(GL_TEXTURE1);
870 glUploadTex(gl_target, gl_format, gl_type, src[1], stride[1],
871 x >> xs, y >> ys, w >> xs, h >> ys, slice_height);
872 mpglActiveTexture(GL_TEXTURE2);
873 glUploadTex(gl_target, gl_format, gl_type, src[2], stride[2],
874 x >> xs, y >> ys, w >> xs, h >> ys, slice_height);
875 mpglActiveTexture(GL_TEXTURE0);
877 return 0;
880 static uint32_t get_image(mp_image_t *mpi) {
881 int needed_size;
882 if (!mpglGenBuffers || !mpglBindBuffer || !mpglBufferData || !mpglMapBuffer) {
883 if (!err_shown)
884 mp_msg(MSGT_VO, MSGL_ERR, "[gl] extensions missing for dr\n"
885 "Expect a _major_ speed penalty\n");
886 err_shown = 1;
887 return VO_FALSE;
889 if (mpi->flags & MP_IMGFLAG_READABLE) return VO_FALSE;
890 if (mpi->type != MP_IMGTYPE_STATIC && mpi->type != MP_IMGTYPE_TEMP &&
891 (mpi->type != MP_IMGTYPE_NUMBERED || mpi->number))
892 return VO_FALSE;
893 if (mesa_buffer) mpi->width = texture_width;
894 else if (ati_hack) {
895 mpi->width = texture_width;
896 mpi->height = texture_height;
898 mpi->stride[0] = mpi->width * mpi->bpp / 8;
899 needed_size = mpi->stride[0] * mpi->height;
900 if (mesa_buffer) {
901 #ifdef CONFIG_GL_X11
902 if (mesa_bufferptr && needed_size > mesa_buffersize) {
903 mpglFreeMemoryMESA(mDisplay, mScreen, mesa_bufferptr);
904 mesa_bufferptr = NULL;
906 if (!mesa_bufferptr)
907 mesa_bufferptr = mpglAllocateMemoryMESA(mDisplay, mScreen, needed_size, 0, 1.0, 1.0);
908 mesa_buffersize = needed_size;
909 #endif
910 mpi->planes[0] = mesa_bufferptr;
911 } else {
912 if (!gl_buffer)
913 mpglGenBuffers(1, &gl_buffer);
914 mpglBindBuffer(GL_PIXEL_UNPACK_BUFFER, gl_buffer);
915 if (needed_size > gl_buffersize) {
916 gl_buffersize = needed_size;
917 mpglBufferData(GL_PIXEL_UNPACK_BUFFER, gl_buffersize,
918 NULL, GL_DYNAMIC_DRAW);
920 if (!gl_bufferptr)
921 gl_bufferptr = mpglMapBuffer(GL_PIXEL_UNPACK_BUFFER, GL_WRITE_ONLY);
922 mpi->planes[0] = gl_bufferptr;
923 mpglBindBuffer(GL_PIXEL_UNPACK_BUFFER, 0);
925 if (!mpi->planes[0]) {
926 if (!err_shown)
927 mp_msg(MSGT_VO, MSGL_ERR, "[gl] could not acquire buffer for dr\n"
928 "Expect a _major_ speed penalty\n");
929 err_shown = 1;
930 return VO_FALSE;
932 if (is_yuv) {
933 // planar YUV
934 int xs, ys;
935 mp_get_chroma_shift(image_format, &xs, &ys);
936 mpi->flags |= MP_IMGFLAG_COMMON_STRIDE | MP_IMGFLAG_COMMON_PLANE;
937 mpi->stride[0] = mpi->width;
938 mpi->planes[1] = mpi->planes[0] + mpi->stride[0] * mpi->height;
939 mpi->stride[1] = mpi->width >> xs;
940 mpi->planes[2] = mpi->planes[1] + mpi->stride[1] * (mpi->height >> ys);
941 mpi->stride[2] = mpi->width >> xs;
942 if (ati_hack && !mesa_buffer) {
943 mpi->flags &= ~MP_IMGFLAG_COMMON_PLANE;
944 if (!gl_buffer_uv[0]) mpglGenBuffers(2, gl_buffer_uv);
945 if (mpi->stride[1] * mpi->height > gl_buffersize_uv) {
946 mpglBindBuffer(GL_PIXEL_UNPACK_BUFFER, gl_buffer_uv[0]);
947 mpglBufferData(GL_PIXEL_UNPACK_BUFFER, mpi->stride[1] * mpi->height,
948 NULL, GL_DYNAMIC_DRAW);
949 mpglBindBuffer(GL_PIXEL_UNPACK_BUFFER, gl_buffer_uv[1]);
950 mpglBufferData(GL_PIXEL_UNPACK_BUFFER, mpi->stride[1] * mpi->height,
951 NULL, GL_DYNAMIC_DRAW);
952 gl_buffersize_uv = mpi->stride[1] * mpi->height;
954 if (!gl_bufferptr_uv[0]) {
955 mpglBindBuffer(GL_PIXEL_UNPACK_BUFFER, gl_buffer_uv[0]);
956 gl_bufferptr_uv[0] = mpglMapBuffer(GL_PIXEL_UNPACK_BUFFER, GL_WRITE_ONLY);
957 mpglBindBuffer(GL_PIXEL_UNPACK_BUFFER, gl_buffer_uv[1]);
958 gl_bufferptr_uv[1] = mpglMapBuffer(GL_PIXEL_UNPACK_BUFFER, GL_WRITE_ONLY);
960 mpi->planes[1] = gl_bufferptr_uv[0];
961 mpi->planes[2] = gl_bufferptr_uv[1];
964 mpi->flags |= MP_IMGFLAG_DIRECT;
965 return VO_TRUE;
968 static void clear_border(uint8_t *dst, int start, int stride, int height, int full_height, int value) {
969 int right_border = stride - start;
970 int bottom_border = full_height - height;
971 while (height > 0) {
972 memset(dst + start, value, right_border);
973 dst += stride;
974 height--;
976 if (bottom_border > 0)
977 memset(dst, value, stride * bottom_border);
980 static uint32_t draw_image(mp_image_t *mpi) {
981 int slice = slice_height;
982 int stride[3];
983 unsigned char *planes[3];
984 mp_image_t mpi2 = *mpi;
985 int w = mpi->w, h = mpi->h;
986 if (mpi->flags & MP_IMGFLAG_DRAW_CALLBACK)
987 goto skip_upload;
988 mpi2.flags = 0; mpi2.type = MP_IMGTYPE_TEMP;
989 mpi2.width = mpi2.w; mpi2.height = mpi2.h;
990 if (force_pbo && !(mpi->flags & MP_IMGFLAG_DIRECT) && !gl_bufferptr && get_image(&mpi2) == VO_TRUE) {
991 int bpp = is_yuv ? 8 : mpi->bpp;
992 int xs, ys;
993 mp_get_chroma_shift(image_format, &xs, &ys);
994 memcpy_pic(mpi2.planes[0], mpi->planes[0], mpi->w * bpp / 8, mpi->h, mpi2.stride[0], mpi->stride[0]);
995 if (is_yuv) {
996 memcpy_pic(mpi2.planes[1], mpi->planes[1], mpi->w >> xs, mpi->h >> ys, mpi2.stride[1], mpi->stride[1]);
997 memcpy_pic(mpi2.planes[2], mpi->planes[2], mpi->w >> xs, mpi->h >> ys, mpi2.stride[2], mpi->stride[2]);
999 if (ati_hack) { // since we have to do a full upload we need to clear the borders
1000 clear_border(mpi2.planes[0], mpi->w * bpp / 8, mpi2.stride[0], mpi->h, mpi2.height, 0);
1001 if (is_yuv) {
1002 clear_border(mpi2.planes[1], mpi->w >> xs, mpi2.stride[1], mpi->h >> ys, mpi2.height >> ys, 128);
1003 clear_border(mpi2.planes[2], mpi->w >> xs, mpi2.stride[2], mpi->h >> ys, mpi2.height >> ys, 128);
1006 mpi = &mpi2;
1008 stride[0] = mpi->stride[0]; stride[1] = mpi->stride[1]; stride[2] = mpi->stride[2];
1009 planes[0] = mpi->planes[0]; planes[1] = mpi->planes[1]; planes[2] = mpi->planes[2];
1010 mpi_flipped = stride[0] < 0;
1011 if (mpi->flags & MP_IMGFLAG_DIRECT) {
1012 if (mesa_buffer) {
1013 mpglPixelStorei(GL_UNPACK_CLIENT_STORAGE_APPLE, 1);
1014 w = texture_width;
1015 } else {
1016 intptr_t base = (intptr_t)planes[0];
1017 if (ati_hack) { w = texture_width; h = texture_height; }
1018 if (mpi_flipped)
1019 base += (mpi->h - 1) * stride[0];
1020 planes[0] -= base;
1021 planes[1] -= base;
1022 planes[2] -= base;
1023 mpglBindBuffer(GL_PIXEL_UNPACK_BUFFER, gl_buffer);
1024 mpglUnmapBuffer(GL_PIXEL_UNPACK_BUFFER);
1025 gl_bufferptr = NULL;
1026 if (!(mpi->flags & MP_IMGFLAG_COMMON_PLANE))
1027 planes[0] = planes[1] = planes[2] = NULL;
1029 slice = 0; // always "upload" full texture
1031 glUploadTex(gl_target, gl_format, gl_type, planes[0], stride[0],
1032 mpi->x, mpi->y, w, h, slice);
1033 if (is_yuv) {
1034 int xs, ys;
1035 mp_get_chroma_shift(image_format, &xs, &ys);
1036 if ((mpi->flags & MP_IMGFLAG_DIRECT) && !(mpi->flags & MP_IMGFLAG_COMMON_PLANE)) {
1037 mpglBindBuffer(GL_PIXEL_UNPACK_BUFFER, gl_buffer_uv[0]);
1038 mpglUnmapBuffer(GL_PIXEL_UNPACK_BUFFER);
1039 gl_bufferptr_uv[0] = NULL;
1041 mpglActiveTexture(GL_TEXTURE1);
1042 glUploadTex(gl_target, gl_format, gl_type, planes[1], stride[1],
1043 mpi->x >> xs, mpi->y >> ys, w >> xs, h >> ys, slice);
1044 if ((mpi->flags & MP_IMGFLAG_DIRECT) && !(mpi->flags & MP_IMGFLAG_COMMON_PLANE)) {
1045 mpglBindBuffer(GL_PIXEL_UNPACK_BUFFER, gl_buffer_uv[1]);
1046 mpglUnmapBuffer(GL_PIXEL_UNPACK_BUFFER);
1047 gl_bufferptr_uv[1] = NULL;
1049 mpglActiveTexture(GL_TEXTURE2);
1050 glUploadTex(gl_target, gl_format, gl_type, planes[2], stride[2],
1051 mpi->x >> xs, mpi->y >> ys, w >> xs, h >> ys, slice);
1052 mpglActiveTexture(GL_TEXTURE0);
1054 if (mpi->flags & MP_IMGFLAG_DIRECT) {
1055 if (mesa_buffer) mpglPixelStorei(GL_UNPACK_CLIENT_STORAGE_APPLE, 0);
1056 else mpglBindBuffer(GL_PIXEL_UNPACK_BUFFER, 0);
1058 skip_upload:
1059 if (vo_doublebuffering) do_render();
1060 return VO_TRUE;
1063 static int
1064 draw_frame(uint8_t *src[])
1066 return VO_ERROR;
1069 static int
1070 query_format(uint32_t format)
1072 int caps = VFCAP_CSP_SUPPORTED | VFCAP_CSP_SUPPORTED_BY_HW |
1073 VFCAP_FLIP |
1074 VFCAP_HWSCALE_UP | VFCAP_HWSCALE_DOWN | VFCAP_ACCEPT_STRIDE;
1075 if (use_osd)
1076 caps |= VFCAP_OSD | VFCAP_EOSD | (scaled_osd ? 0 : VFCAP_EOSD_UNSCALED);
1077 if (format == IMGFMT_RGB24 || format == IMGFMT_RGBA)
1078 return caps;
1079 if (use_yuv && mp_get_chroma_shift(format, NULL, NULL) &&
1080 (IMGFMT_IS_YUVP16_NE(format) || !IMGFMT_IS_YUVP16(format)))
1081 return caps;
1082 // HACK, otherwise we get only b&w with some filters (e.g. -vf eq)
1083 // ideally MPlayer should be fixed instead not to use Y800 when it has the choice
1084 if (!use_yuv && (format == IMGFMT_Y8 || format == IMGFMT_Y800))
1085 return 0;
1086 if (!use_ycbcr && (format == IMGFMT_UYVY || format == IMGFMT_YUY2))
1087 return 0;
1088 if (many_fmts &&
1089 glFindFormat(format, NULL, NULL, NULL, NULL))
1090 return caps;
1091 return 0;
1095 static void
1096 uninit(void)
1098 uninitGl();
1099 if (custom_prog) free(custom_prog);
1100 custom_prog = NULL;
1101 if (custom_tex) free(custom_tex);
1102 custom_tex = NULL;
1103 uninit_mpglcontext(&glctx);
1106 static int valid_csp(void *p)
1108 int *csp = p;
1109 return *csp >= -1 && *csp < MP_CSP_COUNT;
1112 static int valid_csp_lvl(void *p)
1114 int *lvl = p;
1115 return *lvl >= -1 && *lvl < MP_CSP_LEVELCONV_COUNT;
1118 static const opt_t subopts[] = {
1119 {"manyfmts", OPT_ARG_BOOL, &many_fmts, NULL},
1120 {"osd", OPT_ARG_BOOL, &use_osd, NULL},
1121 {"scaled-osd", OPT_ARG_BOOL, &scaled_osd, NULL},
1122 {"aspect", OPT_ARG_BOOL, &use_aspect, NULL},
1123 {"ycbcr", OPT_ARG_BOOL, &use_ycbcr, NULL},
1124 {"slice-height", OPT_ARG_INT, &slice_height, int_non_neg},
1125 {"rectangle", OPT_ARG_INT, &use_rectangle,int_non_neg},
1126 {"yuv", OPT_ARG_INT, &use_yuv, int_non_neg},
1127 {"colorspace", OPT_ARG_INT, &colorspace, valid_csp},
1128 {"levelconv", OPT_ARG_INT, &levelconv, valid_csp_lvl},
1129 {"lscale", OPT_ARG_INT, &lscale, int_non_neg},
1130 {"cscale", OPT_ARG_INT, &cscale, int_non_neg},
1131 {"filter-strength", OPT_ARG_FLOAT, &filter_strength, NULL},
1132 {"ati-hack", OPT_ARG_BOOL, &ati_hack, NULL},
1133 {"force-pbo", OPT_ARG_BOOL, &force_pbo, NULL},
1134 {"mesa-buffer", OPT_ARG_BOOL, &mesa_buffer, NULL},
1135 {"glfinish", OPT_ARG_BOOL, &use_glFinish, NULL},
1136 {"swapinterval", OPT_ARG_INT, &swap_interval,NULL},
1137 {"customprog", OPT_ARG_MSTRZ,&custom_prog, NULL},
1138 {"customtex", OPT_ARG_MSTRZ,&custom_tex, NULL},
1139 {"customtlin", OPT_ARG_BOOL, &custom_tlin, NULL},
1140 {"customtrect", OPT_ARG_BOOL, &custom_trect, NULL},
1141 {"mipmapgen", OPT_ARG_BOOL, &mipmap_gen, NULL},
1142 {"osdcolor", OPT_ARG_INT, &osd_color, NULL},
1143 {"stereo", OPT_ARG_INT, &stereo_mode, NULL},
1144 {NULL}
1147 static int preinit_internal(const char *arg, int allow_sw)
1149 // set defaults
1150 enum MPGLType gltype = GLTYPE_AUTO;
1151 many_fmts = 1;
1152 use_osd = -1;
1153 scaled_osd = 0;
1154 use_aspect = 1;
1155 use_ycbcr = 0;
1156 use_yuv = -1;
1157 colorspace = -1;
1158 levelconv = -1;
1159 lscale = 0;
1160 cscale = 0;
1161 filter_strength = 0.5;
1162 use_rectangle = -1;
1163 use_glFinish = 0;
1164 ati_hack = -1;
1165 force_pbo = -1;
1166 mesa_buffer = 0;
1167 swap_interval = 1;
1168 slice_height = 0;
1169 custom_prog = NULL;
1170 custom_tex = NULL;
1171 custom_tlin = 1;
1172 custom_trect = 0;
1173 mipmap_gen = 0;
1174 osd_color = 0xffffff;
1175 stereo_mode = 0;
1176 if (subopt_parse(arg, subopts) != 0) {
1177 mp_msg(MSGT_VO, MSGL_FATAL,
1178 "\n-vo gl command line help:\n"
1179 "Example: mplayer -vo gl:slice-height=4\n"
1180 "\nOptions:\n"
1181 " nomanyfmts\n"
1182 " Disable extended color formats for OpenGL 1.2 and later\n"
1183 " slice-height=<0-...>\n"
1184 " Slice size for texture transfer, 0 for whole image\n"
1185 " noosd\n"
1186 " Do not use OpenGL OSD code\n"
1187 " scaled-osd\n"
1188 " Render OSD at movie resolution and scale it\n"
1189 " noaspect\n"
1190 " Do not do aspect scaling\n"
1191 " rectangle=<0,1,2>\n"
1192 " 0: use power-of-two textures\n"
1193 " 1: use texture_rectangle\n"
1194 " 2: use texture_non_power_of_two\n"
1195 " ati-hack\n"
1196 " Workaround ATI bug with PBOs\n"
1197 " force-pbo\n"
1198 " Force use of PBO even if this involves an extra memcpy\n"
1199 " glfinish\n"
1200 " Call glFinish() before swapping buffers\n"
1201 " swapinterval=<n>\n"
1202 " Interval in displayed frames between to buffer swaps.\n"
1203 " 1 is equivalent to enable VSYNC, 0 to disable VSYNC.\n"
1204 " Requires GLX_SGI_swap_control support to work.\n"
1205 " ycbcr\n"
1206 " also try to use the GL_MESA_ycbcr_texture extension\n"
1207 " yuv=<n>\n"
1208 " 0: use software YUV to RGB conversion.\n"
1209 " 1: use register combiners (nVidia only, for older cards).\n"
1210 " 2: use fragment program.\n"
1211 " 3: use fragment program with gamma correction.\n"
1212 " 4: use fragment program with gamma correction via lookup.\n"
1213 " 5: use ATI-specific method (for older cards).\n"
1214 " 6: use lookup via 3D texture.\n"
1215 " colorspace=<n>\n"
1216 " 0: MPlayer's default YUV to RGB conversion\n"
1217 " 1: YUV to RGB according to BT.601\n"
1218 " 2: YUV to RGB according to BT.709\n"
1219 " 3: YUV to RGB according to SMPT-240M\n"
1220 " 4: YUV to RGB according to EBU\n"
1221 " 5: XYZ to RGB\n"
1222 " levelconv=<n>\n"
1223 " 0: YUV to RGB converting TV to PC levels\n"
1224 " 1: YUV to RGB converting PC to TV levels\n"
1225 " 2: YUV to RGB without converting levels\n"
1226 " lscale=<n>\n"
1227 " 0: use standard bilinear scaling for luma.\n"
1228 " 1: use improved bicubic scaling for luma.\n"
1229 " 2: use cubic in X, linear in Y direction scaling for luma.\n"
1230 " 3: as 1 but without using a lookup texture.\n"
1231 " 4: experimental unsharp masking (sharpening).\n"
1232 " 5: experimental unsharp masking (sharpening) with larger radius.\n"
1233 " cscale=<n>\n"
1234 " as lscale but for chroma (2x slower with little visible effect).\n"
1235 " filter-strength=<value>\n"
1236 " set the effect strength for some lscale/cscale filters\n"
1237 " customprog=<filename>\n"
1238 " use a custom YUV conversion program\n"
1239 " customtex=<filename>\n"
1240 " use a custom YUV conversion lookup texture\n"
1241 " nocustomtlin\n"
1242 " use GL_NEAREST scaling for customtex texture\n"
1243 " customtrect\n"
1244 " use texture_rectangle for customtex texture\n"
1245 " mipmapgen\n"
1246 " generate mipmaps for the video image (use with TXB in customprog)\n"
1247 " osdcolor=<0xAARRGGBB>\n"
1248 " use the given color for the OSD\n"
1249 " stereo=<n>\n"
1250 " 0: normal display\n"
1251 " 1: side-by-side to red-cyan stereo\n"
1252 " 2: side-by-side to green-magenta stereo\n"
1253 " 3: side-by-side to quadbuffer stereo\n"
1254 "\n" );
1255 return -1;
1257 if (!init_mpglcontext(&glctx, gltype))
1258 goto err_out;
1259 if (use_yuv == -1 || !allow_sw) {
1260 if (create_window(320, 200, VOFLAG_HIDDEN, NULL) < 0)
1261 goto err_out;
1262 if (glctx.setGlWindow(&glctx) == SET_WINDOW_FAILED)
1263 goto err_out;
1264 if (!allow_sw && isSoftwareGl())
1265 goto err_out;
1266 autodetectGlExtensions();
1268 if (many_fmts)
1269 mp_msg(MSGT_VO, MSGL_INFO, "[gl] using extended formats. "
1270 "Use -vo gl:nomanyfmts if playback fails.\n");
1271 mp_msg(MSGT_VO, MSGL_V, "[gl] Using %d as slice height "
1272 "(0 means image height).\n", slice_height);
1274 return 0;
1276 err_out:
1277 uninit();
1278 return -1;
1281 static int preinit(const char *arg)
1283 return preinit_internal(arg, 1);
1286 static int preinit_nosw(const char *arg)
1288 return preinit_internal(arg, 0);
1291 static const struct {
1292 const char *name;
1293 int *value;
1294 int supportmask;
1295 } eq_map[] = {
1296 {"brightness", &eq_bri, MASK_NOT_COMBINERS},
1297 {"contrast", &eq_cont, MASK_NOT_COMBINERS},
1298 {"saturation", &eq_sat, MASK_ALL_YUV },
1299 {"hue", &eq_hue, MASK_ALL_YUV },
1300 {"gamma", &eq_rgamma, MASK_GAMMA_SUPPORT},
1301 {"red_gamma", &eq_rgamma, MASK_GAMMA_SUPPORT},
1302 {"green_gamma", &eq_ggamma, MASK_GAMMA_SUPPORT},
1303 {"blue_gamma", &eq_bgamma, MASK_GAMMA_SUPPORT},
1304 {NULL, NULL, 0 }
1307 static int control(uint32_t request, void *data)
1309 switch (request) {
1310 case VOCTRL_PAUSE:
1311 case VOCTRL_RESUME:
1312 int_pause = (request == VOCTRL_PAUSE);
1313 return VO_TRUE;
1314 case VOCTRL_QUERY_FORMAT:
1315 return query_format(*(uint32_t*)data);
1316 case VOCTRL_GET_IMAGE:
1317 return get_image(data);
1318 case VOCTRL_DRAW_IMAGE:
1319 return draw_image(data);
1320 case VOCTRL_DRAW_EOSD:
1321 if (!data)
1322 return VO_FALSE;
1323 genEOSD(data);
1324 if (vo_doublebuffering) do_render_osd(2);
1325 return VO_TRUE;
1326 case VOCTRL_GET_EOSD_RES:
1328 mp_eosd_res_t *r = data;
1329 r->w = vo_dwidth; r->h = vo_dheight;
1330 r->mt = r->mb = r->ml = r->mr = 0;
1331 if (scaled_osd) {r->w = image_width; r->h = image_height;}
1332 else if (aspect_scaling()) {
1333 r->ml = r->mr = ass_border_x;
1334 r->mt = r->mb = ass_border_y;
1337 return VO_TRUE;
1338 case VOCTRL_ONTOP:
1339 glctx.ontop();
1340 return VO_TRUE;
1341 case VOCTRL_FULLSCREEN:
1342 glctx.fullscreen();
1343 resize(vo_dwidth, vo_dheight);
1344 return VO_TRUE;
1345 case VOCTRL_BORDER:
1346 glctx.border();
1347 resize(vo_dwidth, vo_dheight);
1348 return VO_TRUE;
1349 case VOCTRL_GET_PANSCAN:
1350 if (!use_aspect) return VO_NOTIMPL;
1351 return VO_TRUE;
1352 case VOCTRL_SET_PANSCAN:
1353 if (!use_aspect) return VO_NOTIMPL;
1354 resize(vo_dwidth, vo_dheight);
1355 return VO_TRUE;
1356 case VOCTRL_GET_EQUALIZER:
1357 if (is_yuv) {
1358 struct voctrl_get_equalizer_args *args = data;
1359 int i;
1360 for (i = 0; eq_map[i].name; i++)
1361 if (strcmp(args->name, eq_map[i].name) == 0) break;
1362 if (!(eq_map[i].supportmask & (1 << use_yuv)))
1363 break;
1364 *args->valueptr = *eq_map[i].value;
1365 return VO_TRUE;
1367 break;
1368 case VOCTRL_SET_EQUALIZER:
1369 if (is_yuv) {
1370 struct voctrl_set_equalizer_args *args = data;
1371 int i;
1372 for (i = 0; eq_map[i].name; i++)
1373 if (strcmp(args->name, eq_map[i].name) == 0) break;
1374 if (!(eq_map[i].supportmask & (1 << use_yuv)))
1375 break;
1376 *eq_map[i].value = args->value;
1377 update_yuvconv();
1378 return VO_TRUE;
1380 break;
1381 case VOCTRL_UPDATE_SCREENINFO:
1382 glctx.update_xinerama_info();
1383 return VO_TRUE;
1384 case VOCTRL_REDRAW_OSD:
1385 if (vo_doublebuffering)
1386 do_render();
1387 draw_osd();
1388 if (vo_doublebuffering)
1389 do_render_osd(2);
1390 flip_page();
1391 return VO_TRUE;
1393 return VO_NOTIMPL;