summaryrefslogtreecommitdiff
path: root/ext/tarkin/golomb.h
diff options
context:
space:
mode:
Diffstat (limited to 'ext/tarkin/golomb.h')
-rw-r--r--ext/tarkin/golomb.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/tarkin/golomb.h b/ext/tarkin/golomb.h
index fa66d750b..95e63c304 100644
--- a/ext/tarkin/golomb.h
+++ b/ext/tarkin/golomb.h
@@ -20,7 +20,7 @@ unsigned int required_bits (unsigned int x)
static inline
void write_number_binary (BitCoderState *b, unsigned int x, int bits, int u)
{
-//printf ("wrote %i with %i bits (%i+%i)\n", x, u+bits, u, bits);
+/*printf ("wrote %i with %i bits (%i+%i)\n", x, u+bits, u, bits); */
while (bits) {
bits--;
bitcoder_write_bit (b, (x >> bits) & 1);