190d3ed91ae9228e1c8bab561b6138d4cb8c1e4fdAndreas Huber/*
2f71323e297a928af368937089d3ed71239786f86Andreas Huber *  Copyright (c) 2010 The WebM project authors. All Rights Reserved.
390d3ed91ae9228e1c8bab561b6138d4cb8c1e4fdAndreas Huber *
4f71323e297a928af368937089d3ed71239786f86Andreas Huber *  Use of this source code is governed by a BSD-style license
5f71323e297a928af368937089d3ed71239786f86Andreas Huber *  that can be found in the LICENSE file in the root of the source
6f71323e297a928af368937089d3ed71239786f86Andreas Huber *  tree. An additional intellectual property rights grant can be found
7f71323e297a928af368937089d3ed71239786f86Andreas Huber *  in the file PATENTS.  All contributing project authors may
8f71323e297a928af368937089d3ed71239786f86Andreas Huber *  be found in the AUTHORS file in the root of the source tree.
990d3ed91ae9228e1c8bab561b6138d4cb8c1e4fdAndreas Huber */
1090d3ed91ae9228e1c8bab561b6138d4cb8c1e4fdAndreas Huber
11b08e2e23eec181e9951df33cd704ac294c5407b6Vignesh Venkatasubramanian#ifndef VP8_COMMON_QUANT_COMMON_H_
12b08e2e23eec181e9951df33cd704ac294c5407b6Vignesh Venkatasubramanian#define VP8_COMMON_QUANT_COMMON_H_
13b08e2e23eec181e9951df33cd704ac294c5407b6Vignesh Venkatasubramanian
1490d3ed91ae9228e1c8bab561b6138d4cb8c1e4fdAndreas Huber
1590d3ed91ae9228e1c8bab561b6138d4cb8c1e4fdAndreas Huber#include "string.h"
1690d3ed91ae9228e1c8bab561b6138d4cb8c1e4fdAndreas Huber#include "blockd.h"
1790d3ed91ae9228e1c8bab561b6138d4cb8c1e4fdAndreas Huber#include "onyxc_int.h"
1890d3ed91ae9228e1c8bab561b6138d4cb8c1e4fdAndreas Huber
19b08e2e23eec181e9951df33cd704ac294c5407b6Vignesh Venkatasubramanian#ifdef __cplusplus
20b08e2e23eec181e9951df33cd704ac294c5407b6Vignesh Venkatasubramanianextern "C" {
21b08e2e23eec181e9951df33cd704ac294c5407b6Vignesh Venkatasubramanian#endif
22b08e2e23eec181e9951df33cd704ac294c5407b6Vignesh Venkatasubramanian
2390d3ed91ae9228e1c8bab561b6138d4cb8c1e4fdAndreas Huberextern int vp8_ac_yquant(int QIndex);
2490d3ed91ae9228e1c8bab561b6138d4cb8c1e4fdAndreas Huberextern int vp8_dc_quant(int QIndex, int Delta);
2590d3ed91ae9228e1c8bab561b6138d4cb8c1e4fdAndreas Huberextern int vp8_dc2quant(int QIndex, int Delta);
2690d3ed91ae9228e1c8bab561b6138d4cb8c1e4fdAndreas Huberextern int vp8_ac2quant(int QIndex, int Delta);
2790d3ed91ae9228e1c8bab561b6138d4cb8c1e4fdAndreas Huberextern int vp8_dc_uv_quant(int QIndex, int Delta);
2890d3ed91ae9228e1c8bab561b6138d4cb8c1e4fdAndreas Huberextern int vp8_ac_uv_quant(int QIndex, int Delta);
29b08e2e23eec181e9951df33cd704ac294c5407b6Vignesh Venkatasubramanian
30b08e2e23eec181e9951df33cd704ac294c5407b6Vignesh Venkatasubramanian#ifdef __cplusplus
31b08e2e23eec181e9951df33cd704ac294c5407b6Vignesh Venkatasubramanian}  // extern "C"
32b08e2e23eec181e9951df33cd704ac294c5407b6Vignesh Venkatasubramanian#endif
33b08e2e23eec181e9951df33cd704ac294c5407b6Vignesh Venkatasubramanian
34b08e2e23eec181e9951df33cd704ac294c5407b6Vignesh Venkatasubramanian#endif  // VP8_COMMON_QUANT_COMMON_H_
35