Mercurial > mplayer.hg
changeset 4448:ab4ec4b99531
change init to config in vo_gl and vo_md5 like in the other vo_ modules -- fixes crash caused by the changeover
author | rfelker |
---|---|
date | Fri, 01 Feb 2002 02:49:04 +0000 |
parents | 87447fe383a1 |
children | 501473faf365 |
files | libvo/vo_gl.c libvo/vo_md5.c |
diffstat | 2 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/libvo/vo_gl.c Fri Feb 01 02:43:01 2002 +0000 +++ b/libvo/vo_gl.c Fri Feb 01 02:49:04 2002 +0000 @@ -96,7 +96,7 @@ * allocate colors and (shared) memory */ static uint32_t -init(uint32_t width, uint32_t height, uint32_t d_width, uint32_t d_height, uint32_t flags, char *title, uint32_t format,const vo_tune_info_t *info) +config(uint32_t width, uint32_t height, uint32_t d_width, uint32_t d_height, uint32_t flags, char *title, uint32_t format,const vo_tune_info_t *info) { // int screen; unsigned int fg, bg;
--- a/libvo/vo_md5.c Fri Feb 01 02:43:01 2002 +0000 +++ b/libvo/vo_md5.c Fri Feb 01 02:49:04 2002 +0000 @@ -37,7 +37,7 @@ static FILE * md5_file; static uint32_t -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) +config(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) { md5_file = fopen ("md5", "w"); return video_out_pgm.config (width, height, d_width,d_height,fullscreen, title, format,info);