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.
This commit is contained in:
Stefano Pigozzi 2012-07-25 23:01:08 +02:00 committed by Uoti Urpala
parent 02add991fb
commit 7dfaaa9510
1 changed files with 3 additions and 3 deletions

View File

@ -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
};