comparison libvo/video_out.c @ 23905:fb63124c7920

v4l2 audio/video outputs for linux 2.6.22+ kernels (outputs formerly known as ivtv)
author ben
date Sun, 29 Jul 2007 19:20:55 +0000
parents ddb9e516fab8
children 73c9e15e7341
comparison
equal deleted inserted replaced
23904:545aef4edc84 23905:fb63124c7920
101 #endif 101 #endif
102 extern vo_functions_t video_out_dxr3; 102 extern vo_functions_t video_out_dxr3;
103 #ifdef HAVE_IVTV 103 #ifdef HAVE_IVTV
104 extern vo_functions_t video_out_ivtv; 104 extern vo_functions_t video_out_ivtv;
105 #endif 105 #endif
106 #ifdef HAVE_V4L2_DECODER
107 extern vo_functions_t video_out_v4l2;
108 #endif
106 #ifdef HAVE_JPEG 109 #ifdef HAVE_JPEG
107 extern vo_functions_t video_out_jpeg; 110 extern vo_functions_t video_out_jpeg;
108 #endif 111 #endif
109 #ifdef HAVE_GIF 112 #ifdef HAVE_GIF
110 extern vo_functions_t video_out_gif89a; 113 extern vo_functions_t video_out_gif89a;
211 #ifdef HAVE_DXR3 214 #ifdef HAVE_DXR3
212 &video_out_dxr3, 215 &video_out_dxr3,
213 #endif 216 #endif
214 #ifdef HAVE_IVTV 217 #ifdef HAVE_IVTV
215 &video_out_ivtv, 218 &video_out_ivtv,
219 #endif
220 #ifdef HAVE_V4L2_DECODER
221 &video_out_v4l2,
216 #endif 222 #endif
217 #ifdef HAVE_ZR 223 #ifdef HAVE_ZR
218 &video_out_zr, 224 &video_out_zr,
219 &video_out_zr2, 225 &video_out_zr2,
220 #endif 226 #endif