]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/commitdiff
removing underscores from block profiling renaming to xx_
authormhoffman <mhoffman@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Wed, 13 Jun 2007 12:46:27 +0000 (12:46 +0000)
committermhoffman <mhoffman@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Wed, 13 Jun 2007 12:46:27 +0000 (12:46 +0000)
git-svn-id: file:///var/local/repositories/ffmpeg/trunk@9303 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b

libavcodec/bfin/dsputil_bfin.h

index d972e7faec349b653a677f82251fc55f4e8a6803..9dd29476e84a7c2ef6d251c33458ba3aadd4e3d0 100644 (file)
@@ -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)
 {