// Copyright 2010 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. // ----------------------------------------------------------------------------- // // Quantizer initialization // // Author: Skal ([email protected]) #include "src/dec/vp8i_dec.h" static WEBP_INLINE int clip(int v, int M) { … } // Paragraph 14.1 static const uint8_t kDcTable[128] = …; static const uint16_t kAcTable[128] = …; //------------------------------------------------------------------------------ // Paragraph 9.6 void VP8ParseQuant(VP8Decoder* const dec) { … } //------------------------------------------------------------------------------