Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 1 | /* |
Yaowu Xu | 9c01aa1 | 2016-09-01 14:32:49 -0700 | [diff] [blame] | 2 | * Copyright (c) 2016, Alliance for Open Media. All rights reserved |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 3 | * |
Yaowu Xu | 9c01aa1 | 2016-09-01 14:32:49 -0700 | [diff] [blame] | 4 | * 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 Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 10 | */ |
| 11 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 12 | #ifndef AOM_DSP_QUANTIZE_H_ |
| 13 | #define AOM_DSP_QUANTIZE_H_ |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 14 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 15 | #include "./aom_config.h" |
| 16 | #include "aom_dsp/aom_dsp_common.h" |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 17 | |
| 18 | #ifdef __cplusplus |
| 19 | extern "C" { |
| 20 | #endif |
| 21 | |
Thomas Davies | f3b5ee1 | 2017-07-18 15:16:43 +0100 | [diff] [blame] | 22 | void 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 31 | void aom_quantize_b_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 32 | 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 Davies | f3b5ee1 | 2017-07-18 15:16:43 +0100 | [diff] [blame] | 37 | const int16_t *iscan); |
| 38 | |
Thomas Davies | 181fc08 | 2017-08-09 14:26:53 +0100 | [diff] [blame] | 39 | void 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 Davies | f3b5ee1 | 2017-07-18 15:16:43 +0100 | [diff] [blame] | 47 | void 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 Davies | f3b5ee1 | 2017-07-18 15:16:43 +0100 | [diff] [blame] | 54 | |
| 55 | void 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); |
| 59 | void 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 Davies | f3b5ee1 | 2017-07-18 15:16:43 +0100 | [diff] [blame] | 63 | void 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 Davies | f3b5ee1 | 2017-07-18 15:16:43 +0100 | [diff] [blame] | 67 | |
| 68 | #if CONFIG_AOM_QM |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 69 | void aom_highbd_quantize_dc(const tran_low_t *coeff_ptr, int n_coeffs, |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 70 | 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 75 | void aom_highbd_quantize_dc_32x32( |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 76 | 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 Mukherjee | 0e11912 | 2016-11-04 12:10:23 -0700 | [diff] [blame] | 80 | void 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 Mukherjee | 0e11912 | 2016-11-04 12:10:23 -0700 | [diff] [blame] | 85 | |
Yaowu Xu | d3d4159 | 2018-02-14 13:26:52 -0800 | [diff] [blame] | 86 | #else // CONFIG_AOM_QM |
Debargha Mukherjee | 0e11912 | 2016-11-04 12:10:23 -0700 | [diff] [blame] | 87 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 88 | void aom_highbd_quantize_dc(const tran_low_t *coeff_ptr, int n_coeffs, |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 89 | 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 93 | void aom_highbd_quantize_dc_32x32(const tran_low_t *coeff_ptr, int skip_block, |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 94 | 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 Mukherjee | 0e11912 | 2016-11-04 12:10:23 -0700 | [diff] [blame] | 99 | void 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 Mukherjee | 0e11912 | 2016-11-04 12:10:23 -0700 | [diff] [blame] | 105 | #endif // CONFIG_AOM_QM |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 106 | |
| 107 | #ifdef __cplusplus |
| 108 | } // extern "C" |
| 109 | #endif |
| 110 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 111 | #endif // AOM_DSP_QUANTIZE_H_ |