forked from y-scope/clp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dceb564
commit d5af274
Showing
6 changed files
with
103 additions
and
92 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 6 additions & 6 deletions
12
components/core/src/clp/streaming_compression/lzma/Constants.hpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
#ifndef STREAMING_COMPRESSION_LZMA_CONSTANTS_HPP | ||
#define STREAMING_COMPRESSION_LZMA_CONSTANTS_HPP | ||
|
||
#include <lzma.h> | ||
|
||
// C++ libraries | ||
#include <cstddef> | ||
#include <cstdint> | ||
|
||
namespace streaming_compression::lzma { | ||
#include <lzma.h> | ||
|
||
namespace clp::streaming_compression::lzma { | ||
constexpr int cDefaultCompressionLevel{3}; | ||
constexpr int cMinCompressionLevel{0}; | ||
constexpr int cMaxCompressionLevel{9}; | ||
constexpr uint32_t cDefaultDictionarySize{LZMA_DICT_SIZE_DEFAULT}; | ||
} // namespace streaming_compression::lzma | ||
} // namespace clp::streaming_compression::lzma | ||
|
||
#endif // STREAMING_COMPRESSION_LZMA_CONSTANTS_HPP |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.