[PR #375] [MERGED] Update to v0.5 #975

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

📋 Pull Request Information

Original PR: https://github.com/google/brotli/pull/375
Author: @eustas
Created: 6/15/2016
Status: Merged
Merged: 6/15/2016
Merged by: @eustas

Base: masterHead: v0.5


📝 Commits (10+)

📊 Changes

101 files changed (+11891 additions, -19316 deletions)

View changed files

📝 MANIFEST.in (+3 -1)
common/Makefile (+12 -0)
common/constants.h (+47 -0)
📝 common/dictionary.c (+11 -3)
common/dictionary.h (+29 -0)
common/port.h (+107 -0)
📝 common/types.h (+8 -3)
📝 dec/Makefile (+1 -1)
📝 dec/bit_reader.c (+1 -1)
📝 dec/bit_reader.h (+1 -1)
📝 dec/context.h (+1 -1)
📝 dec/decode.c (+34 -37)
📝 dec/decode.h (+1 -1)
dec/dictionary.h (+0 -38)
📝 dec/huffman.c (+5 -4)
📝 dec/huffman.h (+4 -4)
📝 dec/port.h (+2 -95)
📝 dec/prefix.h (+5 -3)
📝 dec/state.c (+1 -1)
📝 dec/state.h (+4 -3)

...and 80 more files

📄 Description

  • turn encoder to C
  • extract common decoder/encoder parts: constants, dictionary, etc.

🔄 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/375 **Author:** [@eustas](https://github.com/eustas) **Created:** 6/15/2016 **Status:** ✅ Merged **Merged:** 6/15/2016 **Merged by:** [@eustas](https://github.com/eustas) **Base:** `master` ← **Head:** `v0.5` --- ### 📝 Commits (10+) - [`0282918`](https://github.com/google/brotli/commit/028291865dbc2f92bb114dd082f5ff78c907a875) Extract common parts: constants, dictionary, etc. - [`7cdcbd7`](https://github.com/google/brotli/commit/7cdcbd72c30a128afc6d69d05a3eb85cfb5555a3) Merge pull request #360 from eustas/master - [`352b0b2`](https://github.com/google/brotli/commit/352b0b2836504f59c4915b20eee11a770b415a47) Transform most of C++ comments to C-style. - [`6e35610`](https://github.com/google/brotli/commit/6e356105b5443f7b8af530ac89fda834ddfb3548) Merge pull request #361 from eustas/to-v0.4 - [`5a206dd`](https://github.com/google/brotli/commit/5a206dd9abefec5a8af908c61568ce54eabcd3a6) Merge pull request #362 from google/master - [`11d1337`](https://github.com/google/brotli/commit/11d1337baf817f194bed33895501c30e145b3a75) Update setup.py - [`9dd7e38`](https://github.com/google/brotli/commit/9dd7e38bdeb7d2fb02cceb3e6e222682f8016b3c) Fix test file path - [`66606e7`](https://github.com/google/brotli/commit/66606e7d43451f52b102d6bb1a12d730143d3ece) Fix test file path - [`b73ebe3`](https://github.com/google/brotli/commit/b73ebe32b45df7a0ba27c82c789bb5e3649912ed) Fix test file path - [`2f87a5a`](https://github.com/google/brotli/commit/2f87a5ae2d23bf9d80f191816cace56c194fb51c) Merge pull request #363 from eustas/to-v0.4 ### 📊 Changes **101 files changed** (+11891 additions, -19316 deletions) <details> <summary>View changed files</summary> 📝 `MANIFEST.in` (+3 -1) ➕ `common/Makefile` (+12 -0) ➕ `common/constants.h` (+47 -0) 📝 `common/dictionary.c` (+11 -3) ➕ `common/dictionary.h` (+29 -0) ➕ `common/port.h` (+107 -0) 📝 `common/types.h` (+8 -3) 📝 `dec/Makefile` (+1 -1) 📝 `dec/bit_reader.c` (+1 -1) 📝 `dec/bit_reader.h` (+1 -1) 📝 `dec/context.h` (+1 -1) 📝 `dec/decode.c` (+34 -37) 📝 `dec/decode.h` (+1 -1) ➖ `dec/dictionary.h` (+0 -38) 📝 `dec/huffman.c` (+5 -4) 📝 `dec/huffman.h` (+4 -4) 📝 `dec/port.h` (+2 -95) 📝 `dec/prefix.h` (+5 -3) 📝 `dec/state.c` (+1 -1) 📝 `dec/state.h` (+4 -3) _...and 80 more files_ </details> ### 📄 Description - turn encoder to C - extract common decoder/encoder parts: constants, dictionary, etc. --- <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:51:55 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/brotli#975