summaryrefslogtreecommitdiffstats
path: root/libvo/video_out.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2012-08-06 18:58:17 +0200
committerwm4 <wm4@nowhere>2012-08-06 18:58:17 +0200
commit6ecfa42a463025fddff3756db05a1f2052dcaec0 (patch)
treeed01f740c8b024344ade34200492d97e96271376 /libvo/video_out.c
parent44f23e36e816b84f3a915020aa216d705116acac (diff)
downloadmpv-6ecfa42a463025fddff3756db05a1f2052dcaec0.tar.bz2
mpv-6ecfa42a463025fddff3756db05a1f2052dcaec0.tar.xz
VO: remove vo_gif89a, vo_md5sum, vo_yuv4mpeg
The encoding branch by divverent can handle of these via libavformat. Note: for some reason, libav/ffmpeg have a GIF muxer only, and no demuxer. The gif configure checks needef for the mplayer internal gif demuxer can't be removed yet.
Diffstat (limited to 'libvo/video_out.c')
-rw-r--r--libvo/video_out.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/libvo/video_out.c b/libvo/video_out.c
index 3a2cb20338..8cf0b531c1 100644
--- a/libvo/video_out.c
+++ b/libvo/video_out.c
@@ -83,16 +83,13 @@ extern struct vo_driver video_out_gl3;
extern struct vo_driver video_out_null;
extern struct vo_driver video_out_image;
extern struct vo_driver video_out_caca;
-extern struct vo_driver video_out_yuv4mpeg;
extern struct vo_driver video_out_direct3d;
extern struct vo_driver video_out_direct3d_shaders;
extern struct vo_driver video_out_directx;
extern struct vo_driver video_out_v4l2;
-extern struct vo_driver video_out_gif89a;
extern struct vo_driver video_out_directfb;
extern struct vo_driver video_out_corevideo;
extern struct vo_driver video_out_sharedbuffer;
-extern struct vo_driver video_out_md5sum;
const struct vo_driver *video_out_drivers[] =
{
@@ -139,16 +136,7 @@ const struct vo_driver *video_out_drivers[] =
// vo directfb can call exit() if initialization fails
&video_out_directfb,
#endif
-#ifdef CONFIG_YUV4MPEG
- &video_out_yuv4mpeg,
-#endif
&video_out_image,
-#ifdef CONFIG_GIF
- &video_out_gif89a,
-#endif
-#ifdef CONFIG_MD5SUM
- &video_out_md5sum,
-#endif
#ifdef CONFIG_X11
#ifdef CONFIG_GL
&video_out_gl_nosw,