summaryrefslogtreecommitdiffstats
path: root/libvo/video_out.c
diff options
context:
space:
mode:
Diffstat (limited to 'libvo/video_out.c')
-rw-r--r--libvo/video_out.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/libvo/video_out.c b/libvo/video_out.c
index 823ceabe5f..ef94ebb4ff 100644
--- a/libvo/video_out.c
+++ b/libvo/video_out.c
@@ -104,6 +104,9 @@ extern vo_functions_t video_out_xvidix;
#ifdef HAVE_TDFX_VID
extern vo_functions_t video_out_tdfx_vid;
#endif
+#ifdef HAVE_TGA
+extern vo_functions_t video_out_tga;
+#endif
vo_functions_t* video_out_drivers[] =
{
@@ -201,6 +204,9 @@ vo_functions_t* video_out_drivers[] =
#if defined(CONFIG_VIDIX) && defined(HAVE_X11)
&video_out_xvidix,
#endif
+#ifdef HAVE_TGA
+ &video_out_tga,
+#endif
NULL
};