[PR #852] [MERGED] Update #1449

Open
opened 2026-01-29 20:54:11 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/google/brotli/pull/852
Author: @eustas
Created: 10/9/2020
Status: Merged
Merged: 1/18/2021
Merged by: @eustas

Base: masterHead: upd10a


📝 Commits (4)

📊 Changes

21 files changed (+791 additions, -412 deletions)

View changed files

📝 c/enc/block_splitter.c (+11 -2)
📝 c/enc/block_splitter_inc.h (+55 -21)
📝 c/enc/hash.h (+42 -17)
📝 c/enc/hash_composite_inc.h (+25 -10)
📝 c/enc/hash_forgetful_chain_inc.h (+20 -18)
📝 c/enc/hash_longest_match64_inc.h (+6 -6)
📝 c/enc/hash_longest_match_inc.h (+6 -10)
📝 c/enc/hash_longest_match_quickly_inc.h (+4 -4)
📝 c/enc/hash_rolling_inc.h (+4 -4)
📝 c/enc/hash_to_binary_tree_inc.h (+6 -5)
📝 java/org/brotli/dec/BitReader.java (+1 -1)
📝 java/org/brotli/dec/Decode.java (+1 -1)
📝 java/org/brotli/dec/Dictionary.java (+14 -14)
📝 java/org/brotli/dec/DictionaryData.java (+6 -5)
📝 java/org/brotli/dec/Utils.java (+13 -0)
📝 js/BUILD (+1 -0)
📝 js/WORKSPACE (+11 -6)
📝 js/decode.js (+543 -285)
📝 js/decode.min.js (+2 -2)
📝 js/decode_test.js (+18 -0)

...and 1 more files

📄 Description

  • comments and clarifications in block_splitter
  • power-of-2 aligned allocations for Hasher
  • refresh decode.js from Java sources

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/google/brotli/pull/852 **Author:** [@eustas](https://github.com/eustas) **Created:** 10/9/2020 **Status:** ✅ Merged **Merged:** 1/18/2021 **Merged by:** [@eustas](https://github.com/eustas) **Base:** `master` ← **Head:** `upd10a` --- ### 📝 Commits (4) - [`65c853c`](https://github.com/google/brotli/commit/65c853cfd7d71e9b1105a051e6b778b3051fb80c) Update - [`60e1726`](https://github.com/google/brotli/commit/60e17260a2fdda0f224c29daed7e9f4a4e81792a) Fix C89 compilation - [`15d58cd`](https://github.com/google/brotli/commit/15d58cd5e167f98b04f8e9b23b81eae52050fabd) Fix JS build, take 1 - [`8983600`](https://github.com/google/brotli/commit/8983600d837cdda34266d6fa1be0c1cd96658227) Disable JS build ### 📊 Changes **21 files changed** (+791 additions, -412 deletions) <details> <summary>View changed files</summary> 📝 `c/enc/block_splitter.c` (+11 -2) 📝 `c/enc/block_splitter_inc.h` (+55 -21) 📝 `c/enc/hash.h` (+42 -17) 📝 `c/enc/hash_composite_inc.h` (+25 -10) 📝 `c/enc/hash_forgetful_chain_inc.h` (+20 -18) 📝 `c/enc/hash_longest_match64_inc.h` (+6 -6) 📝 `c/enc/hash_longest_match_inc.h` (+6 -10) 📝 `c/enc/hash_longest_match_quickly_inc.h` (+4 -4) 📝 `c/enc/hash_rolling_inc.h` (+4 -4) 📝 `c/enc/hash_to_binary_tree_inc.h` (+6 -5) 📝 `java/org/brotli/dec/BitReader.java` (+1 -1) 📝 `java/org/brotli/dec/Decode.java` (+1 -1) 📝 `java/org/brotli/dec/Dictionary.java` (+14 -14) 📝 `java/org/brotli/dec/DictionaryData.java` (+6 -5) 📝 `java/org/brotli/dec/Utils.java` (+13 -0) 📝 `js/BUILD` (+1 -0) 📝 `js/WORKSPACE` (+11 -6) 📝 `js/decode.js` (+543 -285) 📝 `js/decode.min.js` (+2 -2) 📝 `js/decode_test.js` (+18 -0) _...and 1 more files_ </details> ### 📄 Description * comments and clarifications in block_splitter * power-of-2 aligned allocations for Hasher * refresh decode.js from Java sources --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-29 20:54:11 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/brotli#1449