comparison mencoder.c @ 25219:e82ecde2cbd4

Mark several uses of vo_functions_t as const to stop some of the current hacks e.g. in vidix code from spreading.
author reimar
date Sun, 02 Dec 2007 14:24:23 +0000
parents 2bfc75674b71
children f46e91c64b39
comparison
equal deleted inserted replaced
25218:9e7ecd4c60c1 25219:e82ecde2cbd4
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 217 // Needed by libmpcodecs vf_vo.c
218 int config_video_out(vo_functions_t *vo, uint32_t width, uint32_t height, 218 int config_video_out(const vo_functions_t *vo, uint32_t width, uint32_t height,
219 uint32_t d_width, uint32_t d_height, uint32_t flags, 219 uint32_t d_width, uint32_t d_height, uint32_t flags,
220 char *title, uint32_t format) { 220 char *title, uint32_t format) {
221 return 1; 221 return 1;
222 } 222 }
223 // Needed by libmpdemux. 223 // Needed by libmpdemux.