comparison gui/ui/render.c @ 33773:a3983d2c9106

Remove unused members from struct guiInterface_t. Dynamic label variable $d isn't documented and would not return anything of value. Setting XEvent type KeyPress to None in gui/ui/main.c isn't necessary, because for this event there is a 'break' in libvo/x11_common.c in case CONFIG_GUI is defined.
author ib
date Sun, 10 Jul 2011 11:21:40 +0000
parents f3300b0c38a9
children 474ffcdcc6e7
comparison
equal deleted inserted replaced
33772:6673b85049fa 33773:a3983d2c9106
207 case 'B': 207 case 'B':
208 snprintf(tmp, sizeof(tmp), "%3.1f", guiInfo.Balance); 208 snprintf(tmp, sizeof(tmp), "%3.1f", guiInfo.Balance);
209 av_strlcat(trbuf, tmp, sizeof(trbuf)); 209 av_strlcat(trbuf, tmp, sizeof(trbuf));
210 break; 210 break;
211 211
212 case 'd':
213 snprintf(tmp, sizeof(tmp), "%d", guiInfo.FrameDrop);
214 av_strlcat(trbuf, tmp, sizeof(trbuf));
215 break;
216
217 case 'x': 212 case 'x':
218 snprintf(tmp, sizeof(tmp), "%d", guiInfo.MovieWidth); 213 snprintf(tmp, sizeof(tmp), "%d", guiInfo.MovieWidth);
219 av_strlcat(trbuf, tmp, sizeof(trbuf)); 214 av_strlcat(trbuf, tmp, sizeof(trbuf));
220 break; 215 break;
221 216