[PR #360] [MERGED] Step 1: extract common #954

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

📋 Pull Request Information

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

Base: to-v0.4Head: master


📝 Commits (1)

  • 0282918 Extract common parts: constants, dictionary, etc.

📊 Changes

62 files changed (+336 additions, -9784 deletions)

View changed files

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 (+1 -92)
📝 dec/prefix.h (+5 -3)
📝 dec/state.c (+1 -1)
📝 dec/state.h (+4 -3)
📝 dec/transform.h (+1 -1)

...and 42 more files

📄 Description

Extract common 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/360 **Author:** [@eustas](https://github.com/eustas) **Created:** 6/3/2016 **Status:** ✅ Merged **Merged:** 6/3/2016 **Merged by:** [@eustas](https://github.com/eustas) **Base:** `to-v0.4` ← **Head:** `master` --- ### 📝 Commits (1) - [`0282918`](https://github.com/google/brotli/commit/028291865dbc2f92bb114dd082f5ff78c907a875) Extract common parts: constants, dictionary, etc. ### 📊 Changes **62 files changed** (+336 additions, -9784 deletions) <details> <summary>View changed files</summary> ➕ `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` (+1 -92) 📝 `dec/prefix.h` (+5 -3) 📝 `dec/state.c` (+1 -1) 📝 `dec/state.h` (+4 -3) 📝 `dec/transform.h` (+1 -1) _...and 42 more files_ </details> ### 📄 Description Extract common 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:49 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/brotli#954