Mercurial > libavutil.hg
changeset 62:d77141e6d1a8 libavutil
remove STATS code (probably hasnt been used for years ..., and its not completely clear what it was good for anyway)
author | michael |
---|---|
date | Sun, 09 Jul 2006 10:33:49 +0000 |
parents | f85d07038450 |
children | e5a312df8a07 |
files | common.h |
diffstat | 1 files changed, 0 insertions(+), 24 deletions(-) [+] |
line wrap: on
line diff
--- a/common.h Sat Jul 08 20:23:19 2006 +0000 +++ b/common.h Sun Jul 09 10:33:49 2006 +0000 @@ -339,30 +339,6 @@ # define FASTDIV(a,b) ((a)/(b)) #endif -/* define it to include statistics code (useful only for optimizing - codec efficiency */ -//#define STATS - -#ifdef STATS - -enum { - ST_UNKNOWN, - ST_DC, - ST_INTRA_AC, - ST_INTER_AC, - ST_INTRA_MB, - ST_INTER_MB, - ST_MV, - ST_NB, -}; - -extern int st_current_index; -extern unsigned int st_bit_counts[ST_NB]; -extern unsigned int st_out_bit_counts[ST_NB]; - -void print_stats(void); -#endif - /* misc math functions */ extern FF_IMPORT_ATTR const uint8_t ff_log2_tab[256];