[PR #916] [MERGED] Merge-in SharedDictionary feature #1492

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

📋 Pull Request Information

Original PR: https://github.com/google/brotli/pull/916
Author: @eustas
Created: 8/4/2021
Status: Merged
Merged: 8/4/2021
Merged by: @eustas

Base: masterHead: upd07b


📝 Commits (1)

  • eabbed1 Merge-in SharedDictionary feature

📊 Changes

37 files changed (+3066 additions, -38 deletions)

View changed files

c/common/shared_dictionary.c (+515 -0)
c/common/shared_dictionary_internal.h (+74 -0)
📝 c/dec/decode.c (+184 -10)
📝 c/dec/state.c (+8 -2)
📝 c/dec/state.h (+17 -2)
📝 c/enc/backward_references.c (+60 -1)
📝 c/enc/backward_references_hq.c (+87 -11)
📝 c/enc/backward_references_inc.h (+31 -5)
c/enc/compound_dictionary.c (+200 -0)
c/enc/compound_dictionary.h (+60 -0)
📝 c/enc/encode.c (+162 -1)
📝 c/enc/encoder_dict.c (+596 -1)
📝 c/enc/encoder_dict.h (+112 -1)
📝 c/enc/hash.h (+200 -0)
📝 c/enc/params.h (+2 -1)
📝 c/enc/static_dict.c (+55 -1)
📝 c/include/brotli/decode.h (+25 -1)
📝 c/include/brotli/encode.h (+46 -0)
c/include/brotli/shared_dictionary.h (+97 -0)
📝 c/tools/brotli.c (+96 -1)

...and 17 more files

📄 Description

No description provided


🔄 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/916 **Author:** [@eustas](https://github.com/eustas) **Created:** 8/4/2021 **Status:** ✅ Merged **Merged:** 8/4/2021 **Merged by:** [@eustas](https://github.com/eustas) **Base:** `master` ← **Head:** `upd07b` --- ### 📝 Commits (1) - [`eabbed1`](https://github.com/google/brotli/commit/eabbed17670c0155e2385ba5abcb1f278f97bcc2) Merge-in SharedDictionary feature ### 📊 Changes **37 files changed** (+3066 additions, -38 deletions) <details> <summary>View changed files</summary> ➕ `c/common/shared_dictionary.c` (+515 -0) ➕ `c/common/shared_dictionary_internal.h` (+74 -0) 📝 `c/dec/decode.c` (+184 -10) 📝 `c/dec/state.c` (+8 -2) 📝 `c/dec/state.h` (+17 -2) 📝 `c/enc/backward_references.c` (+60 -1) 📝 `c/enc/backward_references_hq.c` (+87 -11) 📝 `c/enc/backward_references_inc.h` (+31 -5) ➕ `c/enc/compound_dictionary.c` (+200 -0) ➕ `c/enc/compound_dictionary.h` (+60 -0) 📝 `c/enc/encode.c` (+162 -1) 📝 `c/enc/encoder_dict.c` (+596 -1) 📝 `c/enc/encoder_dict.h` (+112 -1) 📝 `c/enc/hash.h` (+200 -0) 📝 `c/enc/params.h` (+2 -1) 📝 `c/enc/static_dict.c` (+55 -1) 📝 `c/include/brotli/decode.h` (+25 -1) 📝 `c/include/brotli/encode.h` (+46 -0) ➕ `c/include/brotli/shared_dictionary.h` (+97 -0) 📝 `c/tools/brotli.c` (+96 -1) _...and 17 more files_ </details> ### 📄 Description _No description provided_ --- <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:24 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/brotli#1492