summaryrefslogtreecommitdiffstats
path: root/libvo/video_out.c
diff options
context:
space:
mode:
authorwm4 <wm4@mplayer2.org>2011-12-18 20:02:31 +0100
committerwm4 <wm4@mplayer2.org>2012-02-09 04:58:41 +0100
commit4352f9feca37f1294c75e4bf2326e978f0e659df (patch)
treed06d9057bd01e259ff436c8cab4776729d942585 /libvo/video_out.c
parent93ae55c2c34357b892bff36d678a5d46c22d5a0c (diff)
downloadmpv-4352f9feca37f1294c75e4bf2326e978f0e659df.tar.bz2
mpv-4352f9feca37f1294c75e4bf2326e978f0e659df.tar.xz
vo_gl: add "backend" suboption to allow selecting the GUI backend
The "backend" suboption allows selecting the GUI backend used by vo_gl. Normally, it's auto-selected, but sometimes it's desireable to explicitly select it. Remove the gl_sdl VO. This can now be done by using: --vo=gl:backend=sdl This is based on svn commit 34438, and tries to be compatible with it. The undocumented numeric backend names serve this purpose. (They are undocumented because names are preferred.)
Diffstat (limited to 'libvo/video_out.c')
-rw-r--r--libvo/video_out.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/libvo/video_out.c b/libvo/video_out.c
index 48cfb2a609..1099fdffec 100644
--- a/libvo/video_out.c
+++ b/libvo/video_out.c
@@ -84,7 +84,6 @@ extern struct vo_driver video_out_vdpau;
extern struct vo_driver video_out_xv;
extern struct vo_driver video_out_gl_nosw;
extern struct vo_driver video_out_gl;
-extern struct vo_driver video_out_gl_sdl;
extern struct vo_driver video_out_dga;
extern struct vo_driver video_out_sdl;
extern struct vo_driver video_out_3dfx;
@@ -181,9 +180,6 @@ const struct vo_driver *video_out_drivers[] =
#ifdef CONFIG_GL
&video_out_gl,
#endif
-#ifdef CONFIG_GL_SDL
- &video_out_gl_sdl,
-#endif
#ifdef CONFIG_DGA
&video_out_dga,
#endif