2 * @file libavutil/timer.h
3 * high precision timer, useful to profile code
5 * copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
7 * This file is part of FFmpeg.
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.
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.
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
24 #ifndef AVUTIL_TIMER_H
25 #define AVUTIL_TIMER_H
32 # include "arm/timer.h"
34 # include "bfin/timer.h"
36 # include "ppc/timer.h"
38 # include "x86/timer.h"
41 #if !defined(AV_READ_TIME) && HAVE_GETHRTIME
42 # define AV_READ_TIME gethrtime
48 uint64_t tstart= AV_READ_TIME();\
50 #define STOP_TIMER(id) \
51 tend= AV_READ_TIME();\
53 static uint64_t tsum=0;\
55 static int tskip_count=0;\
56 if(tcount<2 || tend - tstart < 8*tsum/tcount || tend - tstart < 2000){\
57 tsum+= tend - tstart;\
61 if(((tcount+tskip_count)&(tcount+tskip_count-1))==0){\
62 av_log(NULL, AV_LOG_ERROR, "%"PRIu64" dezicycles in %s, %d runs, %d skips\n",\
63 tsum*10/tcount, id, tcount, tskip_count);\
68 #define STOP_TIMER(id) {}
71 #endif /* AVUTIL_TIMER_H */