mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-07 21:23:32 +00:00

Built to libwebp code in to support the static option of webp loader. Code from :https://github.com/jacklicn/libwebp This forking version only contains the minimal webp decoding feature. Binary Size: +68kb Co-authored-by: Hermet Park <hermet@lottiefiles.com> issue: https://github.com/thorvg/thorvg/issues/1427
67 lines
2.3 KiB
C
67 lines
2.3 KiB
C
// Copyright 2012 Google Inc. All Rights Reserved.
|
|
//
|
|
// Use of this source code is governed by a BSD-style license
|
|
// that can be found in the COPYING file in the root of the source
|
|
// tree. An additional intellectual property rights grant can be found
|
|
// in the file PATENTS. All contributing project authors may
|
|
// be found in the AUTHORS file in the root of the source tree.
|
|
// -----------------------------------------------------------------------------
|
|
//
|
|
// Utilities for building and looking up Huffman trees.
|
|
//
|
|
// Author: Urvang Joshi (urvang@google.com)
|
|
|
|
#ifndef WEBP_UTILS_HUFFMAN_H_
|
|
#define WEBP_UTILS_HUFFMAN_H_
|
|
|
|
#include <assert.h>
|
|
#include "../webp/format_constants.h"
|
|
#include "../webp/types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define HUFFMAN_TABLE_BITS 8
|
|
#define HUFFMAN_TABLE_MASK ((1 << HUFFMAN_TABLE_BITS) - 1)
|
|
|
|
#define LENGTHS_TABLE_BITS 7
|
|
#define LENGTHS_TABLE_MASK ((1 << LENGTHS_TABLE_BITS) - 1)
|
|
|
|
|
|
// Huffman lookup table entry
|
|
typedef struct {
|
|
uint8_t bits; // number of bits used for this symbol
|
|
uint16_t value; // symbol value or table offset
|
|
} HuffmanCode;
|
|
|
|
// Huffman table group.
|
|
typedef struct HTreeGroup HTreeGroup;
|
|
struct HTreeGroup {
|
|
HuffmanCode* htrees[HUFFMAN_CODES_PER_META_CODE];
|
|
int is_trivial_literal; // True, if huffman trees for Red, Blue & Alpha
|
|
// Symbols are trivial (have a single code).
|
|
uint32_t literal_arb; // If is_trivial_literal is true, this is the
|
|
// ARGB value of the pixel, with Green channel
|
|
// being set to zero.
|
|
};
|
|
|
|
// Creates the instance of HTreeGroup with specified number of tree-groups.
|
|
HTreeGroup* VP8LHtreeGroupsNew(int num_htree_groups);
|
|
|
|
// Releases the memory allocated for HTreeGroup.
|
|
void VP8LHtreeGroupsFree(HTreeGroup* const htree_groups);
|
|
|
|
// Builds Huffman lookup table assuming code lengths are in symbol order.
|
|
// The 'code_lengths' is pre-allocated temporary memory buffer used for creating
|
|
// the huffman table.
|
|
// Returns built table size or 0 in case of error (invalid tree or
|
|
// memory error).
|
|
int VP8LBuildHuffmanTable(HuffmanCode* const root_table, int root_bits,
|
|
const int code_lengths[], int code_lengths_size);
|
|
|
|
#ifdef __cplusplus
|
|
} // extern "C"
|
|
#endif
|
|
|
|
#endif // WEBP_UTILS_HUFFMAN_H_
|