[PR #659] [CLOSED] Shared brotli #1306

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

📋 Pull Request Information

Original PR: https://github.com/google/brotli/pull/659
Author: @eustas
Created: 4/12/2018
Status: Closed

Base: masterHead: shared-brotli


📝 Commits (8)

📊 Changes

67 files changed (+5563 additions, -1321 deletions)

View changed files

📝 .travis.yml (+5 -3)
📝 BUILD (+3 -5)
📝 CMakeLists.txt (+3 -3)
📝 c/common/platform.h (+32 -4)
c/common/shared_dictionary.c (+506 -0)
c/common/shared_dictionary_internal.h (+66 -0)
📝 c/common/transform.c (+56 -0)
📝 c/common/transform.h (+5 -0)
📝 c/common/version.h (+2 -2)
📝 c/dec/decode.c (+211 -10)
📝 c/dec/state.c (+8 -2)
📝 c/dec/state.h (+17 -2)
📝 c/enc/backward_references.c (+66 -6)
📝 c/enc/backward_references.h (+4 -3)
📝 c/enc/backward_references_hq.c (+103 -23)
📝 c/enc/backward_references_hq.h (+11 -7)
📝 c/enc/backward_references_inc.h (+37 -9)
c/enc/compound_dictionary.c (+200 -0)
c/enc/compound_dictionary.h (+60 -0)
📝 c/enc/dictionary_hash.c (+1826 -1100)

...and 47 more files

📄 Description

Merge shared-brotli to master


🔄 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/659 **Author:** [@eustas](https://github.com/eustas) **Created:** 4/12/2018 **Status:** ❌ Closed **Base:** `master` ← **Head:** `shared-brotli` --- ### 📝 Commits (8) - [`2724390`](https://github.com/google/brotli/commit/2724390252c897724a8436b4419b8f8d0f3f7a1d) "Shared Brotli" initial commit. - [`227bb81`](https://github.com/google/brotli/commit/227bb81247998e67e4402951f24c13c9f2f90605) API combing - [`2216a0d`](https://github.com/google/brotli/commit/2216a0dd63e0142b78abe97bba8be52f6bc972c7) Update (#706) - [`6eba239`](https://github.com/google/brotli/commit/6eba239a5bb553fd557b7d78f7da8f0059618b9e) Fix auto detect of bundled mode (#704) - [`c015355`](https://github.com/google/brotli/commit/c015355c2c8be83a5e99c7f0da714865b7718e19) "Shared Brotli" initial commit. - [`d43e2d5`](https://github.com/google/brotli/commit/d43e2d5785ba7e6e2f8255bc339d3a978a9136b1) API combing - [`50e71c2`](https://github.com/google/brotli/commit/50e71c2b4c0772f025fecac6a73dd7a0050ec6a7) Update shared-brotli branch - [`44887ae`](https://github.com/google/brotli/commit/44887ae59f1539c8c087d014b861ac567da62e3f) Merge branch 'shared-brotli' of https://github.com/google/brotli into shared-brotli ### 📊 Changes **67 files changed** (+5563 additions, -1321 deletions) <details> <summary>View changed files</summary> 📝 `.travis.yml` (+5 -3) 📝 `BUILD` (+3 -5) 📝 `CMakeLists.txt` (+3 -3) 📝 `c/common/platform.h` (+32 -4) ➕ `c/common/shared_dictionary.c` (+506 -0) ➕ `c/common/shared_dictionary_internal.h` (+66 -0) 📝 `c/common/transform.c` (+56 -0) 📝 `c/common/transform.h` (+5 -0) 📝 `c/common/version.h` (+2 -2) 📝 `c/dec/decode.c` (+211 -10) 📝 `c/dec/state.c` (+8 -2) 📝 `c/dec/state.h` (+17 -2) 📝 `c/enc/backward_references.c` (+66 -6) 📝 `c/enc/backward_references.h` (+4 -3) 📝 `c/enc/backward_references_hq.c` (+103 -23) 📝 `c/enc/backward_references_hq.h` (+11 -7) 📝 `c/enc/backward_references_inc.h` (+37 -9) ➕ `c/enc/compound_dictionary.c` (+200 -0) ➕ `c/enc/compound_dictionary.h` (+60 -0) 📝 `c/enc/dictionary_hash.c` (+1826 -1100) _...and 47 more files_ </details> ### 📄 Description Merge shared-brotli to master --- <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:53:26 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/brotli#1306