comparison libvo/vo_aa.c @ 2498:38bb41c48d1f

never declare variables in *.h files, pls
author nick
date Sat, 27 Oct 2001 14:30:43 +0000
parents 440782e33c81
children ae79207a3055
comparison
equal deleted inserted replaced
2497:ed74af5ee66d 2498:38bb41c48d1f
192 { 192 {
193 /* 193 /*
194 * places the mplayer status osd 194 * places the mplayer status osd
195 */ 195 */
196 if (vo_osd_text) 196 if (vo_osd_text)
197 aa_printf(c, 0, 0 , aaopt_osdcolor, "%s %s ", osd_names_short[vo_osd_text[0]], vo_osd_text+1); 197 aa_printf(c, 0, 0 , aaopt_osdcolor, "%s %s ", __sub_osd_names_short[vo_osd_text[0]], vo_osd_text+1);
198 } 198 }
199 199
200 void 200 void
201 printosdprogbar(){ 201 printosdprogbar(){
202 /* print mplayer osd-progbar */ 202 /* print mplayer osd-progbar */
203 if (vo_osd_progbar_type!=-1){ 203 if (vo_osd_progbar_type!=-1){
204 osdpercent(1,1,0,255,vo_osd_progbar_value, osd_names[vo_osd_progbar_type], ""); 204 osdpercent(1,1,0,255,vo_osd_progbar_value, __sub_osd_names[vo_osd_progbar_type], "");
205 } 205 }
206 } 206 }
207 static uint32_t 207 static uint32_t
208 init(uint32_t width, uint32_t height, uint32_t d_width, 208 init(uint32_t width, uint32_t height, uint32_t d_width,
209 uint32_t d_height, uint32_t fullscreen, char *title, 209 uint32_t d_height, uint32_t fullscreen, char *title,