summaryrefslogtreecommitdiffstats
path: root/libvo/video_out.c
diff options
context:
space:
mode:
authoratmos4 <atmos4@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-08-14 12:30:56 +0000
committeratmos4 <atmos4@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-08-14 12:30:56 +0000
commit76eadb38e027f545715c1b755b7ea35110ac71b4 (patch)
tree509a2b4872b6befdfccb900b7d7aaf78e990f36d /libvo/video_out.c
parent1ef79e9f0007c34373df62e73ff3825ca9e91e5d (diff)
downloadmpv-76eadb38e027f545715c1b755b7ea35110ac71b4.tar.bz2
mpv-76eadb38e027f545715c1b755b7ea35110ac71b4.tar.xz
Added cool aalib vo driver.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1512 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/video_out.c')
-rw-r--r--libvo/video_out.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/libvo/video_out.c b/libvo/video_out.c
index 939d3df8bf..bd9234b2fb 100644
--- a/libvo/video_out.c
+++ b/libvo/video_out.c
@@ -66,6 +66,7 @@ extern vo_functions_t video_out_fbdev;
extern vo_functions_t video_out_svga;
extern vo_functions_t video_out_png;
extern vo_functions_t video_out_ggi;
+extern vo_functions_t video_out_aa;
vo_functions_t* video_out_drivers[] =
{
@@ -106,6 +107,10 @@ vo_functions_t* video_out_drivers[] =
#ifdef HAVE_SVGALIB
&video_out_svga,
#endif
+#ifdef HAVE_AA
+ &video_out_aa,
+#endif
+
#ifdef HAVE_PNG
&video_out_png,
#endif