2010-05-18 11:58:33 -04:00
|
|
|
/*
|
2010-09-09 08:16:39 -04:00
|
|
|
* Copyright (c) 2010 The WebM project authors. All Rights Reserved.
|
2010-05-18 11:58:33 -04:00
|
|
|
*
|
2010-06-18 12:39:21 -04:00
|
|
|
* Use of this source code is governed by a BSD-style license
|
2010-06-04 16:19:40 -04:00
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
2010-06-18 12:39:21 -04:00
|
|
|
* in the file PATENTS. All contributing project authors may
|
2010-06-04 16:19:40 -04:00
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
2010-05-18 11:58:33 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <math.h>
|
2015-07-17 12:05:42 -07:00
|
|
|
#include "./vpx_dsp_rtcd.h"
|
2010-05-18 11:58:33 -04:00
|
|
|
#include "vpx_mem/vpx_mem.h"
|
2015-05-11 19:09:22 -07:00
|
|
|
#include "vpx_ports/mem.h"
|
2010-05-18 11:58:33 -04:00
|
|
|
|
2014-02-28 11:30:51 -08:00
|
|
|
#include "vp9/common/vp9_quant_common.h"
|
|
|
|
#include "vp9/common/vp9_seg_common.h"
|
|
|
|
|
2014-04-18 18:27:47 -07:00
|
|
|
#include "vp9/encoder/vp9_encoder.h"
|
2012-11-28 10:41:40 -08:00
|
|
|
#include "vp9/encoder/vp9_quantize.h"
|
2014-07-02 12:36:48 -07:00
|
|
|
#include "vp9/encoder/vp9_rd.h"
|
2010-05-18 11:58:33 -04:00
|
|
|
|
2014-09-02 16:34:09 -07:00
|
|
|
void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs,
|
2016-07-26 20:43:23 -07:00
|
|
|
int skip_block, const int16_t *zbin_ptr,
|
|
|
|
const int16_t *round_ptr, const int16_t *quant_ptr,
|
|
|
|
const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr,
|
|
|
|
tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr,
|
|
|
|
uint16_t *eob_ptr, const int16_t *scan,
|
|
|
|
const int16_t *iscan) {
|
2014-07-01 16:10:44 -07:00
|
|
|
int i, eob = -1;
|
|
|
|
// TODO(jingning) Decide the need of these arguments after the
|
|
|
|
// quantization process is completed.
|
|
|
|
(void)zbin_ptr;
|
|
|
|
(void)quant_shift_ptr;
|
|
|
|
(void)iscan;
|
|
|
|
|
2015-04-23 20:47:40 -07:00
|
|
|
memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr));
|
|
|
|
memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr));
|
2014-07-01 16:10:44 -07:00
|
|
|
|
|
|
|
if (!skip_block) {
|
|
|
|
// Quantization pass: All coefficients with index >= zero_flag are
|
|
|
|
// skippable. Note: zero_flag can be zero.
|
2014-09-02 16:34:09 -07:00
|
|
|
for (i = 0; i < n_coeffs; i++) {
|
2014-07-01 16:10:44 -07:00
|
|
|
const int rc = scan[i];
|
|
|
|
const int coeff = coeff_ptr[rc];
|
|
|
|
const int coeff_sign = (coeff >> 31);
|
|
|
|
const int abs_coeff = (coeff ^ coeff_sign) - coeff_sign;
|
|
|
|
|
|
|
|
int tmp = clamp(abs_coeff + round_ptr[rc != 0], INT16_MIN, INT16_MAX);
|
|
|
|
tmp = (tmp * quant_ptr[rc != 0]) >> 16;
|
|
|
|
|
|
|
|
qcoeff_ptr[rc] = (tmp ^ coeff_sign) - coeff_sign;
|
|
|
|
dqcoeff_ptr[rc] = qcoeff_ptr[rc] * dequant_ptr[rc != 0];
|
|
|
|
|
2016-07-26 20:43:23 -07:00
|
|
|
if (tmp) eob = i;
|
2014-07-01 16:10:44 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
*eob_ptr = eob + 1;
|
|
|
|
}
|
|
|
|
|
2014-09-02 16:34:09 -07:00
|
|
|
#if CONFIG_VP9_HIGHBITDEPTH
|
2016-07-26 20:43:23 -07:00
|
|
|
void vp9_highbd_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t count,
|
|
|
|
int skip_block, const int16_t *zbin_ptr,
|
2014-10-08 12:43:22 -07:00
|
|
|
const int16_t *round_ptr,
|
|
|
|
const int16_t *quant_ptr,
|
|
|
|
const int16_t *quant_shift_ptr,
|
2016-07-26 20:43:23 -07:00
|
|
|
tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr,
|
|
|
|
const int16_t *dequant_ptr, uint16_t *eob_ptr,
|
|
|
|
const int16_t *scan, const int16_t *iscan) {
|
2014-09-02 16:34:09 -07:00
|
|
|
int i;
|
|
|
|
int eob = -1;
|
|
|
|
// TODO(jingning) Decide the need of these arguments after the
|
|
|
|
// quantization process is completed.
|
|
|
|
(void)zbin_ptr;
|
|
|
|
(void)quant_shift_ptr;
|
|
|
|
(void)iscan;
|
|
|
|
|
2015-04-23 20:47:40 -07:00
|
|
|
memset(qcoeff_ptr, 0, count * sizeof(*qcoeff_ptr));
|
|
|
|
memset(dqcoeff_ptr, 0, count * sizeof(*dqcoeff_ptr));
|
2014-09-02 16:34:09 -07:00
|
|
|
|
|
|
|
if (!skip_block) {
|
|
|
|
// Quantization pass: All coefficients with index >= zero_flag are
|
|
|
|
// skippable. Note: zero_flag can be zero.
|
|
|
|
for (i = 0; i < count; i++) {
|
|
|
|
const int rc = scan[i];
|
|
|
|
const int coeff = coeff_ptr[rc];
|
|
|
|
const int coeff_sign = (coeff >> 31);
|
|
|
|
const int abs_coeff = (coeff ^ coeff_sign) - coeff_sign;
|
2015-07-07 18:29:14 -07:00
|
|
|
const int64_t tmp = abs_coeff + round_ptr[rc != 0];
|
2016-06-15 17:59:26 -07:00
|
|
|
const int abs_qcoeff = (int)((tmp * quant_ptr[rc != 0]) >> 16);
|
2015-07-07 18:29:14 -07:00
|
|
|
qcoeff_ptr[rc] = (tran_low_t)((abs_qcoeff ^ coeff_sign) - coeff_sign);
|
2014-09-02 16:34:09 -07:00
|
|
|
dqcoeff_ptr[rc] = qcoeff_ptr[rc] * dequant_ptr[rc != 0];
|
2016-07-26 20:43:23 -07:00
|
|
|
if (abs_qcoeff) eob = i;
|
2014-09-02 16:34:09 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
*eob_ptr = eob + 1;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-07-07 12:08:40 -07:00
|
|
|
// TODO(jingning) Refactor this file and combine functions with similar
|
|
|
|
// operations.
|
2014-09-02 16:34:09 -07:00
|
|
|
void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs,
|
2016-07-26 20:43:23 -07:00
|
|
|
int skip_block, const int16_t *zbin_ptr,
|
|
|
|
const int16_t *round_ptr, const int16_t *quant_ptr,
|
2014-07-07 12:08:40 -07:00
|
|
|
const int16_t *quant_shift_ptr,
|
2014-09-02 16:34:09 -07:00
|
|
|
tran_low_t *qcoeff_ptr, tran_low_t *dqcoeff_ptr,
|
2016-07-26 20:43:23 -07:00
|
|
|
const int16_t *dequant_ptr, uint16_t *eob_ptr,
|
2014-07-07 12:08:40 -07:00
|
|
|
const int16_t *scan, const int16_t *iscan) {
|
|
|
|
int i, eob = -1;
|
|
|
|
(void)zbin_ptr;
|
|
|
|
(void)quant_shift_ptr;
|
|
|
|
(void)iscan;
|
|
|
|
|
2015-04-23 20:47:40 -07:00
|
|
|
memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr));
|
|
|
|
memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr));
|
2014-07-07 12:08:40 -07:00
|
|
|
|
|
|
|
if (!skip_block) {
|
|
|
|
for (i = 0; i < n_coeffs; i++) {
|
|
|
|
const int rc = scan[i];
|
|
|
|
const int coeff = coeff_ptr[rc];
|
|
|
|
const int coeff_sign = (coeff >> 31);
|
|
|
|
int tmp = 0;
|
|
|
|
int abs_coeff = (coeff ^ coeff_sign) - coeff_sign;
|
|
|
|
|
|
|
|
if (abs_coeff >= (dequant_ptr[rc != 0] >> 2)) {
|
|
|
|
abs_coeff += ROUND_POWER_OF_TWO(round_ptr[rc != 0], 1);
|
|
|
|
abs_coeff = clamp(abs_coeff, INT16_MIN, INT16_MAX);
|
|
|
|
tmp = (abs_coeff * quant_ptr[rc != 0]) >> 15;
|
|
|
|
qcoeff_ptr[rc] = (tmp ^ coeff_sign) - coeff_sign;
|
|
|
|
dqcoeff_ptr[rc] = qcoeff_ptr[rc] * dequant_ptr[rc != 0] / 2;
|
|
|
|
}
|
|
|
|
|
2016-07-26 20:43:23 -07:00
|
|
|
if (tmp) eob = i;
|
2014-07-07 12:08:40 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
*eob_ptr = eob + 1;
|
|
|
|
}
|
|
|
|
|
2014-09-02 16:34:09 -07:00
|
|
|
#if CONFIG_VP9_HIGHBITDEPTH
|
2016-07-26 20:43:23 -07:00
|
|
|
void vp9_highbd_quantize_fp_32x32_c(
|
|
|
|
const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block,
|
|
|
|
const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *quant_ptr,
|
|
|
|
const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr,
|
|
|
|
tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr,
|
|
|
|
const int16_t *scan, const int16_t *iscan) {
|
2014-09-02 16:34:09 -07:00
|
|
|
int i, eob = -1;
|
|
|
|
(void)zbin_ptr;
|
|
|
|
(void)quant_shift_ptr;
|
|
|
|
(void)iscan;
|
|
|
|
|
2015-04-23 20:47:40 -07:00
|
|
|
memset(qcoeff_ptr, 0, n_coeffs * sizeof(*qcoeff_ptr));
|
|
|
|
memset(dqcoeff_ptr, 0, n_coeffs * sizeof(*dqcoeff_ptr));
|
2014-09-02 16:34:09 -07:00
|
|
|
|
|
|
|
if (!skip_block) {
|
|
|
|
for (i = 0; i < n_coeffs; i++) {
|
2015-07-07 18:29:14 -07:00
|
|
|
uint32_t abs_qcoeff = 0;
|
2014-09-02 16:34:09 -07:00
|
|
|
const int rc = scan[i];
|
|
|
|
const int coeff = coeff_ptr[rc];
|
|
|
|
const int coeff_sign = (coeff >> 31);
|
|
|
|
const int abs_coeff = (coeff ^ coeff_sign) - coeff_sign;
|
|
|
|
|
|
|
|
if (abs_coeff >= (dequant_ptr[rc != 0] >> 2)) {
|
2016-07-26 20:43:23 -07:00
|
|
|
const int64_t tmp =
|
|
|
|
abs_coeff + ROUND_POWER_OF_TWO(round_ptr[rc != 0], 1);
|
|
|
|
abs_qcoeff = (uint32_t)((tmp * quant_ptr[rc != 0]) >> 15);
|
2015-07-07 18:29:14 -07:00
|
|
|
qcoeff_ptr[rc] = (tran_low_t)((abs_qcoeff ^ coeff_sign) - coeff_sign);
|
2014-09-02 16:34:09 -07:00
|
|
|
dqcoeff_ptr[rc] = qcoeff_ptr[rc] * dequant_ptr[rc != 0] / 2;
|
|
|
|
}
|
|
|
|
|
2016-07-26 20:43:23 -07:00
|
|
|
if (abs_qcoeff) eob = i;
|
2014-09-02 16:34:09 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
*eob_ptr = eob + 1;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-12-02 18:33:50 -08:00
|
|
|
void vp9_regular_quantize_b_4x4(MACROBLOCK *x, int plane, int block,
|
2013-10-28 14:28:28 -07:00
|
|
|
const int16_t *scan, const int16_t *iscan) {
|
|
|
|
MACROBLOCKD *const xd = &x->e_mbd;
|
2014-02-03 14:57:28 -08:00
|
|
|
struct macroblock_plane *p = &x->plane[plane];
|
|
|
|
struct macroblockd_plane *pd = &xd->plane[plane];
|
2013-10-28 14:28:28 -07:00
|
|
|
|
2014-09-02 16:34:09 -07:00
|
|
|
#if CONFIG_VP9_HIGHBITDEPTH
|
|
|
|
if (xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) {
|
2016-07-26 20:43:23 -07:00
|
|
|
vpx_highbd_quantize_b(BLOCK_OFFSET(p->coeff, block), 16, x->skip_block,
|
2015-03-03 12:26:41 -08:00
|
|
|
p->zbin, p->round, p->quant, p->quant_shift,
|
|
|
|
BLOCK_OFFSET(p->qcoeff, block),
|
2016-07-26 20:43:23 -07:00
|
|
|
BLOCK_OFFSET(pd->dqcoeff, block), pd->dequant,
|
|
|
|
&p->eobs[block], scan, iscan);
|
2014-09-02 16:34:09 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
2016-07-26 20:43:23 -07:00
|
|
|
vpx_quantize_b(BLOCK_OFFSET(p->coeff, block), 16, x->skip_block, p->zbin,
|
|
|
|
p->round, p->quant, p->quant_shift,
|
2015-03-03 12:26:41 -08:00
|
|
|
BLOCK_OFFSET(p->qcoeff, block),
|
2016-07-26 20:43:23 -07:00
|
|
|
BLOCK_OFFSET(pd->dqcoeff, block), pd->dequant, &p->eobs[block],
|
|
|
|
scan, iscan);
|
2013-04-25 14:44:44 -07:00
|
|
|
}
|
|
|
|
|
2013-07-01 11:36:07 -07:00
|
|
|
static void invert_quant(int16_t *quant, int16_t *shift, int d) {
|
2012-07-13 15:21:29 -07:00
|
|
|
unsigned t;
|
2015-11-19 16:46:46 -08:00
|
|
|
int l, m;
|
2012-07-13 15:21:29 -07:00
|
|
|
t = d;
|
2016-07-26 20:43:23 -07:00
|
|
|
for (l = 0; t > 1; l++) t >>= 1;
|
2015-11-19 16:46:46 -08:00
|
|
|
m = 1 + (1 << (16 + l)) / d;
|
|
|
|
*quant = (int16_t)(m - (1 << 16));
|
2013-07-01 11:36:07 -07:00
|
|
|
*shift = 1 << (16 - l);
|
2011-05-19 11:04:03 -04:00
|
|
|
}
|
|
|
|
|
2014-09-02 16:34:09 -07:00
|
|
|
static int get_qzbin_factor(int q, vpx_bit_depth_t bit_depth) {
|
2014-09-02 16:34:09 -07:00
|
|
|
const int quant = vp9_dc_quant(q, 0, bit_depth);
|
|
|
|
#if CONFIG_VP9_HIGHBITDEPTH
|
|
|
|
switch (bit_depth) {
|
2016-07-26 20:43:23 -07:00
|
|
|
case VPX_BITS_8: return q == 0 ? 64 : (quant < 148 ? 84 : 80);
|
|
|
|
case VPX_BITS_10: return q == 0 ? 64 : (quant < 592 ? 84 : 80);
|
|
|
|
case VPX_BITS_12: return q == 0 ? 64 : (quant < 2368 ? 84 : 80);
|
2014-09-02 16:34:09 -07:00
|
|
|
default:
|
|
|
|
assert(0 && "bit_depth should be VPX_BITS_8, VPX_BITS_10 or VPX_BITS_12");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
#else
|
2016-07-26 20:43:23 -07:00
|
|
|
(void)bit_depth;
|
2014-09-02 16:34:09 -07:00
|
|
|
return q == 0 ? 64 : (quant < 148 ? 84 : 80);
|
2014-09-02 16:34:09 -07:00
|
|
|
#endif
|
2014-09-02 16:34:09 -07:00
|
|
|
}
|
|
|
|
|
2012-10-30 17:53:32 -07:00
|
|
|
void vp9_init_quantizer(VP9_COMP *cpi) {
|
2013-08-12 15:23:47 -07:00
|
|
|
VP9_COMMON *const cm = &cpi->common;
|
2014-03-28 16:46:41 -07:00
|
|
|
QUANTS *const quants = &cpi->quants;
|
2014-02-28 10:11:31 -08:00
|
|
|
int i, q, quant;
|
2011-12-02 14:57:21 +00:00
|
|
|
|
2013-03-07 12:24:35 -08:00
|
|
|
for (q = 0; q < QINDEX_RANGE; q++) {
|
2014-09-02 16:34:09 -07:00
|
|
|
const int qzbin_factor = get_qzbin_factor(q, cm->bit_depth);
|
2013-08-12 15:23:47 -07:00
|
|
|
const int qrounding_factor = q == 0 ? 64 : 48;
|
|
|
|
|
|
|
|
for (i = 0; i < 2; ++i) {
|
2014-07-01 16:10:44 -07:00
|
|
|
int qrounding_factor_fp = i == 0 ? 48 : 42;
|
2016-07-26 20:43:23 -07:00
|
|
|
if (q == 0) qrounding_factor_fp = 64;
|
2014-07-01 16:10:44 -07:00
|
|
|
|
2014-02-28 10:11:31 -08:00
|
|
|
// y
|
2014-09-02 16:34:09 -07:00
|
|
|
quant = i == 0 ? vp9_dc_quant(q, cm->y_dc_delta_q, cm->bit_depth)
|
|
|
|
: vp9_ac_quant(q, 0, cm->bit_depth);
|
2014-03-28 16:46:41 -07:00
|
|
|
invert_quant(&quants->y_quant[q][i], &quants->y_quant_shift[q][i], quant);
|
2014-05-29 18:14:17 -07:00
|
|
|
quants->y_quant_fp[q][i] = (1 << 16) / quant;
|
2014-07-01 16:10:44 -07:00
|
|
|
quants->y_round_fp[q][i] = (qrounding_factor_fp * quant) >> 7;
|
2014-03-28 16:46:41 -07:00
|
|
|
quants->y_zbin[q][i] = ROUND_POWER_OF_TWO(qzbin_factor * quant, 7);
|
|
|
|
quants->y_round[q][i] = (qrounding_factor * quant) >> 7;
|
2015-02-20 10:58:12 -08:00
|
|
|
cpi->y_dequant[q][i] = quant;
|
2013-07-01 11:36:07 -07:00
|
|
|
|
2014-02-28 10:11:31 -08:00
|
|
|
// uv
|
2014-09-02 16:34:09 -07:00
|
|
|
quant = i == 0 ? vp9_dc_quant(q, cm->uv_dc_delta_q, cm->bit_depth)
|
|
|
|
: vp9_ac_quant(q, cm->uv_ac_delta_q, cm->bit_depth);
|
2016-07-26 20:43:23 -07:00
|
|
|
invert_quant(&quants->uv_quant[q][i], &quants->uv_quant_shift[q][i],
|
|
|
|
quant);
|
2014-05-29 18:14:17 -07:00
|
|
|
quants->uv_quant_fp[q][i] = (1 << 16) / quant;
|
2014-07-01 16:10:44 -07:00
|
|
|
quants->uv_round_fp[q][i] = (qrounding_factor_fp * quant) >> 7;
|
2014-03-28 16:46:41 -07:00
|
|
|
quants->uv_zbin[q][i] = ROUND_POWER_OF_TWO(qzbin_factor * quant, 7);
|
|
|
|
quants->uv_round[q][i] = (qrounding_factor * quant) >> 7;
|
2015-02-20 10:58:12 -08:00
|
|
|
cpi->uv_dequant[q][i] = quant;
|
2014-02-28 10:11:31 -08:00
|
|
|
}
|
2012-07-13 15:21:29 -07:00
|
|
|
|
2013-07-01 11:36:07 -07:00
|
|
|
for (i = 2; i < 8; i++) {
|
2014-03-28 16:46:41 -07:00
|
|
|
quants->y_quant[q][i] = quants->y_quant[q][1];
|
2014-05-29 18:14:17 -07:00
|
|
|
quants->y_quant_fp[q][i] = quants->y_quant_fp[q][1];
|
2014-07-01 16:10:44 -07:00
|
|
|
quants->y_round_fp[q][i] = quants->y_round_fp[q][1];
|
2014-03-28 16:46:41 -07:00
|
|
|
quants->y_quant_shift[q][i] = quants->y_quant_shift[q][1];
|
|
|
|
quants->y_zbin[q][i] = quants->y_zbin[q][1];
|
|
|
|
quants->y_round[q][i] = quants->y_round[q][1];
|
2015-02-20 10:58:12 -08:00
|
|
|
cpi->y_dequant[q][i] = cpi->y_dequant[q][1];
|
2013-03-07 12:24:35 -08:00
|
|
|
|
2014-03-28 16:46:41 -07:00
|
|
|
quants->uv_quant[q][i] = quants->uv_quant[q][1];
|
2014-05-29 18:14:17 -07:00
|
|
|
quants->uv_quant_fp[q][i] = quants->uv_quant_fp[q][1];
|
2014-07-01 16:10:44 -07:00
|
|
|
quants->uv_round_fp[q][i] = quants->uv_round_fp[q][1];
|
2014-03-28 16:46:41 -07:00
|
|
|
quants->uv_quant_shift[q][i] = quants->uv_quant_shift[q][1];
|
|
|
|
quants->uv_zbin[q][i] = quants->uv_zbin[q][1];
|
|
|
|
quants->uv_round[q][i] = quants->uv_round[q][1];
|
2015-02-20 10:58:12 -08:00
|
|
|
cpi->uv_dequant[q][i] = cpi->uv_dequant[q][1];
|
2011-05-19 11:04:03 -04:00
|
|
|
}
|
2012-07-13 15:21:29 -07:00
|
|
|
}
|
|
|
|
}
|
2011-05-19 11:04:03 -04:00
|
|
|
|
2014-02-28 10:11:31 -08:00
|
|
|
void vp9_init_plane_quantizers(VP9_COMP *cpi, MACROBLOCK *x) {
|
2014-02-03 14:57:28 -08:00
|
|
|
const VP9_COMMON *const cm = &cpi->common;
|
2014-03-28 16:46:41 -07:00
|
|
|
MACROBLOCKD *const xd = &x->e_mbd;
|
|
|
|
QUANTS *const quants = &cpi->quants;
|
2016-01-19 16:40:20 -08:00
|
|
|
const int segment_id = xd->mi[0]->segment_id;
|
2014-02-03 14:57:28 -08:00
|
|
|
const int qindex = vp9_get_qindex(&cm->seg, segment_id, cm->base_qindex);
|
|
|
|
const int rdmult = vp9_compute_rd_mult(cpi, qindex + cm->y_dc_delta_q);
|
|
|
|
int i;
|
2013-10-07 19:20:10 +01:00
|
|
|
|
2012-07-13 15:21:29 -07:00
|
|
|
// Y
|
2014-03-28 16:46:41 -07:00
|
|
|
x->plane[0].quant = quants->y_quant[qindex];
|
2014-05-29 18:14:17 -07:00
|
|
|
x->plane[0].quant_fp = quants->y_quant_fp[qindex];
|
2014-07-01 16:10:44 -07:00
|
|
|
x->plane[0].round_fp = quants->y_round_fp[qindex];
|
2014-03-28 16:46:41 -07:00
|
|
|
x->plane[0].quant_shift = quants->y_quant_shift[qindex];
|
|
|
|
x->plane[0].zbin = quants->y_zbin[qindex];
|
|
|
|
x->plane[0].round = quants->y_round[qindex];
|
2015-02-20 10:58:12 -08:00
|
|
|
xd->plane[0].dequant = cpi->y_dequant[qindex];
|
2012-07-13 15:21:29 -07:00
|
|
|
|
2014-12-22 09:35:29 -08:00
|
|
|
x->plane[0].quant_thred[0] = x->plane[0].zbin[0] * x->plane[0].zbin[0];
|
|
|
|
x->plane[0].quant_thred[1] = x->plane[0].zbin[1] * x->plane[0].zbin[1];
|
2014-10-01 11:31:34 -07:00
|
|
|
|
2012-07-13 15:21:29 -07:00
|
|
|
// UV
|
2013-04-23 15:22:18 -07:00
|
|
|
for (i = 1; i < 3; i++) {
|
2014-03-28 16:46:41 -07:00
|
|
|
x->plane[i].quant = quants->uv_quant[qindex];
|
2014-05-29 18:14:17 -07:00
|
|
|
x->plane[i].quant_fp = quants->uv_quant_fp[qindex];
|
2014-07-01 16:10:44 -07:00
|
|
|
x->plane[i].round_fp = quants->uv_round_fp[qindex];
|
2014-03-28 16:46:41 -07:00
|
|
|
x->plane[i].quant_shift = quants->uv_quant_shift[qindex];
|
|
|
|
x->plane[i].zbin = quants->uv_zbin[qindex];
|
|
|
|
x->plane[i].round = quants->uv_round[qindex];
|
2015-02-20 10:58:12 -08:00
|
|
|
xd->plane[i].dequant = cpi->uv_dequant[qindex];
|
2014-10-01 11:31:34 -07:00
|
|
|
|
2014-12-22 09:35:29 -08:00
|
|
|
x->plane[i].quant_thred[0] = x->plane[i].zbin[0] * x->plane[i].zbin[0];
|
|
|
|
x->plane[i].quant_thred[1] = x->plane[i].zbin[1] * x->plane[i].zbin[1];
|
2013-04-23 15:22:18 -07:00
|
|
|
}
|
2012-07-13 15:21:29 -07:00
|
|
|
|
2015-06-11 04:20:55 -07:00
|
|
|
x->skip_block = segfeature_active(&cm->seg, segment_id, SEG_LVL_SKIP);
|
2013-11-12 17:28:27 -08:00
|
|
|
x->q_index = qindex;
|
2013-10-07 19:20:10 +01:00
|
|
|
|
2016-02-01 10:02:54 -08:00
|
|
|
set_error_per_bit(x, rdmult);
|
2013-10-07 19:20:10 +01:00
|
|
|
|
2015-03-06 15:17:59 -08:00
|
|
|
vp9_initialize_me_consts(cpi, x, x->q_index);
|
2011-05-19 11:04:03 -04:00
|
|
|
}
|
|
|
|
|
2012-10-30 17:53:32 -07:00
|
|
|
void vp9_frame_init_quantizer(VP9_COMP *cpi) {
|
2014-11-21 11:11:06 -08:00
|
|
|
vp9_init_plane_quantizers(cpi, &cpi->td.mb);
|
2011-05-19 11:04:03 -04:00
|
|
|
}
|
|
|
|
|
2014-03-28 16:46:41 -07:00
|
|
|
void vp9_set_quantizer(VP9_COMMON *cm, int q) {
|
2014-02-28 10:11:31 -08:00
|
|
|
// quantizer has to be reinitialized with vp9_init_quantizer() if any
|
|
|
|
// delta_q changes.
|
2013-09-24 15:13:09 -07:00
|
|
|
cm->base_qindex = q;
|
2013-04-16 15:05:52 -07:00
|
|
|
cm->y_dc_delta_q = 0;
|
|
|
|
cm->uv_dc_delta_q = 0;
|
|
|
|
cm->uv_ac_delta_q = 0;
|
2011-05-19 11:04:03 -04:00
|
|
|
}
|
2014-04-09 13:35:39 -07:00
|
|
|
|
|
|
|
// Table that converts 0-63 Q-range values passed in outside to the Qindex
|
|
|
|
// range used internally.
|
|
|
|
static const int quantizer_to_qindex[] = {
|
2016-07-26 20:43:23 -07:00
|
|
|
0, 4, 8, 12, 16, 20, 24, 28, 32, 36, 40, 44, 48,
|
|
|
|
52, 56, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100,
|
|
|
|
104, 108, 112, 116, 120, 124, 128, 132, 136, 140, 144, 148, 152,
|
|
|
|
156, 160, 164, 168, 172, 176, 180, 184, 188, 192, 196, 200, 204,
|
|
|
|
208, 212, 216, 220, 224, 228, 232, 236, 240, 244, 249, 255,
|
2014-04-09 13:35:39 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
int vp9_quantizer_to_qindex(int quantizer) {
|
|
|
|
return quantizer_to_qindex[quantizer];
|
|
|
|
}
|
|
|
|
|
|
|
|
int vp9_qindex_to_quantizer(int qindex) {
|
|
|
|
int quantizer;
|
|
|
|
|
|
|
|
for (quantizer = 0; quantizer < 64; ++quantizer)
|
2016-07-26 20:43:23 -07:00
|
|
|
if (quantizer_to_qindex[quantizer] >= qindex) return quantizer;
|
2014-04-09 13:35:39 -07:00
|
|
|
|
|
|
|
return 63;
|
|
|
|
}
|