comparison libvo/vo_md5.c @ 4433:df8e0f71cc3c

new info for tuning
author nick
date Thu, 31 Jan 2002 09:57:13 +0000
parents ed5b85b713a3
children ab4ec4b99531
comparison
equal deleted inserted replaced
4432:5105f5da01d6 4433:df8e0f71cc3c
35 extern char vo_pgm_filename[24]; 35 extern char vo_pgm_filename[24];
36 36
37 static FILE * md5_file; 37 static FILE * md5_file;
38 38
39 static uint32_t 39 static uint32_t
40 init(uint32_t width, uint32_t height, uint32_t d_width, uint32_t d_height, uint32_t fullscreen, char *title, uint32_t format) 40 init(uint32_t width, uint32_t height, uint32_t d_width, uint32_t d_height, uint32_t fullscreen, char *title, uint32_t format,const vo_tune_info_t *info)
41 { 41 {
42 md5_file = fopen ("md5", "w"); 42 md5_file = fopen ("md5", "w");
43 return video_out_pgm.init (width, height, d_width,d_height,fullscreen, title, format); 43 return video_out_pgm.config (width, height, d_width,d_height,fullscreen, title, format,info);
44 } 44 }
45 45
46 static const vo_info_t* 46 static const vo_info_t*
47 get_info(void) 47 get_info(void)
48 { 48 {