diff options
-rw-r--r-- | libvo/video_out.c | 6 |
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 }; |