[PR #370] [MERGED] Convert encoder to plain C. #967

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

📋 Pull Request Information

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

Base: to-v0.4Head: to-v0.4


📝 Commits (1)

  • b972c67 Convert encoder to plain C.

📊 Changes

62 files changed (+8121 additions, -6108 deletions)

View changed files

📝 dec/port.h (+1 -1)
📝 enc/Makefile (+4 -4)
📝 enc/backward_references.c (+604 -580)
📝 enc/backward_references.h (+59 -71)
enc/backward_references_inc.h (+156 -0)
enc/bit_cost.c (+35 -0)
📝 enc/bit_cost.h (+19 -117)
enc/bit_cost_inc.h (+127 -0)
enc/block_encoder_inc.h (+33 -0)
📝 enc/block_splitter.c (+103 -412)
📝 enc/block_splitter.h (+35 -46)
enc/block_splitter_inc.h (+431 -0)
📝 enc/brotli_bit_stream.c (+759 -619)
📝 enc/brotli_bit_stream.h (+58 -130)
enc/cluster.c (+56 -0)
📝 enc/cluster.h (+20 -303)
enc/cluster_inc.h (+315 -0)
📝 enc/command.h (+77 -71)
📝 enc/compress_fragment.c (+314 -271)
📝 enc/compress_fragment.h (+20 -9)

...and 42 more files

📄 Description

This will break CI builds


🔄 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/370 **Author:** [@eustas](https://github.com/eustas) **Created:** 6/13/2016 **Status:** ✅ Merged **Merged:** 6/13/2016 **Merged by:** [@eustas](https://github.com/eustas) **Base:** `to-v0.4` ← **Head:** `to-v0.4` --- ### 📝 Commits (1) - [`b972c67`](https://github.com/google/brotli/commit/b972c67780f03256a3fbf81dc3350a4bf00aa4ad) Convert encoder to plain C. ### 📊 Changes **62 files changed** (+8121 additions, -6108 deletions) <details> <summary>View changed files</summary> 📝 `dec/port.h` (+1 -1) 📝 `enc/Makefile` (+4 -4) 📝 `enc/backward_references.c` (+604 -580) 📝 `enc/backward_references.h` (+59 -71) ➕ `enc/backward_references_inc.h` (+156 -0) ➕ `enc/bit_cost.c` (+35 -0) 📝 `enc/bit_cost.h` (+19 -117) ➕ `enc/bit_cost_inc.h` (+127 -0) ➕ `enc/block_encoder_inc.h` (+33 -0) 📝 `enc/block_splitter.c` (+103 -412) 📝 `enc/block_splitter.h` (+35 -46) ➕ `enc/block_splitter_inc.h` (+431 -0) 📝 `enc/brotli_bit_stream.c` (+759 -619) 📝 `enc/brotli_bit_stream.h` (+58 -130) ➕ `enc/cluster.c` (+56 -0) 📝 `enc/cluster.h` (+20 -303) ➕ `enc/cluster_inc.h` (+315 -0) 📝 `enc/command.h` (+77 -71) 📝 `enc/compress_fragment.c` (+314 -271) 📝 `enc/compress_fragment.h` (+20 -9) _...and 42 more files_ </details> ### 📄 Description This will break CI builds --- <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:52 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/brotli#967