[PR #1] [CLOSED] Push updates to the Brotli encoder and decoder upstream. #570

Closed
opened 2026-01-29 20:46:12 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/google/brotli/pull/1
Author: @szabadka
Created: 10/10/2014
Status: Closed

Base: masterHead: master


📝 Commits (1)

  • a597255 Push updates to the Brotli encoder and decoder upstream.

📊 Changes

24 files changed (+1644 additions, -1029 deletions)

View changed files

📝 dec/decode.c (+56 -15)
📝 dec/decode.h (+2 -1)
📝 dec/safe_malloc.h (+3 -3)
📝 enc/backward_references.cc (+239 -134)
📝 enc/backward_references.h (+9 -3)
📝 enc/bit_cost.h (+2 -2)
📝 enc/block_splitter.cc (+10 -10)
📝 enc/block_splitter.h (+1 -2)
enc/brotli_bit_stream.cc (+575 -0)
enc/brotli_bit_stream.h (+109 -0)
📝 enc/cluster.h (+20 -19)
📝 enc/command.h (+122 -22)
📝 enc/dictionary.h (+2 -0)
📝 enc/encode.cc (+71 -518)
📝 enc/encode.h (+2 -5)
📝 enc/entropy_encode.cc (+72 -81)
📝 enc/entropy_encode.h (+6 -33)
📝 enc/fast_log.h (+10 -0)
📝 enc/find_match_length.h (+2 -0)
📝 enc/hash.h (+265 -154)

...and 4 more files

📄 Description

This commit contains a batch of changes that were made to the
Brotli library since March 2014. Most important changes:

  • Fix BrotliDecompressedSize() to work for an uncompressed plus an
    empty meta-block.
  • Move serialization functions into their own file.
  • Fix storing of the meta-block header for last empty meta-block.
  • Add a fast version of the hasher.

🔄 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/1 **Author:** [@szabadka](https://github.com/szabadka) **Created:** 10/10/2014 **Status:** ❌ Closed **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (1) - [`a597255`](https://github.com/google/brotli/commit/a5972552132ea886462671928f26f493720a5404) Push updates to the Brotli encoder and decoder upstream. ### 📊 Changes **24 files changed** (+1644 additions, -1029 deletions) <details> <summary>View changed files</summary> 📝 `dec/decode.c` (+56 -15) 📝 `dec/decode.h` (+2 -1) 📝 `dec/safe_malloc.h` (+3 -3) 📝 `enc/backward_references.cc` (+239 -134) 📝 `enc/backward_references.h` (+9 -3) 📝 `enc/bit_cost.h` (+2 -2) 📝 `enc/block_splitter.cc` (+10 -10) 📝 `enc/block_splitter.h` (+1 -2) ➕ `enc/brotli_bit_stream.cc` (+575 -0) ➕ `enc/brotli_bit_stream.h` (+109 -0) 📝 `enc/cluster.h` (+20 -19) 📝 `enc/command.h` (+122 -22) 📝 `enc/dictionary.h` (+2 -0) 📝 `enc/encode.cc` (+71 -518) 📝 `enc/encode.h` (+2 -5) 📝 `enc/entropy_encode.cc` (+72 -81) 📝 `enc/entropy_encode.h` (+6 -33) 📝 `enc/fast_log.h` (+10 -0) 📝 `enc/find_match_length.h` (+2 -0) 📝 `enc/hash.h` (+265 -154) _...and 4 more files_ </details> ### 📄 Description This commit contains a batch of changes that were made to the Brotli library since March 2014. Most important changes: - Fix BrotliDecompressedSize() to work for an uncompressed plus an empty meta-block. - Move serialization functions into their own file. - Fix storing of the meta-block header for last empty meta-block. - Add a fast version of the hasher. --- <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:46:12 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/brotli#570