From df59e5632c9eba3e573bd4fd5347b103ed28dedf Mon Sep 17 00:00:00 2001 From: atmosfear Date: Thu, 19 Apr 2001 20:14:30 +0000 Subject: [PATCH] added vo png support git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@529 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libvo/video_out.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libvo/video_out.c b/libvo/video_out.c index 05898ea7ba..0e2bfc279a 100644 --- a/libvo/video_out.c +++ b/libvo/video_out.c @@ -62,6 +62,7 @@ extern vo_functions_t video_out_md5; extern vo_functions_t video_out_syncfb; extern vo_functions_t video_out_fbdev; extern vo_functions_t video_out_svga; +extern vo_functions_t video_out_png; vo_functions_t* video_out_drivers[] = { @@ -103,6 +104,7 @@ vo_functions_t* video_out_drivers[] = &video_out_odivx, &video_out_pgm, &video_out_md5, + &video_out_png, NULL };