blob: f2c4957af17a33f45ca3fc929a4cb7d0fca5ddc5 [file] [log] [blame]
Yaowu Xuc27fc142016-08-22 16:08:15 -07001/*
Yaowu Xu9c01aa12016-09-01 14:32:49 -07002 * Copyright (c) 2016, Alliance for Open Media. All rights reserved
Yaowu Xuc27fc142016-08-22 16:08:15 -07003 *
Yaowu Xu9c01aa12016-09-01 14:32:49 -07004 * This source code is subject to the terms of the BSD 2 Clause License and
5 * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
6 * was not distributed with this source code in the LICENSE file, you can
7 * obtain it at www.aomedia.org/license/software. If the Alliance for Open
8 * Media Patent License 1.0 was not distributed with this source code in the
9 * PATENTS file, you can obtain it at www.aomedia.org/license/patent.
Yaowu Xuc27fc142016-08-22 16:08:15 -070010 */
11
Yaowu Xuf883b422016-08-30 14:01:10 -070012#ifndef AOM_DSP_QUANTIZE_H_
13#define AOM_DSP_QUANTIZE_H_
Yaowu Xuc27fc142016-08-22 16:08:15 -070014
Yaowu Xuf883b422016-08-30 14:01:10 -070015#include "./aom_config.h"
16#include "aom_dsp/aom_dsp_common.h"
Yaowu Xuc27fc142016-08-22 16:08:15 -070017
18#ifdef __cplusplus
19extern "C" {
20#endif
21
Thomas Daviesf3b5ee12017-07-18 15:16:43 +010022void quantize_b_helper_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs,
23 int skip_block, const int16_t *zbin_ptr,
24 const int16_t *round_ptr, const int16_t *quant_ptr,
25 const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr,
26 tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr,
27 uint16_t *eob_ptr, const int16_t *scan,
28 const int16_t *iscan, const qm_val_t *qm_ptr,
29 const qm_val_t *iqm_ptr, const int log_scale);
30
Yaowu Xuf883b422016-08-30 14:01:10 -070031void aom_quantize_b_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs,
Yaowu Xuc27fc142016-08-22 16:08:15 -070032 int skip_block, const int16_t *zbin_ptr,
33 const int16_t *round_ptr, const int16_t *quant_ptr,
34 const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr,
35 tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr,
36 uint16_t *eob_ptr, const int16_t *scan,
Thomas Daviesf3b5ee12017-07-18 15:16:43 +010037 const int16_t *iscan);
38
Thomas Davies181fc082017-08-09 14:26:53 +010039void highbd_quantize_b_helper_c(
40 const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block,
41 const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *quant_ptr,
42 const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr,
43 tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr,
44 const int16_t *scan, const int16_t *iscan, const qm_val_t *qm_ptr,
45 const qm_val_t *iqm_ptr, const int log_scale);
46
Thomas Daviesf3b5ee12017-07-18 15:16:43 +010047void aom_highbd_quantize_b_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs,
48 int skip_block, const int16_t *zbin_ptr,
49 const int16_t *round_ptr, const int16_t *quant_ptr,
50 const int16_t *quant_shift_ptr,
51 tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr,
52 const int16_t *dequant_ptr, uint16_t *eob_ptr,
53 const int16_t *scan, const int16_t *iscan);
Thomas Daviesf3b5ee12017-07-18 15:16:43 +010054
55void aom_quantize_dc(const tran_low_t *coeff_ptr, int n_coeffs, int skip_block,
56 const int16_t *round_ptr, const int16_t quant_ptr,
57 tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr,
58 const int16_t dequant_ptr, uint16_t *eob_ptr);
59void aom_quantize_dc_32x32(const tran_low_t *coeff_ptr, int skip_block,
60 const int16_t *round_ptr, const int16_t quant_ptr,
61 tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr,
62 const int16_t dequant_ptr, uint16_t *eob_ptr);
Thomas Daviesf3b5ee12017-07-18 15:16:43 +010063void aom_quantize_dc_64x64(const tran_low_t *coeff_ptr, int skip_block,
64 const int16_t *round_ptr, const int16_t quant_ptr,
65 tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr,
66 const int16_t dequant_ptr, uint16_t *eob_ptr);
Thomas Daviesf3b5ee12017-07-18 15:16:43 +010067
68#if CONFIG_AOM_QM
Yaowu Xuf883b422016-08-30 14:01:10 -070069void aom_highbd_quantize_dc(const tran_low_t *coeff_ptr, int n_coeffs,
Yaowu Xuc27fc142016-08-22 16:08:15 -070070 int skip_block, const int16_t *round_ptr,
71 const int16_t quant_ptr, tran_low_t *qcoeff_ptr,
72 tran_low_t *dqcoeff_ptr, const int16_t dequant_ptr,
73 uint16_t *eob_ptr, const qm_val_t *qm_ptr,
74 const qm_val_t *iqm_ptr);
Yaowu Xuf883b422016-08-30 14:01:10 -070075void aom_highbd_quantize_dc_32x32(
Yaowu Xuc27fc142016-08-22 16:08:15 -070076 const tran_low_t *coeff_ptr, int skip_block, const int16_t *round_ptr,
77 const int16_t quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr,
78 const int16_t dequant_ptr, uint16_t *eob_ptr, const qm_val_t *qm_ptr,
79 const qm_val_t *iqm_ptr);
Debargha Mukherjee0e119122016-11-04 12:10:23 -070080void aom_highbd_quantize_dc_64x64(
81 const tran_low_t *coeff_ptr, int skip_block, const int16_t *round_ptr,
82 const int16_t quant_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr,
83 const int16_t dequant_ptr, uint16_t *eob_ptr, const qm_val_t *qm_ptr,
84 const qm_val_t *iqm_ptr);
Debargha Mukherjee0e119122016-11-04 12:10:23 -070085
Yaowu Xud3d41592018-02-14 13:26:52 -080086#else // CONFIG_AOM_QM
Debargha Mukherjee0e119122016-11-04 12:10:23 -070087
Yaowu Xuf883b422016-08-30 14:01:10 -070088void aom_highbd_quantize_dc(const tran_low_t *coeff_ptr, int n_coeffs,
Yaowu Xuc27fc142016-08-22 16:08:15 -070089 int skip_block, const int16_t *round_ptr,
90 const int16_t quant_ptr, tran_low_t *qcoeff_ptr,
91 tran_low_t *dqcoeff_ptr, const int16_t dequant_ptr,
92 uint16_t *eob_ptr);
Yaowu Xuf883b422016-08-30 14:01:10 -070093void aom_highbd_quantize_dc_32x32(const tran_low_t *coeff_ptr, int skip_block,
Yaowu Xuc27fc142016-08-22 16:08:15 -070094 const int16_t *round_ptr,
95 const int16_t quant_ptr,
96 tran_low_t *qcoeff_ptr,
97 tran_low_t *dqcoeff_ptr,
98 const int16_t dequant_ptr, uint16_t *eob_ptr);
Debargha Mukherjee0e119122016-11-04 12:10:23 -070099void aom_highbd_quantize_dc_64x64(const tran_low_t *coeff_ptr, int skip_block,
100 const int16_t *round_ptr,
101 const int16_t quant_ptr,
102 tran_low_t *qcoeff_ptr,
103 tran_low_t *dqcoeff_ptr,
104 const int16_t dequant_ptr, uint16_t *eob_ptr);
Debargha Mukherjee0e119122016-11-04 12:10:23 -0700105#endif // CONFIG_AOM_QM
Yaowu Xuc27fc142016-08-22 16:08:15 -0700106
107#ifdef __cplusplus
108} // extern "C"
109#endif
110
Yaowu Xuf883b422016-08-30 14:01:10 -0700111#endif // AOM_DSP_QUANTIZE_H_