aboutsummaryrefslogtreecommitdiff
path: root/src/dec/vp8l.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/dec/vp8l.c')
-rw-r--r--src/dec/vp8l.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/dec/vp8l.c b/src/dec/vp8l.c
index a1c8d3a9..897e4395 100644
--- a/src/dec/vp8l.c
+++ b/src/dec/vp8l.c
@@ -327,10 +327,10 @@ static int ReadHuffmanCodes(VP8LDecoder* const dec, int xsize, int ysize,
hdr->huffman_subsample_bits_ = huffman_precision;
for (i = 0; i < huffman_pixs; ++i) {
// The huffman data is stored in red and green bytes.
- const int group = (huffman_image[i] >> 8) & 0xffff;
- huffman_image[i] = group;
- if (group >= num_htree_groups) {
- num_htree_groups = group + 1;
+ const int index = (huffman_image[i] >> 8) & 0xffff;
+ huffman_image[i] = index;
+ if (index >= num_htree_groups) {
+ num_htree_groups = index + 1;
}
}
}