timer.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. /*
  2. * copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * FFmpeg is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with FFmpeg; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. /**
  21. * @file
  22. * high precision timer, useful to profile code
  23. */
  24. #ifndef AVUTIL_TIMER_H
  25. #define AVUTIL_TIMER_H
  26. #include <stdlib.h>
  27. #include <stdint.h>
  28. #include <inttypes.h>
  29. #include "config.h"
  30. #if HAVE_MACH_MACH_TIME_H
  31. #include <mach/mach_time.h>
  32. #endif
  33. #include "log.h"
  34. #if ARCH_ARM
  35. # include "arm/timer.h"
  36. #elif ARCH_PPC
  37. # include "ppc/timer.h"
  38. #elif ARCH_X86
  39. # include "x86/timer.h"
  40. #endif
  41. #if !defined(AV_READ_TIME)
  42. # if HAVE_GETHRTIME
  43. # define AV_READ_TIME gethrtime
  44. # elif HAVE_MACH_ABSOLUTE_TIME
  45. # define AV_READ_TIME mach_absolute_time
  46. # endif
  47. #endif
  48. #ifndef FF_TIMER_UNITS
  49. # define FF_TIMER_UNITS "UNITS"
  50. #endif
  51. #ifdef AV_READ_TIME
  52. #define START_TIMER \
  53. uint64_t tend; \
  54. uint64_t tstart = AV_READ_TIME(); \
  55. #define STOP_TIMER(id) \
  56. tend = AV_READ_TIME(); \
  57. { \
  58. static uint64_t tsum = 0; \
  59. static int tcount = 0; \
  60. static int tskip_count = 0; \
  61. if (tcount < 2 || \
  62. tend - tstart < 8 * tsum / tcount || \
  63. tend - tstart < 2000) { \
  64. tsum+= tend - tstart; \
  65. tcount++; \
  66. } else \
  67. tskip_count++; \
  68. if (((tcount + tskip_count) & (tcount + tskip_count - 1)) == 0) { \
  69. av_log(NULL, AV_LOG_ERROR, \
  70. "%"PRIu64" " FF_TIMER_UNITS " in %s, %d runs, %d skips\n", \
  71. tsum * 10 / tcount, id, tcount, tskip_count); \
  72. } \
  73. }
  74. #else
  75. #define START_TIMER
  76. #define STOP_TIMER(id) { }
  77. #endif
  78. #endif /* AVUTIL_TIMER_H */