[PR #914] [MERGED] Update #1487

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

📋 Pull Request Information

Original PR: https://github.com/google/brotli/pull/914
Author: @eustas
Created: 7/28/2021
Status: Merged
Merged: 7/29/2021
Merged by: @eustas

Base: masterHead: upd07a


📝 Commits (1)

📊 Changes

22 files changed (+657 additions, -515 deletions)

View changed files

📝 c/enc/backward_references_hq.c (+50 -31)
📝 c/enc/block_splitter_inc.h (+31 -24)
📝 c/enc/brotli_bit_stream.c (+112 -98)
📝 c/enc/brotli_bit_stream.h (+1 -1)
📝 c/enc/cluster_inc.h (+24 -19)
📝 c/enc/compress_fragment.c (+71 -76)
📝 c/enc/compress_fragment.h (+30 -6)
📝 c/enc/compress_fragment_two_pass.c (+76 -79)
📝 c/enc/compress_fragment_two_pass.h (+19 -2)
📝 c/enc/encode.c (+92 -85)
📝 c/enc/hash.h (+3 -5)
📝 c/enc/hash_composite_inc.h (+1 -1)
📝 c/enc/literal_cost.c (+15 -11)
📝 c/enc/literal_cost.h (+2 -1)
📝 c/enc/memory.c (+22 -0)
📝 c/enc/memory.h (+6 -0)
📝 c/enc/metablock.c (+59 -46)
📝 c/enc/metablock.h (+2 -2)
📝 c/enc/metablock_inc.h (+8 -6)
📝 java/org/brotli/wrapper/dec/Decoder.java (+9 -0)

...and 2 more files

📄 Description

  • slimmer stack frames in encoder
  • fix MSAN problem in hasher_composite
    (not dangerous, only in large_window mode)
  • fix JNI decoder wrapper - power-of-two payloads fail to decode sometimes
  • reformat polyfil.js and decode_test.js

🔄 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/914 **Author:** [@eustas](https://github.com/eustas) **Created:** 7/28/2021 **Status:** ✅ Merged **Merged:** 7/29/2021 **Merged by:** [@eustas](https://github.com/eustas) **Base:** `master` ← **Head:** `upd07a` --- ### 📝 Commits (1) - [`a30ec31`](https://github.com/google/brotli/commit/a30ec310b9089aff39f1887e3bcbf9e42db81546) Update ### 📊 Changes **22 files changed** (+657 additions, -515 deletions) <details> <summary>View changed files</summary> 📝 `c/enc/backward_references_hq.c` (+50 -31) 📝 `c/enc/block_splitter_inc.h` (+31 -24) 📝 `c/enc/brotli_bit_stream.c` (+112 -98) 📝 `c/enc/brotli_bit_stream.h` (+1 -1) 📝 `c/enc/cluster_inc.h` (+24 -19) 📝 `c/enc/compress_fragment.c` (+71 -76) 📝 `c/enc/compress_fragment.h` (+30 -6) 📝 `c/enc/compress_fragment_two_pass.c` (+76 -79) 📝 `c/enc/compress_fragment_two_pass.h` (+19 -2) 📝 `c/enc/encode.c` (+92 -85) 📝 `c/enc/hash.h` (+3 -5) 📝 `c/enc/hash_composite_inc.h` (+1 -1) 📝 `c/enc/literal_cost.c` (+15 -11) 📝 `c/enc/literal_cost.h` (+2 -1) 📝 `c/enc/memory.c` (+22 -0) 📝 `c/enc/memory.h` (+6 -0) 📝 `c/enc/metablock.c` (+59 -46) 📝 `c/enc/metablock.h` (+2 -2) 📝 `c/enc/metablock_inc.h` (+8 -6) 📝 `java/org/brotli/wrapper/dec/Decoder.java` (+9 -0) _...and 2 more files_ </details> ### 📄 Description * slimmer stack frames in encoder * fix MSAN problem in hasher_composite (not dangerous, only in large_window mode) * fix JNI decoder wrapper - power-of-two payloads fail to decode sometimes * reformat polyfil.js and decode_test.js --- <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:21 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/brotli#1487