huffman_encode_utils.[hc],cosmetics: rm struct member '_' suffix

This is a follow up to:
ee8e8c62 Fix member naming for VP8LHistogram

This better matches Google style and clears some clang-tidy warnings.

Change-Id: Ice1edbbd98172a916be6b6d3cdaff80fe05a6e37
This commit is contained in:
James Zern
2025-04-14 12:33:54 -07:00
parent f0689e48cb
commit 1ed4654dc0
2 changed files with 24 additions and 24 deletions

View File

@@ -35,10 +35,10 @@ typedef struct {
// Struct to represent the Huffman tree.
typedef struct {
uint32_t total_count_; // Symbol frequency.
int value_; // Symbol value.
int pool_index_left_; // Index for the left sub-tree.
int pool_index_right_; // Index for the right sub-tree.
uint32_t total_count; // Symbol frequency.
int value; // Symbol value.
int pool_index_left; // Index for the left sub-tree.
int pool_index_right; // Index for the right sub-tree.
} HuffmanTree;
// Turn the Huffman tree into a token sequence.