summaryrefslogtreecommitdiffstats
path: root/libvo/video_out.c
diff options
context:
space:
mode:
authoralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-04-06 00:04:48 +0000
committeralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-04-06 00:04:48 +0000
commit99b14d0fa38cecdc41cdd2fd3e007a84e0314a57 (patch)
treeca913b732a987f45f2e465bd7ad40b2d37e47073 /libvo/video_out.c
parenta42bd5f3617975f31c9015693473b15b366410a9 (diff)
downloadmpv-99b14d0fa38cecdc41cdd2fd3e007a84e0314a57.tar.bz2
mpv-99b14d0fa38cecdc41cdd2fd3e007a84e0314a57.tar.xz
libcaca video output driver by Howell Tam
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12130 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 df26b6fcc6..d4ed70ce68 100644
--- a/libvo/video_out.c
+++ b/libvo/video_out.c
@@ -83,6 +83,7 @@ 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;
+extern vo_functions_t video_out_caca;
extern vo_functions_t video_out_mpegpes;
extern vo_functions_t video_out_yuv4mpeg;
#ifdef HAVE_DIRECTX
@@ -181,6 +182,9 @@ vo_functions_t* video_out_drivers[] =
#ifdef HAVE_AA
&video_out_aa,
#endif
+#ifdef HAVE_CACA
+ &video_out_caca,
+#endif
#ifdef HAVE_DXR2
&video_out_dxr2,
#endif