Disable header compression for now

This commit is contained in:
Tatsuhiro Tsujikawa 2012-09-14 21:43:41 +09:00
parent a377907405
commit 744f35e7ea
1 changed files with 7 additions and 1 deletions

View File

@ -26,7 +26,13 @@
#include <assert.h>
#define COMPRESSION_LEVEL 9
/* By default header compression is disabled */
#undef ENABLE_HD_COMP
#ifdef ENABLE_HD_COMP
# define COMPRESSION_LEVEL 9
#else /* !ENABLE_HD_COMP */
# define COMPRESSION_LEVEL 0
#endif /* !ENABLE_HD_COMP */
#define WINDOW_BITS 11
#define MEM_LEVEL 1