Browse Source

avutil/timer: give each printed value of STOP_TIMER a fixed length

this makes the result easier to read

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.7
Michael Niedermayer 10 years ago
parent
commit
174330b18e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavutil/timer.h

+ 1
- 1
libavutil/timer.h View File

@@ -81,7 +81,7 @@
if (((tcount + tskip_count) & (tcount + tskip_count - 1)) == 0) { \
int i; \
av_log(NULL, AV_LOG_ERROR, \
"%"PRIu64" " FF_TIMER_UNITS " in %s, %d runs, %d skips", \
"%7"PRIu64" " FF_TIMER_UNITS " in %s,%8d runs,%7d skips", \
tsum * 10 / tcount, id, tcount, tskip_count); \
for (i = 0; i < 32; i++) \
av_log(NULL, AV_LOG_VERBOSE, " %2d", av_log2(2*thistogram[i]));\


Loading…
Cancel
Save