summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/libwebp/src/utils/huffman_encode_utils.c
diff options
context:
space:
mode:
authorEirik Aavitsland <eirik.aavitsland@qt.io>2021-08-19 14:50:59 +0200
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2021-08-20 06:45:26 +0000
commit3f201a44c1b1dc4f33d6af7faaa2c29af021c45e (patch)
tree858f88f239e2cc089715ea4de09facf7aefba13b /src/3rdparty/libwebp/src/utils/huffman_encode_utils.c
parent390cb629a999908d45b95c87daaae07e3ca7e4df (diff)
Update bundled libwebp to version 1.2.1
[ChangeLog][Third-Party Code] Update bundled libwebp to version 1.2.1 Change-Id: I68082fde6d20d32be87444f471520fb1e8091bf9 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io> (cherry picked from commit 80786b7a07b631bec56004bfeb67cb4157805268) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
Diffstat (limited to 'src/3rdparty/libwebp/src/utils/huffman_encode_utils.c')
-rw-r--r--src/3rdparty/libwebp/src/utils/huffman_encode_utils.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/3rdparty/libwebp/src/utils/huffman_encode_utils.c b/src/3rdparty/libwebp/src/utils/huffman_encode_utils.c
index 6f3b1bb..fd7a47d 100644
--- a/src/3rdparty/libwebp/src/utils/huffman_encode_utils.c
+++ b/src/3rdparty/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));