summaryrefslogtreecommitdiffstats
path: root/libvo/video_out.c
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-05-12 01:07:25 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-05-12 01:07:25 +0000
commitc00658414ed5a862f6a029c2ed41768572d8da68 (patch)
treec92052e580e7eccdcff6cdca2829eebf384318f3 /libvo/video_out.c
parentcfb5ef8d6fe2638da6eade1f87abca8c4253b8e7 (diff)
downloadmpv-c00658414ed5a862f6a029c2ed41768572d8da68.tar.bz2
mpv-c00658414ed5a862f6a029c2ed41768572d8da68.tar.xz
-vo gif - by Joey Parrish <joey@yunamusic.com>
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6054 b3059339-0415-0410-9bf9-f77b7e298cf2
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 200f7703e4..f681a43bc9 100644
--- a/libvo/video_out.c
+++ b/libvo/video_out.c
@@ -103,6 +103,9 @@ extern vo_functions_t video_out_dxr3;
#ifdef HAVE_JPEG
extern vo_functions_t video_out_jpeg;
#endif
+#ifdef HAVE_GIF
+extern vo_functions_t video_out_gif89a;
+#endif
#ifdef HAVE_VESA
extern vo_functions_t video_out_vesa;
#endif
@@ -170,6 +173,9 @@ vo_functions_t* video_out_drivers[] =
#ifdef HAVE_JPEG
&video_out_jpeg,
#endif
+#ifdef HAVE_GIF
+ &video_out_gif89a,
+#endif
&video_out_null,
// &video_out_odivx,
&video_out_pgm,