From 223d80cfbec8fd346e32906c732c8ede21f0cea6 Mon Sep 17 00:00:00 2001 From: Eugene Kliuchnikov Date: Wed, 26 Aug 2020 12:32:27 +0200 Subject: Update (#826) * IMPORTANT: decoder: fix potential overflow when input chunk is >2GiB * simplify max Huffman table size calculation * eliminate symbol duplicates (static arrays in .h files) * minor combing in research/ code --- scripts/.bintray.json | 2 +- scripts/sources.lst | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) (limited to 'scripts') diff --git a/scripts/.bintray.json b/scripts/.bintray.json index ef2ea9d..17f99ed 100644 --- a/scripts/.bintray.json +++ b/scripts/.bintray.json @@ -5,7 +5,7 @@ "subject": "eustas" }, - "version": {"name": "snapshot"}, + "version": {"name": "latest"}, "files": [ { diff --git a/scripts/sources.lst b/scripts/sources.lst index 5e8e817..19a6d00 100644 --- a/scripts/sources.lst +++ b/scripts/sources.lst @@ -5,7 +5,10 @@ BROTLI_CLI_C = \ c/tools/brotli.c BROTLI_COMMON_C = \ + c/common/constants.c \ + c/common/context.c \ c/common/dictionary.c \ + c/common/platform.c \ c/common/transform.c BROTLI_COMMON_H = \ @@ -35,12 +38,14 @@ BROTLI_ENC_C = \ c/enc/block_splitter.c \ c/enc/brotli_bit_stream.c \ c/enc/cluster.c \ + c/enc/command.c \ c/enc/compress_fragment.c \ c/enc/compress_fragment_two_pass.c \ c/enc/dictionary_hash.c \ c/enc/encode.c \ c/enc/encoder_dict.c \ c/enc/entropy_encode.c \ + c/enc/fast_log.c \ c/enc/histogram.c \ c/enc/literal_cost.c \ c/enc/memory.c \ -- cgit v1.1