summaryrefslogtreecommitdiffstats
path: root/libvo/video_out.c
diff options
context:
space:
mode:
authorrik <rik@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-09-08 22:41:53 +0000
committerrik <rik@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-09-08 22:41:53 +0000
commit9fe087d53e8a38e1b18a09fe1f027763981b82ba (patch)
treee53e280df7a5b82672287727ea91eff610d16392 /libvo/video_out.c
parent58d1b5dda84a7c15f93bdef339ef175a1472f8e3 (diff)
downloadmpv-9fe087d53e8a38e1b18a09fe1f027763981b82ba.tar.bz2
mpv-9fe087d53e8a38e1b18a09fe1f027763981b82ba.tar.xz
extensible blinkenlights driver, can currently be used for the Arcade http://www.blinkenlights.de/arcade
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7327 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 8e4539a814..5e04f2f269 100644
--- a/libvo/video_out.c
+++ b/libvo/video_out.c
@@ -81,6 +81,7 @@ extern vo_functions_t video_out_tdfxfb;
extern vo_functions_t video_out_null;
//extern vo_functions_t video_out_odivx;
extern vo_functions_t video_out_zr;
+extern vo_functions_t video_out_bl;
extern vo_functions_t video_out_pgm;
extern vo_functions_t video_out_md5;
extern vo_functions_t video_out_syncfb;
@@ -164,6 +165,9 @@ vo_functions_t* video_out_drivers[] =
#ifdef HAVE_ZR
&video_out_zr,
#endif
+#ifdef HAVE_BL
+ &video_out_bl,
+#endif
#ifdef HAVE_PNG
&video_out_png,