summaryrefslogtreecommitdiffstats
path: root/video/out/vo.c
diff options
context:
space:
mode:
authorStefano Pigozzi <stefano.pigozzi@gmail.com>2014-09-06 14:01:37 +0200
committerStefano Pigozzi <stefano.pigozzi@gmail.com>2014-09-06 14:10:22 +0200
commita1d3afb395a8cea5327e3155f32c3d808bd52c49 (patch)
tree564b7622a02995433c1f4aa2c697d22bef382617 /video/out/vo.c
parenta6774d3a83481d77716409fa87963983e663dfe2 (diff)
downloadmpv-a1d3afb395a8cea5327e3155f32c3d808bd52c49.tar.bz2
mpv-a1d3afb395a8cea5327e3155f32c3d808bd52c49.tar.xz
vo_corevideo: remove this VO
This was kept in the codebase because it is slightly faster than --vo=opengl on really old Intel cards (from the GMA era). Time to kill it, and let it rest. Fixes #1061
Diffstat (limited to 'video/out/vo.c')
-rw-r--r--video/out/vo.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/video/out/vo.c b/video/out/vo.c
index f7f0f1664a..09d203ab2f 100644
--- a/video/out/vo.c
+++ b/video/out/vo.c
@@ -61,7 +61,6 @@ extern const struct vo_driver video_out_caca;
extern const struct vo_driver video_out_direct3d;
extern const struct vo_driver video_out_direct3d_shaders;
extern const struct vo_driver video_out_sdl;
-extern const struct vo_driver video_out_corevideo;
extern const struct vo_driver video_out_vaapi;
extern const struct vo_driver video_out_wayland;
@@ -77,9 +76,6 @@ const struct vo_driver *const video_out_drivers[] =
&video_out_direct3d_shaders,
&video_out_direct3d,
#endif
-#if HAVE_COREVIDEO
- &video_out_corevideo,
-#endif
#if HAVE_XV
&video_out_xv,
#endif