summaryrefslogtreecommitdiffstats
path: root/libvo/video_out.c
diff options
context:
space:
mode:
authoratmosfear <atmosfear@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-04-19 20:22:44 +0000
committeratmosfear <atmosfear@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-04-19 20:22:44 +0000
commitfdd7952844cb5d640a50b653d8395264e0100345 (patch)
treeb0891191c236bee8e741ccb993e7d16b5afc1dc7 /libvo/video_out.c
parentdf59e5632c9eba3e573bd4fd5347b103ed28dedf (diff)
downloadmpv-fdd7952844cb5d640a50b653d8395264e0100345.tar.bz2
mpv-fdd7952844cb5d640a50b653d8395264e0100345.tar.xz
fixed missing HAVE_PNG
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@530 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/video_out.c')
-rw-r--r--libvo/video_out.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/libvo/video_out.c b/libvo/video_out.c
index 0e2bfc279a..85b2212bb1 100644
--- a/libvo/video_out.c
+++ b/libvo/video_out.c
@@ -100,11 +100,13 @@ vo_functions_t* video_out_drivers[] =
#ifdef HAVE_SVGALIB
&video_out_svga,
#endif
+#ifdef HAVE_PNG
+ &video_out_png,
+#endif
&video_out_null,
&video_out_odivx,
&video_out_pgm,
&video_out_md5,
- &video_out_png,
NULL
};