comparison libvo/video_out.c @ 528:c19b0f6e03a5

added vo png support
author atmosfear
date Thu, 19 Apr 2001 20:14:30 +0000
parents ccb5ebfaaeac
children b12fa035a3b0
comparison
equal deleted inserted replaced
527:a38decaa04ec 528:c19b0f6e03a5
60 extern vo_functions_t video_out_pgm; 60 extern vo_functions_t video_out_pgm;
61 extern vo_functions_t video_out_md5; 61 extern vo_functions_t video_out_md5;
62 extern vo_functions_t video_out_syncfb; 62 extern vo_functions_t video_out_syncfb;
63 extern vo_functions_t video_out_fbdev; 63 extern vo_functions_t video_out_fbdev;
64 extern vo_functions_t video_out_svga; 64 extern vo_functions_t video_out_svga;
65 extern vo_functions_t video_out_png;
65 66
66 vo_functions_t* video_out_drivers[] = 67 vo_functions_t* video_out_drivers[] =
67 { 68 {
68 #ifdef HAVE_MGA 69 #ifdef HAVE_MGA
69 #ifdef HAVE_X11 70 #ifdef HAVE_X11
101 #endif 102 #endif
102 &video_out_null, 103 &video_out_null,
103 &video_out_odivx, 104 &video_out_odivx,
104 &video_out_pgm, 105 &video_out_pgm,
105 &video_out_md5, 106 &video_out_md5,
107 &video_out_png,
106 NULL 108 NULL
107 }; 109 };
108 110
109 #include "sub.c" 111 #include "sub.c"