diff options
author | Alexandru Gagniuc <mr.nuke.me@gmail.com> | 2014-01-29 16:55:48 -0600 |
---|---|---|
committer | Alexandru Gagniuc <mr.nuke.me@gmail.com> | 2014-02-11 20:15:48 +0100 |
commit | 7c9bb41817988287c74f83512541355e7818c57f (patch) | |
tree | dcf49fb947c99920d4bb62e222ea3b4ac91c901c /util/cbfstool/lzma/C/LzmaEnc.c | |
parent | c1d1fd850ee7b8e52bd2ea5064fab68ac0c27098 (diff) |
cbfstool/lzma: Remove code which depends on commented out defines
These options seem to control the behavior of the encoder/decoder,
with comments citing a trade-off between memory usage and performance.
I removed these in a separate patch to make reverting in the future
easier, if we find these options are useful.
Change-Id: I24cb7101b89e60f4fb96777e3681c03d2a62e3d5
Signed-off-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
Reviewed-on: http://review.coreboot.org/5084
Tested-by: build bot (Jenkins)
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'util/cbfstool/lzma/C/LzmaEnc.c')
-rw-r--r-- | util/cbfstool/lzma/C/LzmaEnc.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/util/cbfstool/lzma/C/LzmaEnc.c b/util/cbfstool/lzma/C/LzmaEnc.c index 70e9baa1c2..583b45500e 100644 --- a/util/cbfstool/lzma/C/LzmaEnc.c +++ b/util/cbfstool/lzma/C/LzmaEnc.c @@ -174,11 +174,8 @@ struct COptimal #define kNumFullDistances (1 << (kEndPosModelIndex >> 1)) -#ifdef _LZMA_PROB32 -#define CLzmaProb uint32_t -#else -#define CLzmaProb uint16_t -#endif +typedef uint16_t CLzmaProb; + #define LZMA_PB_MAX 4 #define LZMA_LC_MAX 8 |