summaryrefslogtreecommitdiffstats
path: root/libvo/video_out.c
diff options
context:
space:
mode:
authorUoti Urpala <uau@mplayer2.org>2011-05-09 20:15:23 +0300
committerUoti Urpala <uau@mplayer2.org>2011-05-09 20:27:16 +0300
commitcbdb7e630526753efd5716bb67cf627393f3258c (patch)
tree6190afb7ba21e80b2be01add2592f3679374a173 /libvo/video_out.c
parentb21e7dc7a94448066bdcc66287d6c5a68a3e1978 (diff)
downloadmpv-cbdb7e630526753efd5716bb67cf627393f3258c.tar.bz2
mpv-cbdb7e630526753efd5716bb67cf627393f3258c.tar.xz
vo_xvmc: drop XvMC support
Due to libavcodec changes vo_xvmc would have needed some modifications to keep working. However, I think there's little real demand for XvMC, so I'll just drop XvMC support. XvMC only supported MPEG-2, making it of very limited usefulness nowadays, plus the vo_xvmc implementation was not high quality and never worked particularly well or reliably anyway.
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 070a66c679..443ef87cde 100644
--- a/libvo/video_out.c
+++ b/libvo/video_out.c
@@ -80,7 +80,6 @@ extern struct vo_driver video_out_mga;
extern struct vo_driver video_out_xmga;
extern struct vo_driver video_out_x11;
extern struct vo_driver video_out_xover;
-extern struct vo_driver video_out_xvmc;
extern struct vo_driver video_out_vdpau;
extern struct vo_driver video_out_xv;
extern struct vo_driver video_out_gl_nosw;
@@ -230,9 +229,6 @@ const struct vo_driver *video_out_drivers[] =
// vo directfb can call exit() if initialization fails
&video_out_directfb,
#endif
-#if CONFIG_XVMC
- &video_out_xvmc,
-#endif
&video_out_mpegpes,
#ifdef CONFIG_YUV4MPEG
&video_out_yuv4mpeg,