mirror of
https://github.com/webmproject/libwebp.git
synced 2025-09-06 11:02:04 +02:00
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:
@@ -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.
|
||||
|
Reference in New Issue
Block a user