summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-08-03 17:14:35 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-08-03 17:14:35 +0000
commit2824218de56fc1de57584c444e1bc0e1ec2d8412 (patch)
tree6135c8ffb80023543dccdaeac9d96fe3616b51cf /libvo
parentdc0541c1426ea1a30a9a604c68ec6087ecec4217 (diff)
downloadmpv-2824218de56fc1de57584c444e1bc0e1ec2d8412.tar.bz2
mpv-2824218de56fc1de57584c444e1bc0e1ec2d8412.tar.xz
add XVR-100 vo, patch by Balatoni Denes (dbalatoni interware hu)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24004 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 14899b82a5..5312c75e48 100644
--- a/libvo/video_out.c
+++ b/libvo/video_out.c
@@ -129,6 +129,9 @@ extern vo_functions_t video_out_cvidix;
#ifdef HAVE_TDFX_VID
extern vo_functions_t video_out_tdfx_vid;
#endif
+#ifdef HAVE_XVR100
+extern vo_functions_t video_out_xvr100;
+#endif
#ifdef HAVE_TGA
extern vo_functions_t video_out_tga;
#endif
@@ -147,6 +150,9 @@ extern vo_functions_t video_out_md5sum;
vo_functions_t* video_out_drivers[] =
{
+#ifdef HAVE_XVR100
+ &video_out_xvr100,
+#endif
#ifdef HAVE_TDFX_VID
&video_out_tdfx_vid,
#endif