Lines Matching refs:frames
135 brhist_disp_line(int i, int br_hist_TOT, int br_hist_LR, int full, int frames)
140 int res = digits(frames) + 3 + 4 + 1;
143 /* some problems when br_hist_TOT \approx br_hist_LR: You can't see that there are still MS frames */
151 sprintf(brppt, " [%*i]", digits(frames), br_hist_TOT);
171 progress_line(const lame_global_flags * gf, int full, int frames)
181 if (full < frames) {
182 full = frames;
185 time_in_sec = (float)(full - frames);
203 /* some problems when br_hist_TOT \approx br_hist_LR: You can't see that there are still MS frames */
205 barlen_COD = (frames * (Console_IO.disp_width - res) + full - 1) / full; /* round up */
310 int frames; /* total number of encoded frames */
325 frames = most_often = 0;
327 frames += br_hist[i];
339 brhist_disp_line(i, br_hist[i], br_sm_hist[i][LR], most_often, frames);
344 if (frames > 0) {
345 stat[0] = sum / frames;
346 stat[1] = 100. * (frames - st_frames) / frames;
359 progress_line(gf, lame_get_totalframes(gf), frames);