[PR #300] [CLOSED] Update decoder #894

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

📋 Pull Request Information

Original PR: https://github.com/google/brotli/pull/300
Author: @eustas
Created: 1/22/2016
Status: Closed

Base: masterHead: master


📝 Commits (2)

📊 Changes

12 files changed (+187 additions, -334 deletions)

View changed files

📝 dec/Makefile (+1 -1)
📝 dec/bit_reader.c (+2 -2)
📝 dec/bit_reader.h (+8 -6)
📝 dec/decode.c (+108 -176)
📝 dec/decode.h (+33 -103)
📝 dec/dictionary.h (+1 -1)
📝 dec/huffman.c (+5 -4)
📝 dec/huffman.h (+8 -3)
📝 dec/prefix.h (+2 -0)
📝 dec/state.c (+7 -15)
📝 dec/state.h (+5 -11)
📝 dec/transform.h (+7 -12)

📄 Description

  • Reduce memory usage
  • Update API documentation
  • Remove deprecated API
  • Move non-API declatarions from decode.h
  • Remove streams
  • Add more debug logging
  • Fix shift in BrotliBitReaderUnload
  • Allocate ringbuffer at later stages
  • Sort / fix includes
  • Fix whitespaces
  • Eliminate dead code
  • Drive-by code simplifications

🔄 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/300 **Author:** [@eustas](https://github.com/eustas) **Created:** 1/22/2016 **Status:** ❌ Closed **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (2) - [`c788a55`](https://github.com/google/brotli/commit/c788a55927123533efe29e29a5ea236a2f749c94) Merge pull request #1 from google/master - [`92e3023`](https://github.com/google/brotli/commit/92e3023914f10c411575194d24d13aff63d64ecc) Update decoder. ### 📊 Changes **12 files changed** (+187 additions, -334 deletions) <details> <summary>View changed files</summary> 📝 `dec/Makefile` (+1 -1) 📝 `dec/bit_reader.c` (+2 -2) 📝 `dec/bit_reader.h` (+8 -6) 📝 `dec/decode.c` (+108 -176) 📝 `dec/decode.h` (+33 -103) 📝 `dec/dictionary.h` (+1 -1) 📝 `dec/huffman.c` (+5 -4) 📝 `dec/huffman.h` (+8 -3) 📝 `dec/prefix.h` (+2 -0) 📝 `dec/state.c` (+7 -15) 📝 `dec/state.h` (+5 -11) 📝 `dec/transform.h` (+7 -12) </details> ### 📄 Description - Reduce memory usage - Update API documentation - Remove deprecated API - Move non-API declatarions from decode.h - Remove streams - Add more debug logging - Fix shift in BrotliBitReaderUnload - Allocate ringbuffer at later stages - Sort / fix includes - Fix whitespaces - Eliminate dead code - Drive-by code simplifications --- <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:32 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/brotli#894