Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-10-02 01:46:11 +0300
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-10-09 10:15:40 +0300
commitcad1593330e9d1990fa092bc7cd2fa4324d6ccf9 (patch)
treeda46ed7e960e29ce2ab226f167201cb7197b8fa9 /libavcodec/huffyuv.c
parent566280c3f464512446768fa5ee625edbf6a53c81 (diff)
avcodec/huffyuv: Speed up generating Huffman codes
The codes here have the property that the long codes are to the left of the tree (each zero bit child node is by definition to the left of its one bit sibling); they also have the property that among codes of the same length, the symbol is ascending from left to right. These properties can be used to create the codes from the lengths in only two passes over the array of lengths (the current code uses one pass for each length, i.e. 32): First one counts how many nodes of each length there are. Then one calculates the range of codes of each length (possible because the codes are ordered by length in the tree). This enables one to calculate the actual codes with only one further traversal of the length array. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/huffyuv.c')
-rw-r--r--libavcodec/huffyuv.c22
1 files changed, 13 insertions, 9 deletions
diff --git a/libavcodec/huffyuv.c b/libavcodec/huffyuv.c
index bbe4b952b0..6bcaacfc37 100644
--- a/libavcodec/huffyuv.c
+++ b/libavcodec/huffyuv.c
@@ -39,19 +39,23 @@
int ff_huffyuv_generate_bits_table(uint32_t *dst, const uint8_t *len_table, int n)
{
- int len, index;
- uint32_t bits = 0;
+ int lens[33] = { 0 };
+ uint32_t codes[33];
- for (len = 32; len > 0; len--) {
- for (index = 0; index < n; index++) {
- if (len_table[index] == len)
- dst[index] = bits++;
- }
- if (bits & 1) {
+ for (int i = 0; i < n; i++)
+ lens[len_table[i]]++;
+
+ codes[32] = 0;
+ for (int i = FF_ARRAY_ELEMS(lens) - 1; i > 0; i--) {
+ if ((lens[i] + codes[i]) & 1) {
av_log(NULL, AV_LOG_ERROR, "Error generating huffman table\n");
return -1;
}
- bits >>= 1;
+ codes[i - 1] = (lens[i] + codes[i]) >> 1;
+ }
+ for (int i = 0; i < n; i++) {
+ if (len_table[i])
+ dst[i] = codes[len_table[i]]++;
}
return 0;
}