comparison libvo/video_out.c @ 28582:4d64f83e2fac

Add support for VDPAU video out, including hardware decoding.
author reimar
date Mon, 16 Feb 2009 20:58:13 +0000
parents db19e31a2c7c
children 7d42a45c225d
comparison
equal deleted inserted replaced
28581:0403c0f4c7e1 28582:4d64f83e2fac
85 extern vo_functions_t video_out_mga; 85 extern vo_functions_t video_out_mga;
86 extern vo_functions_t video_out_xmga; 86 extern vo_functions_t video_out_xmga;
87 extern vo_functions_t video_out_x11; 87 extern vo_functions_t video_out_x11;
88 extern vo_functions_t video_out_xover; 88 extern vo_functions_t video_out_xover;
89 extern vo_functions_t video_out_xvmc; 89 extern vo_functions_t video_out_xvmc;
90 extern vo_functions_t video_out_vdpau;
90 extern vo_functions_t video_out_xv; 91 extern vo_functions_t video_out_xv;
91 extern vo_functions_t video_out_gl; 92 extern vo_functions_t video_out_gl;
92 extern vo_functions_t video_out_gl2; 93 extern vo_functions_t video_out_gl2;
93 extern vo_functions_t video_out_dga; 94 extern vo_functions_t video_out_dga;
94 extern vo_functions_t video_out_sdl; 95 extern vo_functions_t video_out_sdl;
166 #ifdef CONFIG_WII 167 #ifdef CONFIG_WII
167 &video_out_wii, 168 &video_out_wii,
168 #endif 169 #endif
169 #ifdef CONFIG_3DFX 170 #ifdef CONFIG_3DFX
170 &video_out_3dfx, 171 &video_out_3dfx,
172 #endif
173 #ifdef CONFIG_VDPAU
174 &video_out_vdpau,
171 #endif 175 #endif
172 #ifdef CONFIG_XV 176 #ifdef CONFIG_XV
173 &video_out_xv, 177 &video_out_xv,
174 #endif 178 #endif
175 #ifdef CONFIG_X11 179 #ifdef CONFIG_X11