summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authorStefano Pigozzi <stefano.pigozzi@gmail.com>2012-07-25 23:01:08 +0200
committerUoti Urpala <uau@mplayer2.org>2012-07-27 16:53:57 +0300
commit7dfaaa95104a8e6dc024fddaf1b49c71768f1be7 (patch)
treeaf78f2860f41e341a35818233faeca9e0672f663 /libvo
parent02add991fbee7d2e00317cc39c1d05d475a55fc0 (diff)
downloadmpv-7dfaaa95104a8e6dc024fddaf1b49c71768f1be7.tar.bz2
mpv-7dfaaa95104a8e6dc024fddaf1b49c71768f1be7.tar.xz
vo_sharedbuffer: remove from autoprobe list
This video output is headless and only intended to work with GUIs explicitly asking for it. This makes it useless to have it in the autoprobe list.
Diffstat (limited to 'libvo')
-rw-r--r--libvo/video_out.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libvo/video_out.c b/libvo/video_out.c
index b604a52391..d0cd991e8b 100644
--- a/libvo/video_out.c
+++ b/libvo/video_out.c
@@ -180,9 +180,6 @@ const struct vo_driver *video_out_drivers[] =
#if (defined CONFIG_GL && !defined CONFIG_GL_COCOA)
&video_out_gl,
#endif
-#ifdef CONFIG_SHAREDBUFFER
- &video_out_sharedbuffer,
-#endif
#ifdef CONFIG_GL_SDL
&video_out_gl_sdl,
#endif
@@ -249,6 +246,9 @@ const struct vo_driver *video_out_drivers[] =
#ifdef CONFIG_MD5SUM
&video_out_md5sum,
#endif
+#ifdef CONFIG_SHAREDBUFFER
+ &video_out_sharedbuffer,
+#endif
NULL
};