diff options
author | atmosfear <atmosfear@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2001-04-19 20:14:30 +0000 |
---|---|---|
committer | atmosfear <atmosfear@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2001-04-19 20:14:30 +0000 |
commit | df59e5632c9eba3e573bd4fd5347b103ed28dedf (patch) | |
tree | 35aa8dfbd2d65ca65185d1e68e0e4efbbbb77475 /libvo/video_out.c | |
parent | e1388820d69eef8cf1aa7fad9ace506c1e22d847 (diff) | |
download | mpv-df59e5632c9eba3e573bd4fd5347b103ed28dedf.tar.bz2 mpv-df59e5632c9eba3e573bd4fd5347b103ed28dedf.tar.xz |
added vo png support
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@529 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/video_out.c')
-rw-r--r-- | libvo/video_out.c | 2 |
1 files changed, 2 insertions, 0 deletions
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 }; |