summaryrefslogtreecommitdiff
path: root/core/fxcodec
diff options
context:
space:
mode:
Diffstat (limited to 'core/fxcodec')
-rw-r--r--core/fxcodec/codec/fx_codec_flate.cpp6
-rw-r--r--core/fxcodec/gif/cfx_lzwdecompressor.h2
2 files changed, 4 insertions, 4 deletions
diff --git a/core/fxcodec/codec/fx_codec_flate.cpp b/core/fxcodec/codec/fx_codec_flate.cpp
index e33a3d4810..8cef6c7125 100644
--- a/core/fxcodec/codec/fx_codec_flate.cpp
+++ b/core/fxcodec/codec/fx_codec_flate.cpp
@@ -40,7 +40,7 @@ static void my_free_func(void* opaque, void* address) {
namespace {
-constexpr const static uint32_t kMaxTotalOutSize = 1024 * 1024 * 1024; // 1 GiB
+static constexpr uint32_t kMaxTotalOutSize = 1024 * 1024 * 1024; // 1 GiB
uint32_t FlateGetPossiblyTruncatedTotalOut(void* context) {
return std::min(pdfium::base::saturated_cast<uint32_t>(
@@ -121,11 +121,11 @@ class CLZWDecoder {
uint8_t* m_pOutput;
const uint8_t* m_pInput;
bool m_Early;
- uint32_t m_CodeArray[5021];
uint32_t m_nCodes;
- uint8_t m_DecodeStack[4000];
uint32_t m_StackLen;
int m_CodeLen;
+ uint32_t m_CodeArray[5021];
+ uint8_t m_DecodeStack[4000];
};
void CLZWDecoder::AddCode(uint32_t prefix_code, uint8_t append_char) {
diff --git a/core/fxcodec/gif/cfx_lzwdecompressor.h b/core/fxcodec/gif/cfx_lzwdecompressor.h
index e6e0634b10..808f50a7cf 100644
--- a/core/fxcodec/gif/cfx_lzwdecompressor.h
+++ b/core/fxcodec/gif/cfx_lzwdecompressor.h
@@ -54,12 +54,12 @@ class CFX_LZWDecompressor {
uint8_t code_first_;
std::vector<uint8_t> decompressed_;
size_t decompressed_next_;
- CodeEntry code_table_[GIF_MAX_LZW_CODE];
uint16_t code_old_;
uint8_t* next_in_;
uint32_t avail_in_;
uint8_t bits_left_;
uint32_t code_store_;
+ CodeEntry code_table_[GIF_MAX_LZW_CODE];
};
#endif // CORE_FXCODEC_GIF_CFX_LZWDECOMPRESSOR_H_