diff options
author | arpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2003-08-24 18:26:37 +0000 |
---|---|---|
committer | arpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2003-08-24 18:26:37 +0000 |
commit | 284a5b6ec50e1556519e5c5e76106a653613debf (patch) | |
tree | f2d2af5d47ddcf3ae0ada64f6c46b2685f34e4f3 /libvo/video_out.c | |
parent | cbecdb30962db8203ebdbfe24c2e6951f93edc1c (diff) | |
download | mpv-284a5b6ec50e1556519e5c5e76106a653613debf.tar.bz2 mpv-284a5b6ec50e1556519e5c5e76106a653613debf.tar.xz |
TGA image output VO module
patch by Daniele Forghieri ( guru@digitalfantasy.it )
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10690 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/video_out.c')
-rw-r--r-- | libvo/video_out.c | 6 |
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 }; |