summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2006-07-09 10:33:49 +0000
committerMichael Niedermayer <michaelni@gmx.at>2006-07-09 10:33:49 +0000
commita7702890bd470fc1683578609b7e1c5a2acfcd94 (patch)
tree517e761e3e27fd66f3388364ab1e50493f3265d3 /libavformat
parentfdb5983285b06139219142dd57a37ffa20c9f3b5 (diff)
remove STATS code (probably hasnt been used for years ..., and its not completely clear what it was good for anyway)
Originally committed as revision 5689 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/gif.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/libavformat/gif.c b/libavformat/gif.c
index f81a70def5..c82d174f1a 100644
--- a/libavformat/gif.c
+++ b/libavformat/gif.c
@@ -113,9 +113,6 @@ static void gif_put_bits_rev(PutBitContext *s, int n, unsigned int value)
unsigned int bit_buf;
int bit_cnt;
-#ifdef STATS
- st_out_bit_counts[st_current_index] += n;
-#endif
// printf("put_bits=%d %x\n", n, value);
assert(n == 32 || value < (1U << n));