summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authoriive <iive@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-06-21 01:47:26 +0000
committeriive <iive@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-06-21 01:47:26 +0000
commitfd55a47f0118182fee26e563417a7be101cca148 (patch)
tree9c4ae994f27321c73311390249080b0b134fdcbd /libvo
parent26df2d979706d673e253d3cb8ae8a5ad2dff17f7 (diff)
downloadmpv-fd55a47f0118182fee26e563417a7be101cca148.tar.bz2
mpv-fd55a47f0118182fee26e563417a7be101cca148.tar.xz
basic xvmc image support
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10317 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-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 44b8923136..823ceabe5f 100644
--- a/libvo/video_out.c
+++ b/libvo/video_out.c
@@ -53,6 +53,7 @@ extern vo_functions_t video_out_mga;
extern vo_functions_t video_out_xmga;
extern vo_functions_t video_out_x11;
extern vo_functions_t video_out_xover;
+extern vo_functions_t video_out_xvmc;
extern vo_functions_t video_out_xv;
extern vo_functions_t video_out_gl;
extern vo_functions_t video_out_gl2;
@@ -127,6 +128,9 @@ vo_functions_t* video_out_drivers[] =
#ifdef HAVE_TDFXFB
&video_out_tdfxfb,
#endif
+#ifdef HAVE_XVMC
+ &video_out_xvmc,
+#endif
#ifdef HAVE_XV
&video_out_xv,
#endif