comparison libvo/video_out.c @ 1871:cb5dde69354b

Mpeg PES added
author arpi
date Sat, 08 Sep 2001 20:48:02 +0000
parents f29e0c2bb675
children 6278f566cd91
comparison
equal deleted inserted replaced
1870:07dda0fb9e5e 1871:cb5dde69354b
65 extern vo_functions_t video_out_fbdev; 65 extern vo_functions_t video_out_fbdev;
66 extern vo_functions_t video_out_svga; 66 extern vo_functions_t video_out_svga;
67 extern vo_functions_t video_out_png; 67 extern vo_functions_t video_out_png;
68 extern vo_functions_t video_out_ggi; 68 extern vo_functions_t video_out_ggi;
69 extern vo_functions_t video_out_aa; 69 extern vo_functions_t video_out_aa;
70 extern vo_functions_t video_out_mpegpes;
70 71
71 vo_functions_t* video_out_drivers[] = 72 vo_functions_t* video_out_drivers[] =
72 { 73 {
73 #ifdef HAVE_XMGA 74 #ifdef HAVE_XMGA
74 &video_out_xmga, 75 &video_out_xmga,
116 #endif 117 #endif
117 &video_out_null, 118 &video_out_null,
118 &video_out_odivx, 119 &video_out_odivx,
119 &video_out_pgm, 120 &video_out_pgm,
120 &video_out_md5, 121 &video_out_md5,
122 &video_out_mpegpes,
121 NULL 123 NULL
122 }; 124 };
123 125
124 #include "sub.c" 126 #include "sub.c"
125 127
158 case IMGFMT_V422: return("Packed V422"); 160 case IMGFMT_V422: return("Packed V422");
159 case IMGFMT_V655: return("Packed V655"); 161 case IMGFMT_V655: return("Packed V655");
160 case IMGFMT_CLJR: return("Packed CLJR"); 162 case IMGFMT_CLJR: return("Packed CLJR");
161 case IMGFMT_YUVP: return("Packed YUVP"); 163 case IMGFMT_YUVP: return("Packed YUVP");
162 case IMGFMT_UYVP: return("Packed UYVP"); 164 case IMGFMT_UYVP: return("Packed UYVP");
165 case IMGFMT_MPEGPES: return("Mpeg PES");
163 } 166 }
164 return("Unknown"); 167 return("Unknown");
165 } 168 }