Go to the documentation of this file.
26 #ifndef AVUTIL_TIMER_H
27 #define AVUTIL_TIMER_H
35 #if HAVE_MACH_MACH_TIME_H
36 #include <mach/mach_time.h>
49 #if !defined(AV_READ_TIME)
51 # define AV_READ_TIME gethrtime
52 # elif HAVE_MACH_ABSOLUTE_TIME
53 # define AV_READ_TIME mach_absolute_time
57 #ifndef FF_TIMER_UNITS
58 # define FF_TIMER_UNITS "UNITS"
64 uint64_t tstart = AV_READ_TIME(); \
66 #define STOP_TIMER(id) \
67 tend = AV_READ_TIME(); \
69 static uint64_t tsum = 0; \
70 static int tcount = 0; \
71 static int tskip_count = 0; \
72 static int thistogram[32] = {0}; \
73 thistogram[av_log2(tend - tstart)]++; \
75 tend - tstart < 8 * tsum / tcount || \
76 tend - tstart < 2000) { \
77 tsum+= tend - tstart; \
81 if (((tcount + tskip_count) & (tcount + tskip_count - 1)) == 0) { \
83 av_log(NULL, AV_LOG_ERROR, \
84 "%7"PRIu64" " FF_TIMER_UNITS " in %s,%8d runs,%7d skips", \
85 tsum * 10 / tcount, id, tcount, tskip_count); \
86 for (i = 0; i < 32; i++) \
87 av_log(NULL, AV_LOG_VERBOSE, " %2d", av_log2(2*thistogram[i]));\
88 av_log(NULL, AV_LOG_ERROR, "\n"); \
93 #define STOP_TIMER(id) { }