|
|
xine_close_audio_driver (xine, ap); | xine_close_audio_driver (xine, ap); |
fprintf (stderr, "audio output: %s\n", *aop); | fprintf (stderr, "audio output: %s\n", *aop); |
} | } |
const char *const * vops = xine_list_video_output_plugins (xine); |
const char *const * vfs = xine_list_video_output_plugins (xine); |
for (const char *const* vop = vops; *vop; vop++) { |
for (const char *const* vf = vfs; *vf; vf++) { |
xine_video_port_t * vp = xine_open_video_driver (xine, *vop, XINE_VISUAL_TYPE_NONE, 0L); |
xine_video_port_t * vp = xine_open_video_driver (xine, *vf, XINE_VISUAL_TYPE_NONE, 0L); |
xine_close_video_driver (xine, vp); | xine_close_video_driver (xine, vp); |
fprintf (stderr, "vidio output: %s\n", *vop); |
fprintf (stderr, "vidio output: %s\n", *vf); |
}*/ | }*/ |
getConfigEntries (buf); | getConfigEntries (buf); |
} | } |