liblzma: Use 512 as INDEX_GROUP_SIZE.

This lets compiler use shifting instead of 64-bit division.
This commit is contained in:
Lasse Collin 2010-10-23 12:21:32 +03:00
parent 613939fc82
commit 23e23f1dc0
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@
///
/// This should be big enough to avoid making lots of tiny allocations
/// but small enough to avoid too much unused memory at once.
#define INDEX_GROUP_SIZE 500
#define INDEX_GROUP_SIZE 512
/// \brief How many Records can be allocated at once at maximum