summaryrefslogtreecommitdiffstats
path: root/libvo/video_out.c
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-01-03 14:54:51 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-01-03 14:54:51 +0000
commita7be2e180bedebbf684514155869982ae72254c3 (patch)
tree2b297cf1566c920fa871fafb3a6117e5e62a02a7 /libvo/video_out.c
parent1ebc2cbbd87deaf4306a963a1ff313a2076ec694 (diff)
downloadmpv-a7be2e180bedebbf684514155869982ae72254c3.tar.bz2
mpv-a7be2e180bedebbf684514155869982ae72254c3.tar.xz
Finally add matrixview vo.
Heavily cleaned up/fixed etc. by me, improvements are still possible though. Patch originally by Pigeon <pigeon at pigeond.net> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30182 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 ec4cd9c109..98fa949f52 100644
--- a/libvo/video_out.c
+++ b/libvo/video_out.c
@@ -96,6 +96,7 @@ extern vo_functions_t video_out_vdpau;
extern vo_functions_t video_out_xv;
extern vo_functions_t video_out_gl;
extern vo_functions_t video_out_gl2;
+extern vo_functions_t video_out_matrixview;
extern vo_functions_t video_out_dga;
extern vo_functions_t video_out_sdl;
extern vo_functions_t video_out_3dfx;
@@ -193,6 +194,9 @@ const vo_functions_t* const video_out_drivers[] =
&video_out_gl,
&video_out_gl2,
#endif
+#ifdef CONFIG_MATRIXVIEW
+ &video_out_matrixview,
+#endif
#ifdef CONFIG_DGA
&video_out_dga,
#endif