summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-09-28 19:03:50 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-09-28 19:03:50 +0000
commit309df4a227bf7d21aa1a8cdb807582f8915ba7d9 (patch)
treeb06b1aff86794236655d15ee7933206b161f51ec /libvo
parentd398c27b00cc0f6e23601beb100f9dea36860a06 (diff)
downloadmpv-309df4a227bf7d21aa1a8cdb807582f8915ba7d9.tar.bz2
mpv-309df4a227bf7d21aa1a8cdb807582f8915ba7d9.tar.xz
-vo directx driver by Sascha Sommer <saschasommer@freenet.de>
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7537 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/video_out.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/libvo/video_out.c b/libvo/video_out.c
index d6173e8dba..10e584f4e0 100644
--- a/libvo/video_out.c
+++ b/libvo/video_out.c
@@ -70,6 +70,9 @@ extern vo_functions_t video_out_ggi;
extern vo_functions_t video_out_aa;
extern vo_functions_t video_out_mpegpes;
extern vo_functions_t video_out_yuv4mpeg;
+#ifdef HAVE_DIRECTX
+extern vo_functions_t video_out_directx;
+#endif
#ifdef HAVE_DXR2
extern vo_functions_t video_out_dxr2;
#endif
@@ -122,6 +125,9 @@ vo_functions_t* video_out_drivers[] =
#ifdef HAVE_SDL
&video_out_sdl,
#endif
+#ifdef HAVE_DIRECTX
+ &video_out_directx,
+#endif
#ifdef HAVE_GGI
&video_out_ggi,
#endif