summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authornplourde <nplourde@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-05-30 19:16:31 +0000
committernplourde <nplourde@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-05-30 19:16:31 +0000
commitd9bfb0c89eff2c9970275a2c3867237d25ff1c62 (patch)
treeb018336468ab698fcfe9014c824d6ae6bdf847ea /libvo
parent43e34ed5794e7d0c8d374444e64e658069cb3d9d (diff)
downloadmpv-d9bfb0c89eff2c9970275a2c3867237d25ff1c62.tar.bz2
mpv-d9bfb0c89eff2c9970275a2c3867237d25ff1c62.tar.xz
vo_quartz now default vo on OSX
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12513 b3059339-0415-0410-9bf9-f77b7e298cf2
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 6f7dec839d..18f7122708 100644
--- a/libvo/video_out.c
+++ b/libvo/video_out.c
@@ -167,6 +167,9 @@ vo_functions_t* video_out_drivers[] =
&video_out_dga,
// &video_out_fsdga,
#endif
+#ifdef MACOSX
+ &video_out_quartz,
+#endif
#ifdef HAVE_SDL
&video_out_sdl,
#endif
@@ -236,9 +239,6 @@ vo_functions_t* video_out_drivers[] =
#ifdef HAVE_TGA
&video_out_tga,
#endif
-#ifdef MACOSX
- &video_out_quartz,
-#endif
NULL
};