[MPlayer-cvslog] r27956 - trunk/libvo/video_out.c
reimar
subversion at mplayerhq.hu
Tue Nov 18 14:18:55 CET 2008
Author: reimar
Date: Tue Nov 18 14:18:55 2008
New Revision: 27956
Log:
100l, the video_out_drivers list must be sorted by priority, not
alphabetically. For now, vo_directx should be preferred over
vo_direct3d.
Modified:
trunk/libvo/video_out.c
Modified: trunk/libvo/video_out.c
==============================================================================
--- trunk/libvo/video_out.c (original)
+++ trunk/libvo/video_out.c Tue Nov 18 14:18:55 2008
@@ -123,12 +123,12 @@ const vo_functions_t* const video_out_dr
#ifdef CONFIG_TDFX_VID
&video_out_tdfx_vid,
#endif
-#ifdef CONFIG_DIRECT3D
- &video_out_direct3d,
-#endif
#ifdef CONFIG_DIRECTX
&video_out_directx,
#endif
+#ifdef CONFIG_DIRECT3D
+ &video_out_direct3d,
+#endif
#ifdef CONFIG_COREVIDEO
&video_out_macosx,
#endif
More information about the MPlayer-cvslog
mailing list