summaryrefslogtreecommitdiff
path: root/thirdparty/libwebp/src/utils/huffman_encode_utils.c
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2021-11-20 10:47:00 +0100
committerGitHub <noreply@github.com>2021-11-20 10:47:00 +0100
commite97634f56d4910cf57e8aa4e4c570a71e99eb7ba (patch)
tree68614251db829a5b7aba94e09e99ac6efbc3d74a /thirdparty/libwebp/src/utils/huffman_encode_utils.c
parentbd896bf91573f2a947f29b7fc8201d7ff09b7838 (diff)
parent41ce417847ab5eec58aa0a5e618da2ee076e3d67 (diff)
Merge pull request #55127 from akien-mga/libwebp-1.2.1
Diffstat (limited to 'thirdparty/libwebp/src/utils/huffman_encode_utils.c')
-rw-r--r--thirdparty/libwebp/src/utils/huffman_encode_utils.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/thirdparty/libwebp/src/utils/huffman_encode_utils.c b/thirdparty/libwebp/src/utils/huffman_encode_utils.c
index 6f3b1bbe02..fd7a47d8f7 100644
--- a/thirdparty/libwebp/src/utils/huffman_encode_utils.c
+++ b/thirdparty/libwebp/src/utils/huffman_encode_utils.c
@@ -404,8 +404,7 @@ static void ConvertBitDepthsToSymbols(HuffmanTreeCode* const tree) {
// Main entry point
void VP8LCreateHuffmanTree(uint32_t* const histogram, int tree_depth_limit,
- uint8_t* const buf_rle,
- HuffmanTree* const huff_tree,
+ uint8_t* const buf_rle, HuffmanTree* const huff_tree,
HuffmanTreeCode* const huff_code) {
const int num_symbols = huff_code->num_symbols;
memset(buf_rle, 0, num_symbols * sizeof(*buf_rle));