You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

70 lines
1.9KB

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