summaryrefslogtreecommitdiff
path: root/libavcodec/cabac.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2006-10-09 18:20:00 +0000
committerMichael Niedermayer <michaelni@gmx.at>2006-10-09 18:20:00 +0000
commit1c2a417f6a51c94de6d8b64d2aecc476f89b50f1 (patch)
treecf7bb790eda7551cfb5fa871297e2714d40a392d /libavcodec/cabac.h
parent30dc5f56ad526410692fb60eb3cab3f50eac4aba (diff)
move outcommented START/STOP_TIMER to a hopefully better place for benchmarking ...
Originally committed as revision 6605 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/cabac.h')
-rw-r--r--libavcodec/cabac.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/cabac.h b/libavcodec/cabac.h
index cec2b1fc29..2f8a8d9fe7 100644
--- a/libavcodec/cabac.h
+++ b/libavcodec/cabac.h
@@ -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;
}