diff options
author | Marc Hoffman <mmhoffm@gmail.com> | 2007-06-13 12:46:27 +0000 |
---|---|---|
committer | Marc Hoffman <mmhoffm@gmail.com> | 2007-06-13 12:46:27 +0000 |
commit | 57870214ab18f309ed1bfaca091121b15f46dfac (patch) | |
tree | 388361371179f9e2868269a2e7680f8342c60cc1 /libavcodec/bfin | |
parent | f70c2739022ab338611ec034ad7504b3534b650c (diff) | |
download | ffmpeg-57870214ab18f309ed1bfaca091121b15f46dfac.tar.gz |
removing underscores from block profiling renaming to xx_
Originally committed as revision 9303 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/bfin')
-rw-r--r-- | libavcodec/bfin/dsputil_bfin.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/bfin/dsputil_bfin.h b/libavcodec/bfin/dsputil_bfin.h index d972e7faec..9dd29476e8 100644 --- a/libavcodec/bfin/dsputil_bfin.h +++ b/libavcodec/bfin/dsputil_bfin.h @@ -32,8 +32,8 @@ static double Telem[16]; static char *TelemNames[16]; static int TelemCnt; -#define PROF(lab,e) { int __e = e; char*__lab = lab; uint64_t _t0 = read_time(); -#define EPROF() _t0 = read_time()-_t0; Telem[__e] = Telem[__e] + _t0; TelemNames[__e] = __lab; } +#define PROF(lab,e) { int xx_e = e; char*xx_lab = lab; uint64_t xx_t0 = read_time(); +#define EPROF() xx_t0 = read_time()-xx_t0; Telem[xx_e] = Telem[xx_e] + xx_t0; TelemNames[xx_e] = xx_lab; } static void prof_report (void) { |