Path: blob/master/thirdparty/libwebp/src/dec/quant_dec.c
9913 views
// Copyright 2010 Google Inc. All Rights Reserved.1//2// Use of this source code is governed by a BSD-style license3// that can be found in the COPYING file in the root of the source4// tree. An additional intellectual property rights grant can be found5// in the file PATENTS. All contributing project authors may6// be found in the AUTHORS file in the root of the source tree.7// -----------------------------------------------------------------------------8//9// Quantizer initialization10//11// Author: Skal ([email protected])1213#include "src/dec/vp8i_dec.h"1415static WEBP_INLINE int clip(int v, int M) {16return v < 0 ? 0 : v > M ? M : v;17}1819// Paragraph 14.120static const uint8_t kDcTable[128] = {214, 5, 6, 7, 8, 9, 10, 10,2211, 12, 13, 14, 15, 16, 17, 17,2318, 19, 20, 20, 21, 21, 22, 22,2423, 23, 24, 25, 25, 26, 27, 28,2529, 30, 31, 32, 33, 34, 35, 36,2637, 37, 38, 39, 40, 41, 42, 43,2744, 45, 46, 46, 47, 48, 49, 50,2851, 52, 53, 54, 55, 56, 57, 58,2959, 60, 61, 62, 63, 64, 65, 66,3067, 68, 69, 70, 71, 72, 73, 74,3175, 76, 76, 77, 78, 79, 80, 81,3282, 83, 84, 85, 86, 87, 88, 89,3391, 93, 95, 96, 98, 100, 101, 102,34104, 106, 108, 110, 112, 114, 116, 118,35122, 124, 126, 128, 130, 132, 134, 136,36138, 140, 143, 145, 148, 151, 154, 15737};3839static const uint16_t kAcTable[128] = {404, 5, 6, 7, 8, 9, 10, 11,4112, 13, 14, 15, 16, 17, 18, 19,4220, 21, 22, 23, 24, 25, 26, 27,4328, 29, 30, 31, 32, 33, 34, 35,4436, 37, 38, 39, 40, 41, 42, 43,4544, 45, 46, 47, 48, 49, 50, 51,4652, 53, 54, 55, 56, 57, 58, 60,4762, 64, 66, 68, 70, 72, 74, 76,4878, 80, 82, 84, 86, 88, 90, 92,4994, 96, 98, 100, 102, 104, 106, 108,50110, 112, 114, 116, 119, 122, 125, 128,51131, 134, 137, 140, 143, 146, 149, 152,52155, 158, 161, 164, 167, 170, 173, 177,53181, 185, 189, 193, 197, 201, 205, 209,54213, 217, 221, 225, 229, 234, 239, 245,55249, 254, 259, 264, 269, 274, 279, 28456};5758//------------------------------------------------------------------------------59// Paragraph 9.66061void VP8ParseQuant(VP8Decoder* const dec) {62VP8BitReader* const br = &dec->br_;63const int base_q0 = VP8GetValue(br, 7, "global-header");64const int dqy1_dc = VP8Get(br, "global-header") ?65VP8GetSignedValue(br, 4, "global-header") : 0;66const int dqy2_dc = VP8Get(br, "global-header") ?67VP8GetSignedValue(br, 4, "global-header") : 0;68const int dqy2_ac = VP8Get(br, "global-header") ?69VP8GetSignedValue(br, 4, "global-header") : 0;70const int dquv_dc = VP8Get(br, "global-header") ?71VP8GetSignedValue(br, 4, "global-header") : 0;72const int dquv_ac = VP8Get(br, "global-header") ?73VP8GetSignedValue(br, 4, "global-header") : 0;7475const VP8SegmentHeader* const hdr = &dec->segment_hdr_;76int i;7778for (i = 0; i < NUM_MB_SEGMENTS; ++i) {79int q;80if (hdr->use_segment_) {81q = hdr->quantizer_[i];82if (!hdr->absolute_delta_) {83q += base_q0;84}85} else {86if (i > 0) {87dec->dqm_[i] = dec->dqm_[0];88continue;89} else {90q = base_q0;91}92}93{94VP8QuantMatrix* const m = &dec->dqm_[i];95m->y1_mat_[0] = kDcTable[clip(q + dqy1_dc, 127)];96m->y1_mat_[1] = kAcTable[clip(q + 0, 127)];9798m->y2_mat_[0] = kDcTable[clip(q + dqy2_dc, 127)] * 2;99// For all x in [0..284], x*155/100 is bitwise equal to (x*101581) >> 16.100// The smallest precision for that is '(x*6349) >> 12' but 16 is a good101// word size.102m->y2_mat_[1] = (kAcTable[clip(q + dqy2_ac, 127)] * 101581) >> 16;103if (m->y2_mat_[1] < 8) m->y2_mat_[1] = 8;104105m->uv_mat_[0] = kDcTable[clip(q + dquv_dc, 117)];106m->uv_mat_[1] = kAcTable[clip(q + dquv_ac, 127)];107108m->uv_quant_ = q + dquv_ac; // for dithering strength evaluation109}110}111}112113//------------------------------------------------------------------------------114115116117