From 7dfaaa95104a8e6dc024fddaf1b49c71768f1be7 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Wed, 25 Jul 2012 23:01:08 +0200 Subject: 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. --- libvo/video_out.c | 6 +++--- 1 file 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 @@ -248,6 +245,9 @@ const struct vo_driver *video_out_drivers[] = #endif #ifdef CONFIG_MD5SUM &video_out_md5sum, +#endif +#ifdef CONFIG_SHAREDBUFFER + &video_out_sharedbuffer, #endif NULL }; -- cgit v1.2.3