blob: 700b5e6d726c7d2278c90392b230df303ecccbb1 [file] [log] [blame]
John Koleszar0ea50ce2010-05-18 11:58:33 -04001/*
John Koleszarc2140b82010-09-09 08:16:39 -04002 * Copyright (c) 2010 The WebM project authors. All Rights Reserved.
John Koleszar0ea50ce2010-05-18 11:58:33 -04003 *
John Koleszar94c52e42010-06-18 12:39:21 -04004 * Use of this source code is governed by a BSD-style license
John Koleszar09202d82010-06-04 16:19:40 -04005 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
John Koleszar94c52e42010-06-18 12:39:21 -04007 * in the file PATENTS. All contributing project authors may
John Koleszar09202d82010-06-04 16:19:40 -04008 * be found in the AUTHORS file in the root of the source tree.
John Koleszar0ea50ce2010-05-18 11:58:33 -04009 */
10
James Zerne903cac2013-12-15 18:20:21 -080011#ifndef VP8_COMMON_QUANT_COMMON_H_
12#define VP8_COMMON_QUANT_COMMON_H_
13
John Koleszar0ea50ce2010-05-18 11:58:33 -040014
15#include "string.h"
16#include "blockd.h"
17#include "onyxc_int.h"
18
James Zernaceba822014-01-18 12:16:11 -080019#ifdef __cplusplus
20extern "C" {
21#endif
22
John Koleszar0ea50ce2010-05-18 11:58:33 -040023extern int vp8_ac_yquant(int QIndex);
24extern int vp8_dc_quant(int QIndex, int Delta);
25extern int vp8_dc2quant(int QIndex, int Delta);
26extern int vp8_ac2quant(int QIndex, int Delta);
27extern int vp8_dc_uv_quant(int QIndex, int Delta);
28extern int vp8_ac_uv_quant(int QIndex, int Delta);
James Zerne903cac2013-12-15 18:20:21 -080029
James Zernaceba822014-01-18 12:16:11 -080030#ifdef __cplusplus
31} // extern "C"
32#endif
33
James Zerne903cac2013-12-15 18:20:21 -080034#endif // VP8_COMMON_QUANT_COMMON_H_