1474eb7536515fb785e925cc9375d22817c416851hclam@chromium.org/*
2474eb7536515fb785e925cc9375d22817c416851hclam@chromium.org *  Copyright (c) 2010 The WebM project authors. All Rights Reserved.
3474eb7536515fb785e925cc9375d22817c416851hclam@chromium.org *
4474eb7536515fb785e925cc9375d22817c416851hclam@chromium.org *  Use of this source code is governed by a BSD-style license
5474eb7536515fb785e925cc9375d22817c416851hclam@chromium.org *  that can be found in the LICENSE file in the root of the source
6474eb7536515fb785e925cc9375d22817c416851hclam@chromium.org *  tree. An additional intellectual property rights grant can be found
7474eb7536515fb785e925cc9375d22817c416851hclam@chromium.org *  in the file PATENTS.  All contributing project authors may
8474eb7536515fb785e925cc9375d22817c416851hclam@chromium.org *  be found in the AUTHORS file in the root of the source tree.
9474eb7536515fb785e925cc9375d22817c416851hclam@chromium.org */
10474eb7536515fb785e925cc9375d22817c416851hclam@chromium.org
118b26fe55f3e4daa2311dbd2d95e8ac2b4e080685johannkoenig@chromium.org#ifndef VP8_COMMON_QUANT_COMMON_H_
128b26fe55f3e4daa2311dbd2d95e8ac2b4e080685johannkoenig@chromium.org#define VP8_COMMON_QUANT_COMMON_H_
138b26fe55f3e4daa2311dbd2d95e8ac2b4e080685johannkoenig@chromium.org
14474eb7536515fb785e925cc9375d22817c416851hclam@chromium.org
15474eb7536515fb785e925cc9375d22817c416851hclam@chromium.org#include "string.h"
16474eb7536515fb785e925cc9375d22817c416851hclam@chromium.org#include "blockd.h"
17474eb7536515fb785e925cc9375d22817c416851hclam@chromium.org#include "onyxc_int.h"
18474eb7536515fb785e925cc9375d22817c416851hclam@chromium.org
19dddee1ec7cedf276305b107429f684539b105276johannkoenig@chromium.org#ifdef __cplusplus
20dddee1ec7cedf276305b107429f684539b105276johannkoenig@chromium.orgextern "C" {
21dddee1ec7cedf276305b107429f684539b105276johannkoenig@chromium.org#endif
22dddee1ec7cedf276305b107429f684539b105276johannkoenig@chromium.org
23474eb7536515fb785e925cc9375d22817c416851hclam@chromium.orgextern int vp8_ac_yquant(int QIndex);
24474eb7536515fb785e925cc9375d22817c416851hclam@chromium.orgextern int vp8_dc_quant(int QIndex, int Delta);
25474eb7536515fb785e925cc9375d22817c416851hclam@chromium.orgextern int vp8_dc2quant(int QIndex, int Delta);
26474eb7536515fb785e925cc9375d22817c416851hclam@chromium.orgextern int vp8_ac2quant(int QIndex, int Delta);
27474eb7536515fb785e925cc9375d22817c416851hclam@chromium.orgextern int vp8_dc_uv_quant(int QIndex, int Delta);
28474eb7536515fb785e925cc9375d22817c416851hclam@chromium.orgextern int vp8_ac_uv_quant(int QIndex, int Delta);
298b26fe55f3e4daa2311dbd2d95e8ac2b4e080685johannkoenig@chromium.org
30dddee1ec7cedf276305b107429f684539b105276johannkoenig@chromium.org#ifdef __cplusplus
31dddee1ec7cedf276305b107429f684539b105276johannkoenig@chromium.org}  // extern "C"
32dddee1ec7cedf276305b107429f684539b105276johannkoenig@chromium.org#endif
33dddee1ec7cedf276305b107429f684539b105276johannkoenig@chromium.org
348b26fe55f3e4daa2311dbd2d95e8ac2b4e080685johannkoenig@chromium.org#endif  // VP8_COMMON_QUANT_COMMON_H_
35