summaryrefslogtreecommitdiffstats
path: root/libvo/video_out.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-03-14 18:44:58 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-03-14 18:44:58 +0000
commit366c3fa13d9bf8733f2cadf331f9a0a09c1e4e1f (patch)
tree345ee15301f3b769ff948ee79e2f2798aab4193f /libvo/video_out.c
parent2adaae35cf2c9beaad4ebf0a75fedf2ffe2733b1 (diff)
downloadmpv-366c3fa13d9bf8733f2cadf331f9a0a09c1e4e1f.tar.bz2
mpv-366c3fa13d9bf8733f2cadf331f9a0a09c1e4e1f.tar.xz
KVA vo driver for OS/2, patch by KO Myung-Hun, komh chollian net
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28950 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/video_out.c')
-rw-r--r--libvo/video_out.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libvo/video_out.c b/libvo/video_out.c
index 05d2291d05..fac5ed90c9 100644
--- a/libvo/video_out.c
+++ b/libvo/video_out.c
@@ -112,6 +112,7 @@ extern vo_functions_t video_out_mpegpes;
extern vo_functions_t video_out_yuv4mpeg;
extern vo_functions_t video_out_direct3d;
extern vo_functions_t video_out_directx;
+extern vo_functions_t video_out_kva;
extern vo_functions_t video_out_dxr2;
extern vo_functions_t video_out_dxr3;
extern vo_functions_t video_out_ivtv;
@@ -146,6 +147,9 @@ const vo_functions_t* const video_out_drivers[] =
#ifdef CONFIG_DIRECT3D
&video_out_direct3d,
#endif
+#ifdef CONFIG_KVA
+ &video_out_kva,
+#endif
#ifdef CONFIG_COREVIDEO
&video_out_macosx,
#endif