aboutsummaryrefslogtreecommitdiffhomepage
path: root/video/out/vo.c
diff options
context:
space:
mode:
authorGravatar rr- <rr-@sakuya.pl>2016-10-13 01:30:45 +0200
committerGravatar wm4 <wm4@nowhere>2016-10-20 14:59:54 +0200
commitdd02369c3223fda5bcb2658b15404d43232bb38f (patch)
treec14d6a356103f6290add7e2548bcb909cca93fbe /video/out/vo.c
parent768448305292f50c72533597c25992b70e8e42ac (diff)
vo_tct: introduce modern caca alternative
Diffstat (limited to 'video/out/vo.c')
-rw-r--r--video/out/vo.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/video/out/vo.c b/video/out/vo.c
index 4b28aadaa1..46908d2d59 100644
--- a/video/out/vo.c
+++ b/video/out/vo.c
@@ -59,6 +59,7 @@ extern const struct vo_driver video_out_sdl;
extern const struct vo_driver video_out_vaapi;
extern const struct vo_driver video_out_wayland;
extern const struct vo_driver video_out_rpi;
+extern const struct vo_driver video_out_tct;
const struct vo_driver *const video_out_drivers[] =
{
@@ -89,6 +90,7 @@ const struct vo_driver *const video_out_drivers[] =
&video_out_null,
// should not be auto-selected
&video_out_image,
+ &video_out_tct,
#if HAVE_CACA
&video_out_caca,
#endif