move outcommented START/STOP_TIMER to a hopefully better place for benchmarking ...

Originally committed as revision 6605 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2006-10-09 18:20:00 +00:00
parent 30dc5f56ad
commit 1c2a417f6a
2 changed files with 2 additions and 2 deletions

View file

@ -363,7 +363,6 @@ static inline void renorm_cabac_decoder_once(CABACContext *c){
static int get_cabac(CABACContext *c, uint8_t * const state){
//FIXME gcc generates duplicate load/stores for c->low and c->range
//START_TIMER
#ifdef ARCH_X86
int bit;
@ -486,7 +485,6 @@ static int get_cabac(CABACContext *c, uint8_t * const state){
refill2(c);
#endif
#endif
//STOP_TIMER("get_cabac")
return bit;
}