0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

100l, the video_out_drivers list must be sorted by priority, not

alphabetically. For now, vo_directx should be preferred over
vo_direct3d.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27956 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2008-11-18 13:18:55 +00:00
parent af366bff51
commit af25bb3acf

View File

@ -123,12 +123,12 @@ const vo_functions_t* const video_out_drivers[] =
#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