summaryrefslogtreecommitdiffstats
path: root/src/lodepng.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2014-03-15 15:50:07 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2014-03-15 15:50:07 (GMT)
commit941eea998d6b9608b8fc586069ef90e805d771f5 (patch)
tree84b206b6d9fdcb807f7b4dade976c68035b34ed9 /src/lodepng.cpp
parentc1e25238950492e7f8a5c996e3d3ad41b9b023b0 (diff)
downloadDoxygen-941eea998d6b9608b8fc586069ef90e805d771f5.zip
Doxygen-941eea998d6b9608b8fc586069ef90e805d771f5.tar.gz
Doxygen-941eea998d6b9608b8fc586069ef90e805d771f5.tar.bz2
Some restructuring and some compiler warning fixes
Diffstat (limited to 'src/lodepng.cpp')
-rw-r--r--src/lodepng.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lodepng.cpp b/src/lodepng.cpp
index df8378e..b237d5a 100644
--- a/src/lodepng.cpp
+++ b/src/lodepng.cpp
@@ -1146,10 +1146,10 @@ static unsigned encodeLZ77_brute(uivector* out, const unsigned char* in, size_t
}
#endif
+/*
static const unsigned HASH_NUM_VALUES = 65536;
static const unsigned HASH_NUM_CHARACTERS = 6;
static const unsigned HASH_SHIFT = 2;
-/*
Good and fast values: HASH_NUM_VALUES=65536, HASH_NUM_CHARACTERS=6, HASH_SHIFT=2
making HASH_NUM_CHARACTERS larger (like 8), makes the file size larger but is a bit faster
making HASH_NUM_CHARACTERS smaller (like 3), makes the file size smaller but is slower