comparison mencoder.c @ 22232:d0b60d14d8d7

Move common vo initialization code to video_out.c
author reimar
date Sat, 17 Feb 2007 20:58:55 +0000
parents d655ce625259
children 5bf6c178f09a
comparison
equal deleted inserted replaced
22231:da19b4ccb83a 22232:d0b60d14d8d7
212 char *info_subject=NULL; 212 char *info_subject=NULL;
213 char *info_copyright=NULL; 213 char *info_copyright=NULL;
214 char *info_sourceform=NULL; 214 char *info_sourceform=NULL;
215 char *info_comment=NULL; 215 char *info_comment=NULL;
216 216
217 // Needed by libmpcodecs vf_vo.c
218 int config_video_out(vo_functions_t *vo, uint32_t width, uint32_t height,
219 uint32_t d_width, uint32_t d_height, uint32_t flags,
220 char *title, uint32_t format) {
221 return 1;
222 }
217 // Needed by libmpdemux. 223 // Needed by libmpdemux.
218 int mp_input_check_interrupt(int time) { 224 int mp_input_check_interrupt(int time) {
219 usec_sleep(time); 225 usec_sleep(time);
220 return 0; 226 return 0;
221 } 227 }