comparison gui/ui/render.c @ 33901:d4f80f889106

Cosmetic: Rename guiInfo members. Change Movie into Video.
author ib
date Mon, 15 Aug 2011 13:27:58 +0000
parents e0d211c62cf7
children 922771be85f6
comparison
equal deleted inserted replaced
33900:b2fcff7e2157 33901:d4f80f889106
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 'x': 212 case 'x':
213 snprintf(tmp, sizeof(tmp), "%d", guiInfo.MovieWidth); 213 snprintf(tmp, sizeof(tmp), "%d", guiInfo.VideoWidth);
214 av_strlcat(trbuf, tmp, sizeof(trbuf)); 214 av_strlcat(trbuf, tmp, sizeof(trbuf));
215 break; 215 break;
216 216
217 case 'y': 217 case 'y':
218 snprintf(tmp, sizeof(tmp), "%d", guiInfo.MovieHeight); 218 snprintf(tmp, sizeof(tmp), "%d", guiInfo.VideoHeight);
219 av_strlcat(trbuf, tmp, sizeof(trbuf)); 219 av_strlcat(trbuf, tmp, sizeof(trbuf));
220 break; 220 break;
221 221
222 case 'C': 222 case 'C':
223 snprintf(tmp, sizeof(tmp), "%s", guiInfo.sh_video ? guiInfo.sh_video->codec->name : ""); 223 snprintf(tmp, sizeof(tmp), "%s", guiInfo.sh_video ? guiInfo.sh_video->codec->name : "");