Merge svn changes up to r31169
[mplayer/glamo.git] / libvo / vo_gl.c
blobefec18564b231aabeeb04358e980521e06ef119b
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.
19 #include <stdio.h>
20 #include <stdlib.h>
21 #include <string.h>
22 #include <math.h>
24 #include "config.h"
25 #include "mp_msg.h"
26 #include "subopt-helper.h"
27 #include "video_out.h"
28 #include "video_out_internal.h"
29 #include "font_load.h"
30 #include "sub.h"
32 #include "gl_common.h"
33 #include "aspect.h"
34 #include "fastmemcpy.h"
35 #include "ass_mp.h"
37 #ifdef CONFIG_GL_SDL
38 #ifdef CONFIG_SDL_SDL_H
39 #include <SDL/SDL.h>
40 #else
41 #include <SDL.h>
42 #endif
43 #endif
45 static const vo_info_t info =
47 "OpenGL",
48 "gl",
49 "Reimar Doeffinger <Reimar.Doeffinger@gmx.de>",
53 const LIBVO_EXTERN(gl)
56 static const vo_info_t info_nosw =
58 "OpenGL no software rendering",
59 "gl_nosw",
60 "Reimar Doeffinger <Reimar.Doeffinger@gmx.de>",
63 static int preinit_nosw(const char *arg);
64 const struct vo_driver video_out_gl_nosw =
66 .is_new = 0,
67 .info = &info_nosw,
68 .preinit = old_vo_preinit,
69 .config = old_vo_config,
70 .control = old_vo_control,
71 .draw_slice = old_vo_draw_slice,
72 .draw_osd = old_vo_draw_osd,
73 .flip_page = old_vo_flip_page,
74 .check_events = old_vo_check_events,
75 .uninit = old_vo_uninit,
76 .old_functions = &(struct vo_old_functions){
77 preinit_nosw,
78 config,
79 control,
80 draw_frame,
81 draw_slice,
82 draw_osd,
83 flip_page,
84 check_events,
85 uninit,
89 #ifdef CONFIG_GL_X11
90 static int wsGLXAttrib[] = { GLX_RGBA,
91 GLX_RED_SIZE,1,
92 GLX_GREEN_SIZE,1,
93 GLX_BLUE_SIZE,1,
94 GLX_DOUBLEBUFFER,
95 None };
96 #endif
97 static MPGLContext glctx;
99 static int use_osd;
100 static int scaled_osd;
101 //! How many parts the OSD may consist of at most
102 #define MAX_OSD_PARTS 20
103 //! Textures for OSD
104 static GLuint osdtex[MAX_OSD_PARTS];
105 #ifndef FAST_OSD
106 //! Alpha textures for OSD
107 static GLuint osdatex[MAX_OSD_PARTS];
108 #endif
109 static GLuint *eosdtex;
110 #define LARGE_EOSD_TEX_SIZE 512
111 #define TINYTEX_SIZE 16
112 #define TINYTEX_COLS (LARGE_EOSD_TEX_SIZE/TINYTEX_SIZE)
113 #define TINYTEX_MAX (TINYTEX_COLS*TINYTEX_COLS)
114 #define SMALLTEX_SIZE 32
115 #define SMALLTEX_COLS (LARGE_EOSD_TEX_SIZE/SMALLTEX_SIZE)
116 #define SMALLTEX_MAX (SMALLTEX_COLS*SMALLTEX_COLS)
117 static GLuint largeeosdtex[2];
118 //! Display lists that draw the OSD parts
119 static GLuint osdDispList[MAX_OSD_PARTS];
120 #ifndef FAST_OSD
121 static GLuint osdaDispList[MAX_OSD_PARTS];
122 #endif
123 static GLuint eosdDispList;
124 //! How many parts the OSD currently consists of
125 static int osdtexCnt;
126 static int eosdtexCnt;
127 static int osd_color;
129 static int use_aspect;
130 static int use_ycbcr;
131 #define MASK_ALL_YUV (~(1 << YUV_CONVERSION_NONE))
132 #define MASK_NOT_COMBINERS (~((1 << YUV_CONVERSION_NONE) | (1 << YUV_CONVERSION_COMBINERS)))
133 #define MASK_GAMMA_SUPPORT (MASK_NOT_COMBINERS & ~(1 << YUV_CONVERSION_FRAGMENT))
134 static int use_yuv;
135 static int colorspace;
136 static int levelconv;
137 static int is_yuv;
138 static int lscale;
139 static int cscale;
140 static float filter_strength;
141 static int yuvconvtype;
142 static int use_rectangle;
143 static int err_shown;
144 static uint32_t image_width;
145 static uint32_t image_height;
146 static uint32_t image_format;
147 static int many_fmts;
148 static int ati_hack;
149 static int force_pbo;
150 static int mesa_buffer;
151 static int use_glFinish;
152 static int swap_interval;
153 static GLenum gl_target;
154 static GLint gl_texfmt;
155 static GLenum gl_format;
156 static GLenum gl_type;
157 static GLuint gl_buffer;
158 static GLuint gl_buffer_uv[2];
159 static int gl_buffersize;
160 static int gl_buffersize_uv;
161 static void *gl_bufferptr;
162 static void *gl_bufferptr_uv[2];
163 static int mesa_buffersize;
164 static void *mesa_bufferptr;
165 static GLuint fragprog;
166 static GLuint default_texs[22];
167 static char *custom_prog;
168 static char *custom_tex;
169 static int custom_tlin;
170 static int custom_trect;
171 static int mipmap_gen;
173 static int int_pause;
174 static int eq_bri = 0;
175 static int eq_cont = 0;
176 static int eq_sat = 0;
177 static int eq_hue = 0;
178 static int eq_rgamma = 0;
179 static int eq_ggamma = 0;
180 static int eq_bgamma = 0;
182 static int texture_width;
183 static int texture_height;
184 static int mpi_flipped;
185 static int vo_flipped;
186 static int ass_border_x, ass_border_y;
188 static unsigned int slice_height = 1;
190 static void redraw(void);
192 static void resize(int x,int y){
193 mp_msg(MSGT_VO, MSGL_V, "[gl] Resize: %dx%d\n",x,y);
194 if (WinID >= 0) {
195 int top = 0, left = 0, w = x, h = y;
196 geometry(&top, &left, &w, &h, vo_screenwidth, vo_screenheight);
197 mpglViewport(top, left, w, h);
198 } else
199 mpglViewport( 0, 0, x, y );
201 mpglMatrixMode(GL_PROJECTION);
202 mpglLoadIdentity();
203 ass_border_x = ass_border_y = 0;
204 if (aspect_scaling() && use_aspect) {
205 int new_w, new_h;
206 GLdouble scale_x, scale_y;
207 aspect(&new_w, &new_h, A_WINZOOM);
208 panscan_calc_windowed();
209 new_w += vo_panscan_x;
210 new_h += vo_panscan_y;
211 scale_x = (GLdouble)new_w / (GLdouble)x;
212 scale_y = (GLdouble)new_h / (GLdouble)y;
213 mpglScaled(scale_x, scale_y, 1);
214 ass_border_x = (vo_dwidth - new_w) / 2;
215 ass_border_y = (vo_dheight - new_h) / 2;
217 mpglOrtho(0, image_width, image_height, 0, -1,1);
219 mpglMatrixMode(GL_MODELVIEW);
220 mpglLoadIdentity();
222 if (!scaled_osd) {
223 #ifdef CONFIG_FREETYPE
224 // adjust font size to display size
225 force_load_font = 1;
226 #endif
227 vo_osd_changed(OSDTYPE_OSD);
229 mpglClear(GL_COLOR_BUFFER_BIT);
230 redraw();
233 static void texSize(int w, int h, int *texw, int *texh) {
234 if (use_rectangle) {
235 *texw = w; *texh = h;
236 } else {
237 *texw = 32;
238 while (*texw < w)
239 *texw *= 2;
240 *texh = 32;
241 while (*texh < h)
242 *texh *= 2;
244 if (mesa_buffer) *texw = (*texw + 63) & ~63;
245 else if (ati_hack) *texw = (*texw + 511) & ~511;
248 //! maximum size of custom fragment program
249 #define MAX_CUSTOM_PROG_SIZE (1024 * 1024)
250 static void update_yuvconv(void) {
251 int xs, ys;
252 float bri = eq_bri / 100.0;
253 float cont = (eq_cont + 100) / 100.0;
254 float hue = eq_hue / 100.0 * 3.1415927;
255 float sat = (eq_sat + 100) / 100.0;
256 float rgamma = exp(log(8.0) * eq_rgamma / 100.0);
257 float ggamma = exp(log(8.0) * eq_ggamma / 100.0);
258 float bgamma = exp(log(8.0) * eq_bgamma / 100.0);
259 gl_conversion_params_t params = {gl_target, yuvconvtype,
260 {colorspace, levelconv, bri, cont, hue, sat, rgamma, ggamma, bgamma},
261 texture_width, texture_height, 0, 0, filter_strength};
262 mp_get_chroma_shift(image_format, &xs, &ys);
263 params.chrom_texw = params.texw >> xs;
264 params.chrom_texh = params.texh >> ys;
265 glSetupYUVConversion(&params);
266 if (custom_prog) {
267 FILE *f = fopen(custom_prog, "rb");
268 if (!f)
269 mp_msg(MSGT_VO, MSGL_WARN,
270 "[gl] Could not read customprog %s\n", custom_prog);
271 else {
272 char *prog = calloc(1, MAX_CUSTOM_PROG_SIZE + 1);
273 fread(prog, 1, MAX_CUSTOM_PROG_SIZE, f);
274 fclose(f);
275 loadGPUProgram(GL_FRAGMENT_PROGRAM, prog);
276 free(prog);
278 mpglProgramEnvParameter4f(GL_FRAGMENT_PROGRAM, 0,
279 1.0 / texture_width, 1.0 / texture_height,
280 texture_width, texture_height);
282 if (custom_tex) {
283 FILE *f = fopen(custom_tex, "rb");
284 if (!f)
285 mp_msg(MSGT_VO, MSGL_WARN,
286 "[gl] Could not read customtex %s\n", custom_tex);
287 else {
288 int width, height, maxval;
289 mpglActiveTexture(GL_TEXTURE3);
290 if (glCreatePPMTex(custom_trect?GL_TEXTURE_RECTANGLE:GL_TEXTURE_2D, 0,
291 custom_tlin?GL_LINEAR:GL_NEAREST,
292 f, &width, &height, &maxval))
293 mpglProgramEnvParameter4f(GL_FRAGMENT_PROGRAM, 1,
294 1.0 / width, 1.0 / height, width, height);
295 else
296 mp_msg(MSGT_VO, MSGL_WARN,
297 "[gl] Error parsing customtex %s\n", custom_tex);
298 fclose(f);
299 mpglActiveTexture(GL_TEXTURE0);
305 * \brief remove all OSD textures and display-lists, thus clearing it.
307 static void clearOSD(void) {
308 int i;
309 if (!osdtexCnt)
310 return;
311 mpglDeleteTextures(osdtexCnt, osdtex);
312 #ifndef FAST_OSD
313 mpglDeleteTextures(osdtexCnt, osdatex);
314 for (i = 0; i < osdtexCnt; i++)
315 mpglDeleteLists(osdaDispList[i], 1);
316 #endif
317 for (i = 0; i < osdtexCnt; i++)
318 mpglDeleteLists(osdDispList[i], 1);
319 osdtexCnt = 0;
323 * \brief remove textures, display list and free memory used by EOSD
325 static void clearEOSD(void) {
326 if (eosdDispList)
327 mpglDeleteLists(eosdDispList, 1);
328 eosdDispList = 0;
329 if (eosdtexCnt)
330 mpglDeleteTextures(eosdtexCnt, eosdtex);
331 eosdtexCnt = 0;
332 free(eosdtex);
333 eosdtex = NULL;
336 static inline int is_tinytex(ASS_Image *i, int tinytexcur) {
337 return i->w < TINYTEX_SIZE && i->h < TINYTEX_SIZE && tinytexcur < TINYTEX_MAX;
340 static inline int is_smalltex(ASS_Image *i, int smalltexcur) {
341 return i->w < SMALLTEX_SIZE && i->h < SMALLTEX_SIZE && smalltexcur < SMALLTEX_MAX;
344 static inline void tinytex_pos(int tinytexcur, int *x, int *y) {
345 *x = (tinytexcur % TINYTEX_COLS) * TINYTEX_SIZE;
346 *y = (tinytexcur / TINYTEX_COLS) * TINYTEX_SIZE;
349 static inline void smalltex_pos(int smalltexcur, int *x, int *y) {
350 *x = (smalltexcur % SMALLTEX_COLS) * SMALLTEX_SIZE;
351 *y = (smalltexcur / SMALLTEX_COLS) * SMALLTEX_SIZE;
355 * \brief construct display list from ass image list
356 * \param img image list to create OSD from.
357 * A value of NULL has the same effect as clearEOSD()
359 static void genEOSD(mp_eosd_images_t *imgs) {
360 int sx, sy;
361 int tinytexcur = 0;
362 int smalltexcur = 0;
363 GLuint *curtex;
364 GLint scale_type = scaled_osd ? GL_LINEAR : GL_NEAREST;
365 ASS_Image *img = imgs->imgs;
366 ASS_Image *i;
368 if (imgs->changed == 0) // there are elements, but they are unchanged
369 return;
370 if (img && imgs->changed == 1) // there are elements, but they just moved
371 goto skip_upload;
373 clearEOSD();
374 if (!img)
375 return;
376 if (!largeeosdtex[0]) {
377 mpglGenTextures(2, largeeosdtex);
378 mpglBindTexture(gl_target, largeeosdtex[0]);
379 glCreateClearTex(gl_target, GL_ALPHA, GL_ALPHA, GL_UNSIGNED_BYTE, scale_type, LARGE_EOSD_TEX_SIZE, LARGE_EOSD_TEX_SIZE, 0);
380 mpglBindTexture(gl_target, largeeosdtex[1]);
381 glCreateClearTex(gl_target, GL_ALPHA, GL_ALPHA, GL_UNSIGNED_BYTE, scale_type, LARGE_EOSD_TEX_SIZE, LARGE_EOSD_TEX_SIZE, 0);
383 for (i = img; i; i = i->next)
385 if (i->w <= 0 || i->h <= 0 || i->stride < i->w)
386 continue;
387 if (is_tinytex(i, tinytexcur))
388 tinytexcur++;
389 else if (is_smalltex(i, smalltexcur))
390 smalltexcur++;
391 else
392 eosdtexCnt++;
394 mp_msg(MSGT_VO, MSGL_DBG2, "EOSD counts (tiny, small, all): %i, %i, %i\n",
395 tinytexcur, smalltexcur, eosdtexCnt);
396 if (eosdtexCnt) {
397 eosdtex = calloc(eosdtexCnt, sizeof(GLuint));
398 mpglGenTextures(eosdtexCnt, eosdtex);
400 tinytexcur = smalltexcur = 0;
401 for (i = img, curtex = eosdtex; i; i = i->next) {
402 int x = 0, y = 0;
403 if (i->w <= 0 || i->h <= 0 || i->stride < i->w) {
404 mp_msg(MSGT_VO, MSGL_V, "Invalid dimensions OSD for part!\n");
405 continue;
407 if (is_tinytex(i, tinytexcur)) {
408 tinytex_pos(tinytexcur, &x, &y);
409 mpglBindTexture(gl_target, largeeosdtex[0]);
410 tinytexcur++;
411 } else if (is_smalltex(i, smalltexcur)) {
412 smalltex_pos(smalltexcur, &x, &y);
413 mpglBindTexture(gl_target, largeeosdtex[1]);
414 smalltexcur++;
415 } else {
416 texSize(i->w, i->h, &sx, &sy);
417 mpglBindTexture(gl_target, *curtex++);
418 glCreateClearTex(gl_target, GL_ALPHA, GL_ALPHA, GL_UNSIGNED_BYTE, scale_type, sx, sy, 0);
420 glUploadTex(gl_target, GL_ALPHA, GL_UNSIGNED_BYTE, i->bitmap, i->stride,
421 x, y, i->w, i->h, 0);
423 eosdDispList = mpglGenLists(1);
424 skip_upload:
425 mpglNewList(eosdDispList, GL_COMPILE);
426 tinytexcur = smalltexcur = 0;
427 for (i = img, curtex = eosdtex; i; i = i->next) {
428 int x = 0, y = 0;
429 if (i->w <= 0 || i->h <= 0 || i->stride < i->w)
430 continue;
431 mpglColor4ub(i->color >> 24, (i->color >> 16) & 0xff, (i->color >> 8) & 0xff, 255 - (i->color & 0xff));
432 if (is_tinytex(i, tinytexcur)) {
433 tinytex_pos(tinytexcur, &x, &y);
434 sx = sy = LARGE_EOSD_TEX_SIZE;
435 mpglBindTexture(gl_target, largeeosdtex[0]);
436 tinytexcur++;
437 } else if (is_smalltex(i, smalltexcur)) {
438 smalltex_pos(smalltexcur, &x, &y);
439 sx = sy = LARGE_EOSD_TEX_SIZE;
440 mpglBindTexture(gl_target, largeeosdtex[1]);
441 smalltexcur++;
442 } else {
443 texSize(i->w, i->h, &sx, &sy);
444 mpglBindTexture(gl_target, *curtex++);
446 glDrawTex(i->dst_x, i->dst_y, i->w, i->h, x, y, i->w, i->h, sx, sy, use_rectangle == 1, 0, 0);
448 mpglEndList();
449 mpglBindTexture(gl_target, 0);
453 * \brief uninitialize OpenGL context, freeing textures, buffers etc.
455 static void uninitGl(void) {
456 int i = 0;
457 if (mpglDeletePrograms && fragprog)
458 mpglDeletePrograms(1, &fragprog);
459 fragprog = 0;
460 while (default_texs[i] != 0)
461 i++;
462 if (i)
463 mpglDeleteTextures(i, default_texs);
464 default_texs[0] = 0;
465 clearOSD();
466 clearEOSD();
467 if (largeeosdtex[0])
468 mpglDeleteTextures(2, largeeosdtex);
469 largeeosdtex[0] = 0;
470 if (mpglDeleteBuffers && gl_buffer)
471 mpglDeleteBuffers(1, &gl_buffer);
472 gl_buffer = 0; gl_buffersize = 0;
473 gl_bufferptr = NULL;
474 if (mpglDeleteBuffers && gl_buffer_uv[0])
475 mpglDeleteBuffers(2, gl_buffer_uv);
476 gl_buffer_uv[0] = gl_buffer_uv[1] = 0; gl_buffersize_uv = 0;
477 gl_bufferptr_uv[0] = gl_bufferptr_uv[1] = 0;
478 #ifdef CONFIG_GL_X11
479 if (mesa_bufferptr)
480 mpglFreeMemoryMESA(mDisplay, mScreen, mesa_bufferptr);
481 #endif
482 mesa_bufferptr = NULL;
483 err_shown = 0;
486 static int isSoftwareGl(void)
488 const char *renderer = mpglGetString(GL_RENDERER);
489 return strcmp(renderer, "Software Rasterizer") == 0;
492 static void autodetectGlExtensions(void) {
493 const char *extensions = mpglGetString(GL_EXTENSIONS);
494 const char *vendor = mpglGetString(GL_VENDOR);
495 const char *version = mpglGetString(GL_VERSION);
496 const char *renderer = mpglGetString(GL_RENDERER);
497 int is_ati = vendor && strstr(vendor, "ATI") != NULL;
498 int ati_broken_pbo = 0;
499 mp_msg(MSGT_VO, MSGL_V, "[gl] Running on OpenGL '%s' by '%s', version '%s'\n", renderer, vendor, version);
500 if (is_ati && strncmp(version, "2.1.", 4) == 0) {
501 int ver = atoi(version + 4);
502 mp_msg(MSGT_VO, MSGL_V, "[gl] Detected ATI driver version: %i\n", ver);
503 ati_broken_pbo = ver && ver < 8395;
505 if (ati_hack == -1) ati_hack = ati_broken_pbo;
506 if (force_pbo == -1 && extensions && strstr(extensions, "_pixel_buffer_object"))
507 force_pbo = is_ati;
508 if (use_rectangle == -1 && extensions && strstr(extensions, "_texture_non_power_of_two"))
509 use_rectangle = 0;
510 if (use_rectangle == -1 && extensions && strstr(extensions, "_texture_rectangle"))
511 use_rectangle = renderer && strstr(renderer, "Mesa DRI R200") ? 1 : 0;
512 if (use_osd == -1)
513 use_osd = mpglBindTexture != NULL;
514 if (use_yuv == -1)
515 use_yuv = glAutodetectYUVConversion();
516 if (is_ati && (lscale == 1 || lscale == 2 || cscale == 1 || cscale == 2))
517 mp_msg(MSGT_VO, MSGL_WARN, "[gl] Selected scaling mode may be broken on ATI cards.\n"
518 "Tell _them_ to fix GL_REPEAT if you have issues.\n");
519 mp_msg(MSGT_VO, MSGL_V, "[gl] Settings after autodetection: ati-hack = %i, force-pbo = %i, rectangle = %i, yuv = %i\n",
520 ati_hack, force_pbo, use_rectangle, use_yuv);
524 * \brief Initialize a (new or reused) OpenGL context.
525 * set global gl-related variables to their default values
527 static int initGl(uint32_t d_width, uint32_t d_height) {
528 int scale_type = mipmap_gen ? GL_LINEAR_MIPMAP_NEAREST : GL_LINEAR;
529 autodetectGlExtensions();
530 gl_target = use_rectangle == 1 ? GL_TEXTURE_RECTANGLE : GL_TEXTURE_2D;
531 yuvconvtype = use_yuv | lscale << YUV_LUM_SCALER_SHIFT | cscale << YUV_CHROM_SCALER_SHIFT;
533 texSize(image_width, image_height, &texture_width, &texture_height);
535 mpglDisable(GL_BLEND);
536 mpglDisable(GL_DEPTH_TEST);
537 mpglDepthMask(GL_FALSE);
538 mpglDisable(GL_CULL_FACE);
539 mpglEnable(gl_target);
540 mpglDrawBuffer(vo_doublebuffering?GL_BACK:GL_FRONT);
541 mpglTexEnvi(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE);
543 mp_msg(MSGT_VO, MSGL_V, "[gl] Creating %dx%d texture...\n",
544 texture_width, texture_height);
546 if (is_yuv) {
547 int i;
548 int xs, ys;
549 mp_get_chroma_shift(image_format, &xs, &ys);
550 mpglGenTextures(21, default_texs);
551 default_texs[21] = 0;
552 for (i = 0; i < 7; i++) {
553 mpglActiveTexture(GL_TEXTURE1 + i);
554 mpglBindTexture(GL_TEXTURE_2D, default_texs[i]);
555 mpglBindTexture(GL_TEXTURE_RECTANGLE, default_texs[i + 7]);
556 mpglBindTexture(GL_TEXTURE_3D, default_texs[i + 14]);
558 mpglActiveTexture(GL_TEXTURE1);
559 glCreateClearTex(gl_target, gl_texfmt, gl_format, gl_type, scale_type,
560 texture_width >> xs, texture_height >> ys, 128);
561 if (mipmap_gen)
562 mpglTexParameteri(gl_target, GL_GENERATE_MIPMAP, GL_TRUE);
563 mpglActiveTexture(GL_TEXTURE2);
564 glCreateClearTex(gl_target, gl_texfmt, gl_format, gl_type, scale_type,
565 texture_width >> xs, texture_height >> ys, 128);
566 if (mipmap_gen)
567 mpglTexParameteri(gl_target, GL_GENERATE_MIPMAP, GL_TRUE);
568 mpglActiveTexture(GL_TEXTURE0);
569 mpglBindTexture(gl_target, 0);
571 if (is_yuv || custom_prog)
573 if ((MASK_NOT_COMBINERS & (1 << use_yuv)) || custom_prog) {
574 if (!mpglGenPrograms || !mpglBindProgram) {
575 mp_msg(MSGT_VO, MSGL_ERR, "[gl] fragment program functions missing!\n");
576 } else {
577 mpglGenPrograms(1, &fragprog);
578 mpglBindProgram(GL_FRAGMENT_PROGRAM, fragprog);
581 update_yuvconv();
583 glCreateClearTex(gl_target, gl_texfmt, gl_format, gl_type, scale_type,
584 texture_width, texture_height, 0);
585 if (mipmap_gen)
586 mpglTexParameteri(gl_target, GL_GENERATE_MIPMAP, GL_TRUE);
588 resize(d_width, d_height);
590 mpglClearColor( 0.0f,0.0f,0.0f,0.0f );
591 mpglClear( GL_COLOR_BUFFER_BIT );
592 if (mpglSwapInterval && swap_interval >= 0)
593 mpglSwapInterval(swap_interval);
594 return 1;
597 static int create_window(uint32_t d_width, uint32_t d_height, uint32_t flags, const char *title)
599 #ifdef CONFIG_GL_WIN32
600 if (glctx.type == GLTYPE_W32 && !vo_w32_config(d_width, d_height, flags))
601 return -1;
602 #endif
603 #ifdef CONFIG_GL_X11
604 if (glctx.type == GLTYPE_X11) {
605 XVisualInfo *vinfo=glXChooseVisual( mDisplay,mScreen,wsGLXAttrib );
606 if (vinfo == NULL)
608 mp_msg(MSGT_VO, MSGL_ERR, "[gl] no GLX support present\n");
609 return -1;
611 mp_msg(MSGT_VO, MSGL_V, "[gl] GLX chose visual with ID 0x%x\n", (int)vinfo->visualid);
613 vo_x11_create_vo_window(vinfo, vo_dx, vo_dy, d_width, d_height, flags,
614 XCreateColormap(mDisplay, mRootWin, vinfo->visual, AllocNone),
615 "gl", title);
617 #endif
618 #ifdef CONFIG_GL_SDL
619 if (glctx.type == GLTYPE_SDL) {
620 SDL_WM_SetCaption(title, NULL);
621 vo_dwidth = d_width;
622 vo_dheight = d_height;
624 #endif
625 return 0;
628 /* connect to server, create and map window,
629 * allocate colors and (shared) memory
631 static int
632 config(uint32_t width, uint32_t height, uint32_t d_width, uint32_t d_height, uint32_t flags, char *title, uint32_t format)
634 int xs, ys;
635 image_height = height;
636 image_width = width;
637 image_format = format;
638 is_yuv = mp_get_chroma_shift(image_format, &xs, &ys) > 0;
639 is_yuv |= (xs << 8) | (ys << 16);
640 glFindFormat(format, NULL, &gl_texfmt, &gl_format, &gl_type);
642 vo_flipped = !!(flags & VOFLAG_FLIPPING);
644 if (create_window(d_width, d_height, flags, title) < 0)
645 return -1;
647 glconfig:
648 if (vo_config_count)
649 uninitGl();
650 if (glctx.setGlWindow(&glctx) == SET_WINDOW_FAILED)
651 return -1;
652 if (mesa_buffer && !mpglAllocateMemoryMESA) {
653 mp_msg(MSGT_VO, MSGL_ERR, "Can not enable mesa-buffer because AllocateMemoryMESA was not found\n");
654 mesa_buffer = 0;
656 initGl(vo_dwidth, vo_dheight);
658 return 0;
661 static void check_events(void)
663 int e=glctx.check_events();
664 if(e&VO_EVENT_REINIT) {
665 uninitGl();
666 initGl(vo_dwidth, vo_dheight);
668 if(e&VO_EVENT_RESIZE) resize(vo_dwidth,vo_dheight);
669 if(e&VO_EVENT_EXPOSE && int_pause) redraw();
673 * Creates the textures and the display list needed for displaying
674 * an OSD part.
675 * Callback function for vo_draw_text().
677 static void create_osd_texture(int x0, int y0, int w, int h,
678 unsigned char *src, unsigned char *srca,
679 int stride)
681 // initialize to 8 to avoid special-casing on alignment
682 int sx = 8, sy = 8;
683 GLint scale_type = scaled_osd ? GL_LINEAR : GL_NEAREST;
685 if (w <= 0 || h <= 0 || stride < w) {
686 mp_msg(MSGT_VO, MSGL_V, "Invalid dimensions OSD for part!\n");
687 return;
689 texSize(w, h, &sx, &sy);
691 if (osdtexCnt >= MAX_OSD_PARTS) {
692 mp_msg(MSGT_VO, MSGL_ERR, "Too many OSD parts, contact the developers!\n");
693 return;
696 // create Textures for OSD part
697 mpglGenTextures(1, &osdtex[osdtexCnt]);
698 mpglBindTexture(gl_target, osdtex[osdtexCnt]);
699 glCreateClearTex(gl_target, GL_LUMINANCE, GL_LUMINANCE, GL_UNSIGNED_BYTE, scale_type, sx, sy, 0);
700 glUploadTex(gl_target, GL_LUMINANCE, GL_UNSIGNED_BYTE, src, stride,
701 0, 0, w, h, 0);
703 #ifndef FAST_OSD
704 mpglGenTextures(1, &osdatex[osdtexCnt]);
705 mpglBindTexture(gl_target, osdatex[osdtexCnt]);
706 glCreateClearTex(gl_target, GL_ALPHA, GL_ALPHA, GL_UNSIGNED_BYTE, scale_type, sx, sy, 0);
708 int i;
709 char *tmp = malloc(stride * h);
710 // convert alpha from weird MPlayer scale.
711 // in-place is not possible since it is reused for future OSDs
712 for (i = h * stride - 1; i >= 0; i--)
713 tmp[i] = -srca[i];
714 glUploadTex(gl_target, GL_ALPHA, GL_UNSIGNED_BYTE, tmp, stride,
715 0, 0, w, h, 0);
716 free(tmp);
718 #endif
720 mpglBindTexture(gl_target, 0);
722 // Create a list for rendering this OSD part
723 #ifndef FAST_OSD
724 osdaDispList[osdtexCnt] = mpglGenLists(1);
725 mpglNewList(osdaDispList[osdtexCnt], GL_COMPILE);
726 // render alpha
727 mpglBindTexture(gl_target, osdatex[osdtexCnt]);
728 glDrawTex(x0, y0, w, h, 0, 0, w, h, sx, sy, use_rectangle == 1, 0, 0);
729 mpglEndList();
730 #endif
731 osdDispList[osdtexCnt] = mpglGenLists(1);
732 mpglNewList(osdDispList[osdtexCnt], GL_COMPILE);
733 // render OSD
734 mpglBindTexture(gl_target, osdtex[osdtexCnt]);
735 glDrawTex(x0, y0, w, h, 0, 0, w, h, sx, sy, use_rectangle == 1, 0, 0);
736 mpglEndList();
738 osdtexCnt++;
742 * \param type bit 0: render OSD, bit 1: render EOSD
744 static void do_render_osd(int type) {
745 if (((type & 1) && osdtexCnt > 0) || ((type & 2) && eosdDispList)) {
746 // set special rendering parameters
747 if (!scaled_osd) {
748 mpglMatrixMode(GL_PROJECTION);
749 mpglPushMatrix();
750 mpglLoadIdentity();
751 mpglOrtho(0, vo_dwidth, vo_dheight, 0, -1, 1);
753 mpglEnable(GL_BLEND);
754 if ((type & 2) && eosdDispList) {
755 mpglBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
756 mpglCallList(eosdDispList);
758 if ((type & 1) && osdtexCnt > 0) {
759 mpglColor4ub((osd_color >> 16) & 0xff, (osd_color >> 8) & 0xff, osd_color & 0xff, 0xff - (osd_color >> 24));
760 // draw OSD
761 #ifndef FAST_OSD
762 mpglBlendFunc(GL_ZERO, GL_ONE_MINUS_SRC_ALPHA);
763 mpglCallLists(osdtexCnt, GL_UNSIGNED_INT, osdaDispList);
764 #endif
765 mpglBlendFunc(GL_SRC_ALPHA, GL_ONE);
766 mpglCallLists(osdtexCnt, GL_UNSIGNED_INT, osdDispList);
768 // set rendering parameters back to defaults
769 mpglDisable(GL_BLEND);
770 if (!scaled_osd)
771 mpglPopMatrix();
772 mpglBindTexture(gl_target, 0);
776 static void draw_osd(void)
778 if (!use_osd) return;
779 if (vo_osd_changed(0)) {
780 int osd_h, osd_w;
781 clearOSD();
782 osd_w = scaled_osd ? image_width : vo_dwidth;
783 osd_h = scaled_osd ? image_height : vo_dheight;
784 vo_draw_text_ext(osd_w, osd_h, ass_border_x, ass_border_y, ass_border_x, ass_border_y,
785 image_width, image_height, create_osd_texture);
787 if (vo_doublebuffering) do_render_osd(1);
790 static void do_render(void) {
791 // Enable(GL_TEXTURE_2D);
792 // BindTexture(GL_TEXTURE_2D, texture_id);
794 mpglColor3f(1,1,1);
795 if (is_yuv || custom_prog)
796 glEnableYUVConversion(gl_target, yuvconvtype);
797 glDrawTex(0, 0, image_width, image_height,
798 0, 0, image_width, image_height,
799 texture_width, texture_height,
800 use_rectangle == 1, is_yuv,
801 mpi_flipped ^ vo_flipped);
802 if (is_yuv || custom_prog)
803 glDisableYUVConversion(gl_target, yuvconvtype);
806 static void flip_page(void) {
807 if (vo_doublebuffering) {
808 if (use_glFinish) mpglFinish();
809 glctx.swapGlBuffers(&glctx);
810 if (aspect_scaling() && use_aspect)
811 mpglClear(GL_COLOR_BUFFER_BIT);
812 } else {
813 do_render();
814 do_render_osd(3);
815 if (use_glFinish) mpglFinish();
816 else mpglFlush();
820 static void redraw(void) {
821 if (vo_doublebuffering) { do_render(); do_render_osd(3); }
822 flip_page();
825 //static inline uint32_t draw_slice_x11(uint8_t *src[], uint32_t slice_num)
826 static int draw_slice(uint8_t *src[], int stride[], int w,int h,int x,int y)
828 mpi_flipped = stride[0] < 0;
829 glUploadTex(gl_target, gl_format, gl_type, src[0], stride[0],
830 x, y, w, h, slice_height);
831 if (is_yuv) {
832 int xs, ys;
833 mp_get_chroma_shift(image_format, &xs, &ys);
834 mpglActiveTexture(GL_TEXTURE1);
835 glUploadTex(gl_target, gl_format, gl_type, src[1], stride[1],
836 x >> xs, y >> ys, w >> xs, h >> ys, slice_height);
837 mpglActiveTexture(GL_TEXTURE2);
838 glUploadTex(gl_target, gl_format, gl_type, src[2], stride[2],
839 x >> xs, y >> ys, w >> xs, h >> ys, slice_height);
840 mpglActiveTexture(GL_TEXTURE0);
842 return 0;
845 static uint32_t get_image(mp_image_t *mpi) {
846 int needed_size;
847 if (!mpglGenBuffers || !mpglBindBuffer || !mpglBufferData || !mpglMapBuffer) {
848 if (!err_shown)
849 mp_msg(MSGT_VO, MSGL_ERR, "[gl] extensions missing for dr\n"
850 "Expect a _major_ speed penalty\n");
851 err_shown = 1;
852 return VO_FALSE;
854 if (mpi->flags & MP_IMGFLAG_READABLE) return VO_FALSE;
855 if (mpi->type != MP_IMGTYPE_STATIC && mpi->type != MP_IMGTYPE_TEMP &&
856 (mpi->type != MP_IMGTYPE_NUMBERED || mpi->number))
857 return VO_FALSE;
858 if (mesa_buffer) mpi->width = texture_width;
859 else if (ati_hack) {
860 mpi->width = texture_width;
861 mpi->height = texture_height;
863 mpi->stride[0] = mpi->width * mpi->bpp / 8;
864 needed_size = mpi->stride[0] * mpi->height;
865 if (mesa_buffer) {
866 #ifdef CONFIG_GL_X11
867 if (mesa_bufferptr && needed_size > mesa_buffersize) {
868 mpglFreeMemoryMESA(mDisplay, mScreen, mesa_bufferptr);
869 mesa_bufferptr = NULL;
871 if (!mesa_bufferptr)
872 mesa_bufferptr = mpglAllocateMemoryMESA(mDisplay, mScreen, needed_size, 0, 1.0, 1.0);
873 mesa_buffersize = needed_size;
874 #endif
875 mpi->planes[0] = mesa_bufferptr;
876 } else {
877 if (!gl_buffer)
878 mpglGenBuffers(1, &gl_buffer);
879 mpglBindBuffer(GL_PIXEL_UNPACK_BUFFER, gl_buffer);
880 if (needed_size > gl_buffersize) {
881 gl_buffersize = needed_size;
882 mpglBufferData(GL_PIXEL_UNPACK_BUFFER, gl_buffersize,
883 NULL, GL_DYNAMIC_DRAW);
885 if (!gl_bufferptr)
886 gl_bufferptr = mpglMapBuffer(GL_PIXEL_UNPACK_BUFFER, GL_WRITE_ONLY);
887 mpi->planes[0] = gl_bufferptr;
888 mpglBindBuffer(GL_PIXEL_UNPACK_BUFFER, 0);
890 if (!mpi->planes[0]) {
891 if (!err_shown)
892 mp_msg(MSGT_VO, MSGL_ERR, "[gl] could not acquire buffer for dr\n"
893 "Expect a _major_ speed penalty\n");
894 err_shown = 1;
895 return VO_FALSE;
897 if (is_yuv) {
898 // planar YUV
899 int xs, ys;
900 mp_get_chroma_shift(image_format, &xs, &ys);
901 mpi->flags |= MP_IMGFLAG_COMMON_STRIDE | MP_IMGFLAG_COMMON_PLANE;
902 mpi->stride[0] = mpi->width;
903 mpi->planes[1] = mpi->planes[0] + mpi->stride[0] * mpi->height;
904 mpi->stride[1] = mpi->width >> xs;
905 mpi->planes[2] = mpi->planes[1] + mpi->stride[1] * (mpi->height >> ys);
906 mpi->stride[2] = mpi->width >> xs;
907 if (ati_hack && !mesa_buffer) {
908 mpi->flags &= ~MP_IMGFLAG_COMMON_PLANE;
909 if (!gl_buffer_uv[0]) mpglGenBuffers(2, gl_buffer_uv);
910 if (mpi->stride[1] * mpi->height > gl_buffersize_uv) {
911 mpglBindBuffer(GL_PIXEL_UNPACK_BUFFER, gl_buffer_uv[0]);
912 mpglBufferData(GL_PIXEL_UNPACK_BUFFER, mpi->stride[1] * mpi->height,
913 NULL, GL_DYNAMIC_DRAW);
914 mpglBindBuffer(GL_PIXEL_UNPACK_BUFFER, gl_buffer_uv[1]);
915 mpglBufferData(GL_PIXEL_UNPACK_BUFFER, mpi->stride[1] * mpi->height,
916 NULL, GL_DYNAMIC_DRAW);
917 gl_buffersize_uv = mpi->stride[1] * mpi->height;
919 if (!gl_bufferptr_uv[0]) {
920 mpglBindBuffer(GL_PIXEL_UNPACK_BUFFER, gl_buffer_uv[0]);
921 gl_bufferptr_uv[0] = mpglMapBuffer(GL_PIXEL_UNPACK_BUFFER, GL_WRITE_ONLY);
922 mpglBindBuffer(GL_PIXEL_UNPACK_BUFFER, gl_buffer_uv[1]);
923 gl_bufferptr_uv[1] = mpglMapBuffer(GL_PIXEL_UNPACK_BUFFER, GL_WRITE_ONLY);
925 mpi->planes[1] = gl_bufferptr_uv[0];
926 mpi->planes[2] = gl_bufferptr_uv[1];
929 mpi->flags |= MP_IMGFLAG_DIRECT;
930 return VO_TRUE;
933 static void clear_border(uint8_t *dst, int start, int stride, int height, int full_height, int value) {
934 int right_border = stride - start;
935 int bottom_border = full_height - height;
936 while (height > 0) {
937 memset(dst + start, value, right_border);
938 dst += stride;
939 height--;
941 if (bottom_border > 0)
942 memset(dst, value, stride * bottom_border);
945 static uint32_t draw_image(mp_image_t *mpi) {
946 int slice = slice_height;
947 int stride[3];
948 unsigned char *planes[3];
949 mp_image_t mpi2 = *mpi;
950 int w = mpi->w, h = mpi->h;
951 if (mpi->flags & MP_IMGFLAG_DRAW_CALLBACK)
952 goto skip_upload;
953 mpi2.flags = 0; mpi2.type = MP_IMGTYPE_TEMP;
954 mpi2.width = mpi2.w; mpi2.height = mpi2.h;
955 if (force_pbo && !(mpi->flags & MP_IMGFLAG_DIRECT) && !gl_bufferptr && get_image(&mpi2) == VO_TRUE) {
956 int bpp = is_yuv ? 8 : mpi->bpp;
957 int xs, ys;
958 mp_get_chroma_shift(image_format, &xs, &ys);
959 memcpy_pic(mpi2.planes[0], mpi->planes[0], mpi->w * bpp / 8, mpi->h, mpi2.stride[0], mpi->stride[0]);
960 if (is_yuv) {
961 memcpy_pic(mpi2.planes[1], mpi->planes[1], mpi->w >> xs, mpi->h >> ys, mpi2.stride[1], mpi->stride[1]);
962 memcpy_pic(mpi2.planes[2], mpi->planes[2], mpi->w >> xs, mpi->h >> ys, mpi2.stride[2], mpi->stride[2]);
964 if (ati_hack) { // since we have to do a full upload we need to clear the borders
965 clear_border(mpi2.planes[0], mpi->w * bpp / 8, mpi2.stride[0], mpi->h, mpi2.height, 0);
966 if (is_yuv) {
967 clear_border(mpi2.planes[1], mpi->w >> xs, mpi2.stride[1], mpi->h >> ys, mpi2.height >> ys, 128);
968 clear_border(mpi2.planes[2], mpi->w >> xs, mpi2.stride[2], mpi->h >> ys, mpi2.height >> ys, 128);
971 mpi = &mpi2;
973 stride[0] = mpi->stride[0]; stride[1] = mpi->stride[1]; stride[2] = mpi->stride[2];
974 planes[0] = mpi->planes[0]; planes[1] = mpi->planes[1]; planes[2] = mpi->planes[2];
975 mpi_flipped = stride[0] < 0;
976 if (mpi->flags & MP_IMGFLAG_DIRECT) {
977 if (mesa_buffer) {
978 mpglPixelStorei(GL_UNPACK_CLIENT_STORAGE_APPLE, 1);
979 w = texture_width;
980 } else {
981 intptr_t base = (intptr_t)planes[0];
982 if (ati_hack) { w = texture_width; h = texture_height; }
983 if (mpi_flipped)
984 base += (mpi->h - 1) * stride[0];
985 planes[0] -= base;
986 planes[1] -= base;
987 planes[2] -= base;
988 mpglBindBuffer(GL_PIXEL_UNPACK_BUFFER, gl_buffer);
989 mpglUnmapBuffer(GL_PIXEL_UNPACK_BUFFER);
990 gl_bufferptr = NULL;
991 if (!(mpi->flags & MP_IMGFLAG_COMMON_PLANE))
992 planes[0] = planes[1] = planes[2] = NULL;
994 slice = 0; // always "upload" full texture
996 glUploadTex(gl_target, gl_format, gl_type, planes[0], stride[0],
997 mpi->x, mpi->y, w, h, slice);
998 if (is_yuv) {
999 int xs, ys;
1000 mp_get_chroma_shift(image_format, &xs, &ys);
1001 if ((mpi->flags & MP_IMGFLAG_DIRECT) && !(mpi->flags & MP_IMGFLAG_COMMON_PLANE)) {
1002 mpglBindBuffer(GL_PIXEL_UNPACK_BUFFER, gl_buffer_uv[0]);
1003 mpglUnmapBuffer(GL_PIXEL_UNPACK_BUFFER);
1004 gl_bufferptr_uv[0] = NULL;
1006 mpglActiveTexture(GL_TEXTURE1);
1007 glUploadTex(gl_target, gl_format, gl_type, planes[1], stride[1],
1008 mpi->x >> xs, mpi->y >> ys, w >> xs, h >> ys, slice);
1009 if ((mpi->flags & MP_IMGFLAG_DIRECT) && !(mpi->flags & MP_IMGFLAG_COMMON_PLANE)) {
1010 mpglBindBuffer(GL_PIXEL_UNPACK_BUFFER, gl_buffer_uv[1]);
1011 mpglUnmapBuffer(GL_PIXEL_UNPACK_BUFFER);
1012 gl_bufferptr_uv[1] = NULL;
1014 mpglActiveTexture(GL_TEXTURE2);
1015 glUploadTex(gl_target, gl_format, gl_type, planes[2], stride[2],
1016 mpi->x >> xs, mpi->y >> ys, w >> xs, h >> ys, slice);
1017 mpglActiveTexture(GL_TEXTURE0);
1019 if (mpi->flags & MP_IMGFLAG_DIRECT) {
1020 if (mesa_buffer) mpglPixelStorei(GL_UNPACK_CLIENT_STORAGE_APPLE, 0);
1021 else mpglBindBuffer(GL_PIXEL_UNPACK_BUFFER, 0);
1023 skip_upload:
1024 if (vo_doublebuffering) do_render();
1025 return VO_TRUE;
1028 static int
1029 draw_frame(uint8_t *src[])
1031 return VO_ERROR;
1034 static int
1035 query_format(uint32_t format)
1037 int caps = VFCAP_CSP_SUPPORTED | VFCAP_CSP_SUPPORTED_BY_HW |
1038 VFCAP_FLIP |
1039 VFCAP_HWSCALE_UP | VFCAP_HWSCALE_DOWN | VFCAP_ACCEPT_STRIDE;
1040 if (use_osd)
1041 caps |= VFCAP_OSD | VFCAP_EOSD | (scaled_osd ? 0 : VFCAP_EOSD_UNSCALED);
1042 if (format == IMGFMT_RGB24 || format == IMGFMT_RGBA)
1043 return caps;
1044 if (use_yuv && mp_get_chroma_shift(format, NULL, NULL) &&
1045 (IMGFMT_IS_YUVP16_NE(format) || !IMGFMT_IS_YUVP16(format)))
1046 return caps;
1047 // HACK, otherwise we get only b&w with some filters (e.g. -vf eq)
1048 // ideally MPlayer should be fixed instead not to use Y800 when it has the choice
1049 if (!use_yuv && (format == IMGFMT_Y8 || format == IMGFMT_Y800))
1050 return 0;
1051 if (!use_ycbcr && (format == IMGFMT_UYVY || format == IMGFMT_YUY2))
1052 return 0;
1053 if (many_fmts &&
1054 glFindFormat(format, NULL, NULL, NULL, NULL))
1055 return caps;
1056 return 0;
1060 static void
1061 uninit(void)
1063 uninitGl();
1064 if (custom_prog) free(custom_prog);
1065 custom_prog = NULL;
1066 if (custom_tex) free(custom_tex);
1067 custom_tex = NULL;
1068 uninit_mpglcontext(&glctx);
1071 static int valid_csp(void *p)
1073 int *csp = p;
1074 return *csp >= -1 && *csp < MP_CSP_COUNT;
1077 static int valid_csp_lvl(void *p)
1079 int *lvl = p;
1080 return *lvl >= -1 && *lvl < MP_CSP_LEVELCONV_COUNT;
1083 static const opt_t subopts[] = {
1084 {"manyfmts", OPT_ARG_BOOL, &many_fmts, NULL},
1085 {"osd", OPT_ARG_BOOL, &use_osd, NULL},
1086 {"scaled-osd", OPT_ARG_BOOL, &scaled_osd, NULL},
1087 {"aspect", OPT_ARG_BOOL, &use_aspect, NULL},
1088 {"ycbcr", OPT_ARG_BOOL, &use_ycbcr, NULL},
1089 {"slice-height", OPT_ARG_INT, &slice_height, int_non_neg},
1090 {"rectangle", OPT_ARG_INT, &use_rectangle,int_non_neg},
1091 {"yuv", OPT_ARG_INT, &use_yuv, int_non_neg},
1092 {"colorspace", OPT_ARG_INT, &colorspace, valid_csp},
1093 {"levelconv", OPT_ARG_INT, &levelconv, valid_csp_lvl},
1094 {"lscale", OPT_ARG_INT, &lscale, int_non_neg},
1095 {"cscale", OPT_ARG_INT, &cscale, int_non_neg},
1096 {"filter-strength", OPT_ARG_FLOAT, &filter_strength, NULL},
1097 {"ati-hack", OPT_ARG_BOOL, &ati_hack, NULL},
1098 {"force-pbo", OPT_ARG_BOOL, &force_pbo, NULL},
1099 {"mesa-buffer", OPT_ARG_BOOL, &mesa_buffer, NULL},
1100 {"glfinish", OPT_ARG_BOOL, &use_glFinish, NULL},
1101 {"swapinterval", OPT_ARG_INT, &swap_interval,NULL},
1102 {"customprog", OPT_ARG_MSTRZ,&custom_prog, NULL},
1103 {"customtex", OPT_ARG_MSTRZ,&custom_tex, NULL},
1104 {"customtlin", OPT_ARG_BOOL, &custom_tlin, NULL},
1105 {"customtrect", OPT_ARG_BOOL, &custom_trect, NULL},
1106 {"mipmapgen", OPT_ARG_BOOL, &mipmap_gen, NULL},
1107 {"osdcolor", OPT_ARG_INT, &osd_color, NULL},
1108 {NULL}
1111 static int preinit_internal(const char *arg, int allow_sw)
1113 // set defaults
1114 enum MPGLType gltype = GLTYPE_AUTO;
1115 many_fmts = 1;
1116 use_osd = -1;
1117 scaled_osd = 0;
1118 use_aspect = 1;
1119 use_ycbcr = 0;
1120 use_yuv = -1;
1121 colorspace = -1;
1122 levelconv = -1;
1123 lscale = 0;
1124 cscale = 0;
1125 filter_strength = 0.5;
1126 use_rectangle = -1;
1127 use_glFinish = 0;
1128 ati_hack = -1;
1129 force_pbo = -1;
1130 mesa_buffer = 0;
1131 swap_interval = 1;
1132 slice_height = 0;
1133 custom_prog = NULL;
1134 custom_tex = NULL;
1135 custom_tlin = 1;
1136 custom_trect = 0;
1137 mipmap_gen = 0;
1138 osd_color = 0xffffff;
1139 if (subopt_parse(arg, subopts) != 0) {
1140 mp_msg(MSGT_VO, MSGL_FATAL,
1141 "\n-vo gl command line help:\n"
1142 "Example: mplayer -vo gl:slice-height=4\n"
1143 "\nOptions:\n"
1144 " nomanyfmts\n"
1145 " Disable extended color formats for OpenGL 1.2 and later\n"
1146 " slice-height=<0-...>\n"
1147 " Slice size for texture transfer, 0 for whole image\n"
1148 " noosd\n"
1149 " Do not use OpenGL OSD code\n"
1150 " scaled-osd\n"
1151 " Render OSD at movie resolution and scale it\n"
1152 " noaspect\n"
1153 " Do not do aspect scaling\n"
1154 " rectangle=<0,1,2>\n"
1155 " 0: use power-of-two textures\n"
1156 " 1: use texture_rectangle\n"
1157 " 2: use texture_non_power_of_two\n"
1158 " ati-hack\n"
1159 " Workaround ATI bug with PBOs\n"
1160 " force-pbo\n"
1161 " Force use of PBO even if this involves an extra memcpy\n"
1162 " glfinish\n"
1163 " Call glFinish() before swapping buffers\n"
1164 " swapinterval=<n>\n"
1165 " Interval in displayed frames between to buffer swaps.\n"
1166 " 1 is equivalent to enable VSYNC, 0 to disable VSYNC.\n"
1167 " Requires GLX_SGI_swap_control support to work.\n"
1168 " ycbcr\n"
1169 " also try to use the GL_MESA_ycbcr_texture extension\n"
1170 " yuv=<n>\n"
1171 " 0: use software YUV to RGB conversion.\n"
1172 " 1: use register combiners (nVidia only, for older cards).\n"
1173 " 2: use fragment program.\n"
1174 " 3: use fragment program with gamma correction.\n"
1175 " 4: use fragment program with gamma correction via lookup.\n"
1176 " 5: use ATI-specific method (for older cards).\n"
1177 " 6: use lookup via 3D texture.\n"
1178 " colorspace=<n>\n"
1179 " 0: MPlayer's default YUV to RGB conversion\n"
1180 " 1: YUV to RGB according to BT.601\n"
1181 " 2: YUV to RGB according to BT.709\n"
1182 " 3: YUV to RGB according to SMPT-240M\n"
1183 " 4: YUV to RGB according to EBU\n"
1184 " 5: XYZ to RGB\n"
1185 " levelconv=<n>\n"
1186 " 0: YUV to RGB converting TV to PC levels\n"
1187 " 1: YUV to RGB converting PC to TV levels\n"
1188 " 2: YUV to RGB without converting levels\n"
1189 " lscale=<n>\n"
1190 " 0: use standard bilinear scaling for luma.\n"
1191 " 1: use improved bicubic scaling for luma.\n"
1192 " 2: use cubic in X, linear in Y direction scaling for luma.\n"
1193 " 3: as 1 but without using a lookup texture.\n"
1194 " 4: experimental unsharp masking (sharpening).\n"
1195 " 5: experimental unsharp masking (sharpening) with larger radius.\n"
1196 " cscale=<n>\n"
1197 " as lscale but for chroma (2x slower with little visible effect).\n"
1198 " filter-strength=<value>\n"
1199 " set the effect strength for some lscale/cscale filters\n"
1200 " customprog=<filename>\n"
1201 " use a custom YUV conversion program\n"
1202 " customtex=<filename>\n"
1203 " use a custom YUV conversion lookup texture\n"
1204 " nocustomtlin\n"
1205 " use GL_NEAREST scaling for customtex texture\n"
1206 " customtrect\n"
1207 " use texture_rectangle for customtex texture\n"
1208 " mipmapgen\n"
1209 " generate mipmaps for the video image (use with TXB in customprog)\n"
1210 " osdcolor=<0xAARRGGBB>\n"
1211 " use the given color for the OSD\n"
1212 "\n" );
1213 return -1;
1215 if (!init_mpglcontext(&glctx, gltype))
1216 goto err_out;
1217 if (use_yuv == -1 || !allow_sw) {
1218 if (create_window(320, 200, VOFLAG_HIDDEN, NULL) < 0)
1219 goto err_out;
1220 if (glctx.setGlWindow(&glctx) == SET_WINDOW_FAILED)
1221 goto err_out;
1222 if (!allow_sw && isSoftwareGl())
1223 goto err_out;
1224 autodetectGlExtensions();
1226 if (many_fmts)
1227 mp_msg(MSGT_VO, MSGL_INFO, "[gl] using extended formats. "
1228 "Use -vo gl:nomanyfmts if playback fails.\n");
1229 mp_msg(MSGT_VO, MSGL_V, "[gl] Using %d as slice height "
1230 "(0 means image height).\n", slice_height);
1232 return 0;
1234 err_out:
1235 uninit();
1236 return -1;
1239 static int preinit(const char *arg)
1241 return preinit_internal(arg, 1);
1244 static int preinit_nosw(const char *arg)
1246 return preinit_internal(arg, 0);
1249 static const struct {
1250 const char *name;
1251 int *value;
1252 int supportmask;
1253 } eq_map[] = {
1254 {"brightness", &eq_bri, MASK_NOT_COMBINERS},
1255 {"contrast", &eq_cont, MASK_NOT_COMBINERS},
1256 {"saturation", &eq_sat, MASK_ALL_YUV },
1257 {"hue", &eq_hue, MASK_ALL_YUV },
1258 {"gamma", &eq_rgamma, MASK_GAMMA_SUPPORT},
1259 {"red_gamma", &eq_rgamma, MASK_GAMMA_SUPPORT},
1260 {"green_gamma", &eq_ggamma, MASK_GAMMA_SUPPORT},
1261 {"blue_gamma", &eq_bgamma, MASK_GAMMA_SUPPORT},
1262 {NULL, NULL, 0 }
1265 static int control(uint32_t request, void *data)
1267 switch (request) {
1268 case VOCTRL_PAUSE:
1269 case VOCTRL_RESUME:
1270 int_pause = (request == VOCTRL_PAUSE);
1271 return VO_TRUE;
1272 case VOCTRL_QUERY_FORMAT:
1273 return query_format(*(uint32_t*)data);
1274 case VOCTRL_GET_IMAGE:
1275 return get_image(data);
1276 case VOCTRL_DRAW_IMAGE:
1277 return draw_image(data);
1278 case VOCTRL_DRAW_EOSD:
1279 if (!data)
1280 return VO_FALSE;
1281 genEOSD(data);
1282 if (vo_doublebuffering) do_render_osd(2);
1283 return VO_TRUE;
1284 case VOCTRL_GET_EOSD_RES:
1286 mp_eosd_res_t *r = data;
1287 r->w = vo_dwidth; r->h = vo_dheight;
1288 r->mt = r->mb = r->ml = r->mr = 0;
1289 if (scaled_osd) {r->w = image_width; r->h = image_height;}
1290 else if (aspect_scaling()) {
1291 r->ml = r->mr = ass_border_x;
1292 r->mt = r->mb = ass_border_y;
1295 return VO_TRUE;
1296 case VOCTRL_ONTOP:
1297 glctx.ontop();
1298 return VO_TRUE;
1299 case VOCTRL_FULLSCREEN:
1300 glctx.fullscreen();
1301 resize(vo_dwidth, vo_dheight);
1302 return VO_TRUE;
1303 case VOCTRL_BORDER:
1304 glctx.border();
1305 resize(vo_dwidth, vo_dheight);
1306 return VO_TRUE;
1307 case VOCTRL_GET_PANSCAN:
1308 if (!use_aspect) return VO_NOTIMPL;
1309 return VO_TRUE;
1310 case VOCTRL_SET_PANSCAN:
1311 if (!use_aspect) return VO_NOTIMPL;
1312 resize(vo_dwidth, vo_dheight);
1313 return VO_TRUE;
1314 case VOCTRL_GET_EQUALIZER:
1315 if (is_yuv) {
1316 struct voctrl_get_equalizer_args *args = data;
1317 int i;
1318 for (i = 0; eq_map[i].name; i++)
1319 if (strcmp(args->name, eq_map[i].name) == 0) break;
1320 if (!(eq_map[i].supportmask & (1 << use_yuv)))
1321 break;
1322 *args->valueptr = *eq_map[i].value;
1323 return VO_TRUE;
1325 break;
1326 case VOCTRL_SET_EQUALIZER:
1327 if (is_yuv) {
1328 struct voctrl_set_equalizer_args *args = data;
1329 int i;
1330 for (i = 0; eq_map[i].name; i++)
1331 if (strcmp(args->name, eq_map[i].name) == 0) break;
1332 if (!(eq_map[i].supportmask & (1 << use_yuv)))
1333 break;
1334 *eq_map[i].value = args->value;
1335 update_yuvconv();
1336 return VO_TRUE;
1338 break;
1339 case VOCTRL_UPDATE_SCREENINFO:
1340 glctx.update_xinerama_info();
1341 return VO_TRUE;
1342 case VOCTRL_REDRAW_OSD:
1343 if (vo_doublebuffering)
1344 do_render();
1345 draw_osd();
1346 if (vo_doublebuffering)
1347 do_render_osd(2);
1348 flip_page();
1349 return VO_TRUE;
1351 return VO_NOTIMPL;