2010-05-18 17:58:33 +02:00
|
|
|
/*
|
2010-09-09 14:16:39 +02:00
|
|
|
* Copyright (c) 2010 The WebM project authors. All Rights Reserved.
|
2010-05-18 17:58:33 +02:00
|
|
|
*
|
2010-06-18 18:39:21 +02:00
|
|
|
* Use of this source code is governed by a BSD-style license
|
2010-06-04 22:19:40 +02: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 18:39:21 +02:00
|
|
|
* in the file PATENTS. All contributing project authors may
|
2010-06-04 22:19:40 +02:00
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
2010-05-18 17:58:33 +02:00
|
|
|
*/
|
|
|
|
|
2013-10-02 23:13:33 +02:00
|
|
|
|
|
|
|
#include "./vp9_rtcd.h"
|
2012-12-23 16:20:10 +01:00
|
|
|
#include "./vpx_config.h"
|
2013-10-02 23:13:33 +02:00
|
|
|
|
|
|
|
#include "vpx_mem/vpx_mem.h"
|
|
|
|
|
|
|
|
#include "vp9/common/vp9_idct.h"
|
2012-11-27 22:59:17 +01:00
|
|
|
#include "vp9/common/vp9_reconinter.h"
|
|
|
|
#include "vp9/common/vp9_reconintra.h"
|
|
|
|
#include "vp9/common/vp9_systemdependent.h"
|
2013-10-02 23:13:33 +02:00
|
|
|
|
|
|
|
#include "vp9/encoder/vp9_encodemb.h"
|
|
|
|
#include "vp9/encoder/vp9_quantize.h"
|
|
|
|
#include "vp9/encoder/vp9_rdopt.h"
|
|
|
|
#include "vp9/encoder/vp9_tokenize.h"
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2013-06-21 18:35:37 +02:00
|
|
|
void vp9_subtract_block_c(int rows, int cols,
|
|
|
|
int16_t *diff_ptr, ptrdiff_t diff_stride,
|
|
|
|
const uint8_t *src_ptr, ptrdiff_t src_stride,
|
|
|
|
const uint8_t *pred_ptr, ptrdiff_t pred_stride) {
|
2012-07-14 00:21:29 +02:00
|
|
|
int r, c;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2013-04-23 17:26:10 +02:00
|
|
|
for (r = 0; r < rows; r++) {
|
|
|
|
for (c = 0; c < cols; c++)
|
2012-07-14 00:21:29 +02:00
|
|
|
diff_ptr[c] = src_ptr[c] - pred_ptr[c];
|
|
|
|
|
2013-04-23 17:26:10 +02:00
|
|
|
diff_ptr += diff_stride;
|
|
|
|
pred_ptr += pred_stride;
|
2012-07-14 00:21:29 +02:00
|
|
|
src_ptr += src_stride;
|
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2013-08-27 20:05:08 +02:00
|
|
|
static void subtract_plane(MACROBLOCK *x, BLOCK_SIZE bsize, int plane) {
|
2013-05-31 21:30:32 +02:00
|
|
|
struct macroblock_plane *const p = &x->plane[plane];
|
|
|
|
const MACROBLOCKD *const xd = &x->e_mbd;
|
|
|
|
const struct macroblockd_plane *const pd = &xd->plane[plane];
|
|
|
|
const int bw = plane_block_width(bsize, pd);
|
|
|
|
const int bh = plane_block_height(bsize, pd);
|
|
|
|
|
|
|
|
vp9_subtract_block(bh, bw, p->src_diff, bw,
|
|
|
|
p->src.buf, p->src.stride,
|
|
|
|
pd->dst.buf, pd->dst.stride);
|
2011-08-05 01:30:27 +02:00
|
|
|
}
|
|
|
|
|
2013-08-27 20:05:08 +02:00
|
|
|
void vp9_subtract_sby(MACROBLOCK *x, BLOCK_SIZE bsize) {
|
2013-04-23 17:26:10 +02:00
|
|
|
subtract_plane(x, bsize, 0);
|
32x32 transform for superblocks.
This adds Debargha's DCT/DWT hybrid and a regular 32x32 DCT, and adds
code all over the place to wrap that in the bitstream/encoder/decoder/RD.
Some implementation notes (these probably need careful review):
- token range is extended by 1 bit, since the value range out of this
transform is [-16384,16383].
- the coefficients coming out of the FDCT are manually scaled back by
1 bit, or else they won't fit in int16_t (they are 17 bits). Because
of this, the RD error scoring does not right-shift the MSE score by
two (unlike for 4x4/8x8/16x16).
- to compensate for this loss in precision, the quantizer is halved
also. This is currently a little hacky.
- FDCT and IDCT is double-only right now. Needs a fixed-point impl.
- There are no default probabilities for the 32x32 transform yet; I'm
simply using the 16x16 luma ones. A future commit will add newly
generated probabilities for all transforms.
- No ADST version. I don't think we'll add one for this level; if an
ADST is desired, transform-size selection can scale back to 16x16
or lower, and use an ADST at that level.
Additional notes specific to Debargha's DWT/DCT hybrid:
- coefficient scale is different for the top/left 16x16 (DCT-over-DWT)
block than for the rest (DWT pixel differences) of the block. Therefore,
RD error scoring isn't easily scalable between coefficient and pixel
domain. Thus, unfortunately, we need to compute the RD distortion in
the pixel domain until we figure out how to scale these appropriately.
Change-Id: I00386f20f35d7fabb19aba94c8162f8aee64ef2b
2012-12-07 23:45:05 +01:00
|
|
|
}
|
|
|
|
|
2013-08-27 20:05:08 +02:00
|
|
|
void vp9_subtract_sbuv(MACROBLOCK *x, BLOCK_SIZE bsize) {
|
2013-04-23 17:26:10 +02:00
|
|
|
int i;
|
32x32 transform for superblocks.
This adds Debargha's DCT/DWT hybrid and a regular 32x32 DCT, and adds
code all over the place to wrap that in the bitstream/encoder/decoder/RD.
Some implementation notes (these probably need careful review):
- token range is extended by 1 bit, since the value range out of this
transform is [-16384,16383].
- the coefficients coming out of the FDCT are manually scaled back by
1 bit, or else they won't fit in int16_t (they are 17 bits). Because
of this, the RD error scoring does not right-shift the MSE score by
two (unlike for 4x4/8x8/16x16).
- to compensate for this loss in precision, the quantizer is halved
also. This is currently a little hacky.
- FDCT and IDCT is double-only right now. Needs a fixed-point impl.
- There are no default probabilities for the 32x32 transform yet; I'm
simply using the 16x16 luma ones. A future commit will add newly
generated probabilities for all transforms.
- No ADST version. I don't think we'll add one for this level; if an
ADST is desired, transform-size selection can scale back to 16x16
or lower, and use an ADST at that level.
Additional notes specific to Debargha's DWT/DCT hybrid:
- coefficient scale is different for the top/left 16x16 (DCT-over-DWT)
block than for the rest (DWT pixel differences) of the block. Therefore,
RD error scoring isn't easily scalable between coefficient and pixel
domain. Thus, unfortunately, we need to compute the RD distortion in
the pixel domain until we figure out how to scale these appropriately.
Change-Id: I00386f20f35d7fabb19aba94c8162f8aee64ef2b
2012-12-07 23:45:05 +01:00
|
|
|
|
2013-04-23 17:26:10 +02:00
|
|
|
for (i = 1; i < MAX_MB_PLANE; i++)
|
|
|
|
subtract_plane(x, bsize, i);
|
2013-03-04 23:12:17 +01:00
|
|
|
}
|
|
|
|
|
2013-08-27 20:05:08 +02:00
|
|
|
void vp9_subtract_sb(MACROBLOCK *x, BLOCK_SIZE bsize) {
|
2013-04-23 17:26:10 +02:00
|
|
|
vp9_subtract_sby(x, bsize);
|
|
|
|
vp9_subtract_sbuv(x, bsize);
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2013-10-06 02:24:51 +02:00
|
|
|
#define RDTRUNC(RM, DM, R, D) ((128 + (R) * (RM)) & 0xFF)
|
2012-10-31 22:40:53 +01:00
|
|
|
typedef struct vp9_token_state vp9_token_state;
|
Add trellis quantization.
Replace the exponential search for optimal rounding during
quantization with a linear Viterbi trellis and enable it
by default when using --best.
Right now this operates on top of the output of the adaptive
zero-bin quantizer in vp8_regular_quantize_b() and gives a small
gain.
It can be tested as a replacement for that quantizer by
enabling the call to vp8_strict_quantize_b(), which uses
normal rounding and no zero bin offset.
Ultimately, the quantizer will have to become a function of lambda
in order to take advantage of activity masking, since there is
limited ability to change the quantization factor itself.
However, currently vp8_strict_quantize_b() plus the trellis
quantizer (which is lambda-dependent) loses to
vp8_regular_quantize_b() alone (which is not) on my test clip.
Patch Set 3:
Fix an issue related to the cost evaluation of successor
states when a coefficient is reduced to zero. With this
issue fixed, now the trellis search almost exactly matches
the exponential search.
Patch Set 2:
Overall, the goal of this patch set is to make "trellis"
search to produce encodings that match the exponential
search version. There are three main differences between
Patch Set 2 and 1:
a. Patch set 1 did not properly account for the scale of
2nd order error, so patch set 2 disable it all together
for 2nd blocks.
b. Patch set 1 was not consistent on when to enable the
the quantization optimization. Patch set 2 restore the
condition to be consistent.
c. Patch set 1 checks quantized level L-1, and L for any
input coefficient was quantized to L. Patch set 2 limits
the candidate coefficient to those that were rounded up
to L. It is worth noting here that a strategy to check
L and L+1 for coefficients that were truncated down to L
might work.
(a and b get trellis quant to basically match the exponential
search on all mid/low rate encodings on cif set, without
a, b, trellis quant can hurt the psnr by 0.2 to .3db at
200kbps for some cif clips)
(c gets trellis quant to match the exponential search
to match at Q0 encoding, without c, trellis quant can be
1.5 to 2db lower for encodings with fixed Q at 0 on most
derf cif clips)
Change-Id: Ib1a043b665d75fbf00cb0257b7c18e90eebab95e
2010-07-02 23:35:53 +02:00
|
|
|
|
2012-10-31 22:40:53 +01:00
|
|
|
struct vp9_token_state {
|
Add trellis quantization.
Replace the exponential search for optimal rounding during
quantization with a linear Viterbi trellis and enable it
by default when using --best.
Right now this operates on top of the output of the adaptive
zero-bin quantizer in vp8_regular_quantize_b() and gives a small
gain.
It can be tested as a replacement for that quantizer by
enabling the call to vp8_strict_quantize_b(), which uses
normal rounding and no zero bin offset.
Ultimately, the quantizer will have to become a function of lambda
in order to take advantage of activity masking, since there is
limited ability to change the quantization factor itself.
However, currently vp8_strict_quantize_b() plus the trellis
quantizer (which is lambda-dependent) loses to
vp8_regular_quantize_b() alone (which is not) on my test clip.
Patch Set 3:
Fix an issue related to the cost evaluation of successor
states when a coefficient is reduced to zero. With this
issue fixed, now the trellis search almost exactly matches
the exponential search.
Patch Set 2:
Overall, the goal of this patch set is to make "trellis"
search to produce encodings that match the exponential
search version. There are three main differences between
Patch Set 2 and 1:
a. Patch set 1 did not properly account for the scale of
2nd order error, so patch set 2 disable it all together
for 2nd blocks.
b. Patch set 1 was not consistent on when to enable the
the quantization optimization. Patch set 2 restore the
condition to be consistent.
c. Patch set 1 checks quantized level L-1, and L for any
input coefficient was quantized to L. Patch set 2 limits
the candidate coefficient to those that were rounded up
to L. It is worth noting here that a strategy to check
L and L+1 for coefficients that were truncated down to L
might work.
(a and b get trellis quant to basically match the exponential
search on all mid/low rate encodings on cif set, without
a, b, trellis quant can hurt the psnr by 0.2 to .3db at
200kbps for some cif clips)
(c gets trellis quant to match the exponential search
to match at Q0 encoding, without c, trellis quant can be
1.5 to 2db lower for encodings with fixed Q at 0 on most
derf cif clips)
Change-Id: Ib1a043b665d75fbf00cb0257b7c18e90eebab95e
2010-07-02 23:35:53 +02:00
|
|
|
int rate;
|
|
|
|
int error;
|
2012-08-03 02:03:14 +02:00
|
|
|
int next;
|
Add trellis quantization.
Replace the exponential search for optimal rounding during
quantization with a linear Viterbi trellis and enable it
by default when using --best.
Right now this operates on top of the output of the adaptive
zero-bin quantizer in vp8_regular_quantize_b() and gives a small
gain.
It can be tested as a replacement for that quantizer by
enabling the call to vp8_strict_quantize_b(), which uses
normal rounding and no zero bin offset.
Ultimately, the quantizer will have to become a function of lambda
in order to take advantage of activity masking, since there is
limited ability to change the quantization factor itself.
However, currently vp8_strict_quantize_b() plus the trellis
quantizer (which is lambda-dependent) loses to
vp8_regular_quantize_b() alone (which is not) on my test clip.
Patch Set 3:
Fix an issue related to the cost evaluation of successor
states when a coefficient is reduced to zero. With this
issue fixed, now the trellis search almost exactly matches
the exponential search.
Patch Set 2:
Overall, the goal of this patch set is to make "trellis"
search to produce encodings that match the exponential
search version. There are three main differences between
Patch Set 2 and 1:
a. Patch set 1 did not properly account for the scale of
2nd order error, so patch set 2 disable it all together
for 2nd blocks.
b. Patch set 1 was not consistent on when to enable the
the quantization optimization. Patch set 2 restore the
condition to be consistent.
c. Patch set 1 checks quantized level L-1, and L for any
input coefficient was quantized to L. Patch set 2 limits
the candidate coefficient to those that were rounded up
to L. It is worth noting here that a strategy to check
L and L+1 for coefficients that were truncated down to L
might work.
(a and b get trellis quant to basically match the exponential
search on all mid/low rate encodings on cif set, without
a, b, trellis quant can hurt the psnr by 0.2 to .3db at
200kbps for some cif clips)
(c gets trellis quant to match the exponential search
to match at Q0 encoding, without c, trellis quant can be
1.5 to 2db lower for encodings with fixed Q at 0 on most
derf cif clips)
Change-Id: Ib1a043b665d75fbf00cb0257b7c18e90eebab95e
2010-07-02 23:35:53 +02:00
|
|
|
signed char token;
|
|
|
|
short qc;
|
|
|
|
};
|
|
|
|
|
2013-10-06 02:24:51 +02:00
|
|
|
// TODO(jimbankoski): experiment to find optimal RD numbers.
|
2010-12-06 22:33:01 +01:00
|
|
|
#define Y1_RD_MULT 4
|
|
|
|
#define UV_RD_MULT 2
|
2010-10-01 05:41:37 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
static const int plane_rd_mult[4] = {
|
|
|
|
Y1_RD_MULT,
|
|
|
|
UV_RD_MULT,
|
2010-10-01 05:41:37 +02:00
|
|
|
};
|
|
|
|
|
2012-08-11 00:34:31 +02:00
|
|
|
#define UPDATE_RD_COST()\
|
|
|
|
{\
|
|
|
|
rd_cost0 = RDCOST(rdmult, rddiv, rate0, error0);\
|
|
|
|
rd_cost1 = RDCOST(rdmult, rddiv, rate1, error1);\
|
|
|
|
if (rd_cost0 == rd_cost1) {\
|
|
|
|
rd_cost0 = RDTRUNC(rdmult, rddiv, rate0, error0);\
|
|
|
|
rd_cost1 = RDTRUNC(rdmult, rddiv, rate1, error1);\
|
|
|
|
}\
|
|
|
|
}
|
|
|
|
|
2013-02-11 20:19:21 +01:00
|
|
|
// This function is a place holder for now but may ultimately need
|
|
|
|
// to scan previous tokens to work out the correct context.
|
2013-07-01 20:36:07 +02:00
|
|
|
static int trellis_get_coeff_context(const int16_t *scan,
|
|
|
|
const int16_t *nb,
|
2013-03-27 00:46:09 +01:00
|
|
|
int idx, int token,
|
2013-07-01 19:40:00 +02:00
|
|
|
uint8_t *token_cache) {
|
2013-03-28 18:42:23 +01:00
|
|
|
int bak = token_cache[scan[idx]], pt;
|
2013-05-23 12:08:00 +02:00
|
|
|
token_cache[scan[idx]] = vp9_pt_energy_class[token];
|
2013-07-01 19:40:00 +02:00
|
|
|
pt = get_coef_context(nb, token_cache, idx + 1);
|
2013-03-28 18:42:23 +01:00
|
|
|
token_cache[scan[idx]] = bak;
|
2013-03-27 00:46:09 +01:00
|
|
|
return pt;
|
2013-02-11 20:19:21 +01:00
|
|
|
}
|
|
|
|
|
2013-08-01 01:59:15 +02:00
|
|
|
static void optimize_b(MACROBLOCK *mb,
|
2013-08-27 20:05:08 +02:00
|
|
|
int plane, int block, BLOCK_SIZE plane_bsize,
|
2012-10-30 05:02:36 +01:00
|
|
|
ENTROPY_CONTEXT *a, ENTROPY_CONTEXT *l,
|
2013-04-30 18:54:51 +02:00
|
|
|
TX_SIZE tx_size) {
|
2013-02-27 19:00:24 +01:00
|
|
|
MACROBLOCKD *const xd = &mb->e_mbd;
|
2013-08-19 22:20:21 +02:00
|
|
|
struct macroblockd_plane *pd = &xd->plane[plane];
|
2013-09-11 19:45:44 +02:00
|
|
|
const int ref = is_inter_block(&xd->this_mi->mbmi);
|
2013-03-04 23:12:17 +01:00
|
|
|
vp9_token_state tokens[1025][2];
|
|
|
|
unsigned best_index[1025][2];
|
2013-08-10 01:40:05 +02:00
|
|
|
const int16_t *coeff_ptr = BLOCK_OFFSET(mb->plane[plane].coeff, block);
|
2013-04-02 23:50:40 +02:00
|
|
|
int16_t *qcoeff_ptr;
|
|
|
|
int16_t *dqcoeff_ptr;
|
2013-08-19 22:20:21 +02:00
|
|
|
int eob = pd->eobs[block], final_eob, sz = 0;
|
2013-02-15 19:15:42 +01:00
|
|
|
const int i0 = 0;
|
2013-03-04 23:12:17 +01:00
|
|
|
int rc, x, next, i;
|
2012-12-03 23:53:45 +01:00
|
|
|
int64_t rdmult, rddiv, rd_cost0, rd_cost1;
|
|
|
|
int rate0, rate1, error0, error1, t0, t1;
|
|
|
|
int best, band, pt;
|
2013-08-19 22:20:21 +02:00
|
|
|
PLANE_TYPE type = pd->plane_type;
|
2012-07-14 00:21:29 +02:00
|
|
|
int err_mult = plane_rd_mult[type];
|
2013-09-19 14:53:48 +02:00
|
|
|
const int default_eob = 16 << (tx_size << 1);
|
2013-07-01 20:36:07 +02:00
|
|
|
const int16_t *scan, *nb;
|
2013-03-04 23:12:17 +01:00
|
|
|
const int mul = 1 + (tx_size == TX_32X32);
|
2013-03-27 00:46:09 +01:00
|
|
|
uint8_t token_cache[1024];
|
2013-08-19 22:20:21 +02:00
|
|
|
const int ib = txfrm_block_to_raster_block(plane_bsize, tx_size, block);
|
|
|
|
const int16_t *dequant_ptr = pd->dequant;
|
2013-05-09 19:47:58 +02:00
|
|
|
const uint8_t * band_translate;
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2013-04-30 18:54:51 +02:00
|
|
|
assert((!type && !plane) || (type && plane));
|
2013-08-19 22:20:21 +02:00
|
|
|
dqcoeff_ptr = BLOCK_OFFSET(pd->dqcoeff, block);
|
|
|
|
qcoeff_ptr = BLOCK_OFFSET(pd->qcoeff, block);
|
2013-09-27 23:11:13 +02:00
|
|
|
get_scan_and_band(xd, tx_size, type, ib, &scan, &nb, &band_translate);
|
2013-04-04 21:03:27 +02:00
|
|
|
assert(eob <= default_eob);
|
2012-07-14 00:21:29 +02:00
|
|
|
|
|
|
|
/* Now set up a Viterbi trellis to evaluate alternative roundings. */
|
|
|
|
rdmult = mb->rdmult * err_mult;
|
2013-09-11 19:45:44 +02:00
|
|
|
if (mb->e_mbd.mi_8x8[0]->mbmi.ref_frame[0] == INTRA_FRAME)
|
2012-07-14 00:21:29 +02:00
|
|
|
rdmult = (rdmult * 9) >> 4;
|
|
|
|
rddiv = mb->rddiv;
|
|
|
|
/* Initialize the sentinel node of the trellis. */
|
|
|
|
tokens[eob][0].rate = 0;
|
|
|
|
tokens[eob][0].error = 0;
|
2012-08-11 00:34:31 +02:00
|
|
|
tokens[eob][0].next = default_eob;
|
2012-07-14 00:21:29 +02:00
|
|
|
tokens[eob][0].token = DCT_EOB_TOKEN;
|
|
|
|
tokens[eob][0].qc = 0;
|
|
|
|
*(tokens[eob] + 1) = *(tokens[eob] + 0);
|
|
|
|
next = eob;
|
2013-03-27 00:46:09 +01:00
|
|
|
for (i = 0; i < eob; i++)
|
2013-05-23 12:08:00 +02:00
|
|
|
token_cache[scan[i]] = vp9_pt_energy_class[vp9_dct_value_tokens_ptr[
|
|
|
|
qcoeff_ptr[scan[i]]].token];
|
2013-03-27 00:46:09 +01:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
for (i = eob; i-- > i0;) {
|
2012-12-03 23:53:45 +01:00
|
|
|
int base_bits, d2, dx;
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2012-08-11 00:34:31 +02:00
|
|
|
rc = scan[i];
|
2012-07-14 00:21:29 +02:00
|
|
|
x = qcoeff_ptr[rc];
|
|
|
|
/* Only add a trellis state for non-zero coefficients. */
|
|
|
|
if (x) {
|
|
|
|
int shortcut = 0;
|
|
|
|
error0 = tokens[next][0].error;
|
|
|
|
error1 = tokens[next][1].error;
|
|
|
|
/* Evaluate the first possibility for this state. */
|
|
|
|
rate0 = tokens[next][0].rate;
|
|
|
|
rate1 = tokens[next][1].rate;
|
2013-04-19 01:18:08 +02:00
|
|
|
t0 = (vp9_dct_value_tokens_ptr + x)->token;
|
2012-07-14 00:21:29 +02:00
|
|
|
/* Consider both possible successor states. */
|
2012-08-11 00:34:31 +02:00
|
|
|
if (next < default_eob) {
|
2013-05-09 19:47:58 +02:00
|
|
|
band = get_coef_band(band_translate, i + 1);
|
2013-07-01 19:40:00 +02:00
|
|
|
pt = trellis_get_coeff_context(scan, nb, i, t0, token_cache);
|
2012-07-14 00:21:29 +02:00
|
|
|
rate0 +=
|
2013-07-25 00:13:58 +02:00
|
|
|
mb->token_costs[tx_size][type][ref][band][0][pt]
|
2013-06-28 05:57:37 +02:00
|
|
|
[tokens[next][0].token];
|
2012-07-14 00:21:29 +02:00
|
|
|
rate1 +=
|
2013-07-25 00:13:58 +02:00
|
|
|
mb->token_costs[tx_size][type][ref][band][0][pt]
|
2013-06-28 05:57:37 +02:00
|
|
|
[tokens[next][1].token];
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
2012-08-11 00:34:31 +02:00
|
|
|
UPDATE_RD_COST();
|
2012-07-14 00:21:29 +02:00
|
|
|
/* And pick the best. */
|
|
|
|
best = rd_cost1 < rd_cost0;
|
2012-10-31 01:12:12 +01:00
|
|
|
base_bits = *(vp9_dct_value_cost_ptr + x);
|
2013-03-04 23:12:17 +01:00
|
|
|
dx = mul * (dqcoeff_ptr[rc] - coeff_ptr[rc]);
|
2012-07-14 00:21:29 +02:00
|
|
|
d2 = dx * dx;
|
|
|
|
tokens[i][0].rate = base_bits + (best ? rate1 : rate0);
|
|
|
|
tokens[i][0].error = d2 + (best ? error1 : error0);
|
|
|
|
tokens[i][0].next = next;
|
|
|
|
tokens[i][0].token = t0;
|
|
|
|
tokens[i][0].qc = x;
|
2012-12-03 23:53:45 +01:00
|
|
|
best_index[i][0] = best;
|
2013-02-20 19:16:24 +01:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
/* Evaluate the second possibility for this state. */
|
|
|
|
rate0 = tokens[next][0].rate;
|
|
|
|
rate1 = tokens[next][1].rate;
|
|
|
|
|
2013-03-04 23:12:17 +01:00
|
|
|
if ((abs(x)*dequant_ptr[rc != 0] > abs(coeff_ptr[rc]) * mul) &&
|
|
|
|
(abs(x)*dequant_ptr[rc != 0] < abs(coeff_ptr[rc]) * mul +
|
|
|
|
dequant_ptr[rc != 0]))
|
2012-07-14 00:21:29 +02:00
|
|
|
shortcut = 1;
|
|
|
|
else
|
|
|
|
shortcut = 0;
|
|
|
|
|
|
|
|
if (shortcut) {
|
|
|
|
sz = -(x < 0);
|
|
|
|
x -= 2 * sz + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Consider both possible successor states. */
|
|
|
|
if (!x) {
|
|
|
|
/* If we reduced this coefficient to zero, check to see if
|
|
|
|
* we need to move the EOB back here.
|
Add trellis quantization.
Replace the exponential search for optimal rounding during
quantization with a linear Viterbi trellis and enable it
by default when using --best.
Right now this operates on top of the output of the adaptive
zero-bin quantizer in vp8_regular_quantize_b() and gives a small
gain.
It can be tested as a replacement for that quantizer by
enabling the call to vp8_strict_quantize_b(), which uses
normal rounding and no zero bin offset.
Ultimately, the quantizer will have to become a function of lambda
in order to take advantage of activity masking, since there is
limited ability to change the quantization factor itself.
However, currently vp8_strict_quantize_b() plus the trellis
quantizer (which is lambda-dependent) loses to
vp8_regular_quantize_b() alone (which is not) on my test clip.
Patch Set 3:
Fix an issue related to the cost evaluation of successor
states when a coefficient is reduced to zero. With this
issue fixed, now the trellis search almost exactly matches
the exponential search.
Patch Set 2:
Overall, the goal of this patch set is to make "trellis"
search to produce encodings that match the exponential
search version. There are three main differences between
Patch Set 2 and 1:
a. Patch set 1 did not properly account for the scale of
2nd order error, so patch set 2 disable it all together
for 2nd blocks.
b. Patch set 1 was not consistent on when to enable the
the quantization optimization. Patch set 2 restore the
condition to be consistent.
c. Patch set 1 checks quantized level L-1, and L for any
input coefficient was quantized to L. Patch set 2 limits
the candidate coefficient to those that were rounded up
to L. It is worth noting here that a strategy to check
L and L+1 for coefficients that were truncated down to L
might work.
(a and b get trellis quant to basically match the exponential
search on all mid/low rate encodings on cif set, without
a, b, trellis quant can hurt the psnr by 0.2 to .3db at
200kbps for some cif clips)
(c gets trellis quant to match the exponential search
to match at Q0 encoding, without c, trellis quant can be
1.5 to 2db lower for encodings with fixed Q at 0 on most
derf cif clips)
Change-Id: Ib1a043b665d75fbf00cb0257b7c18e90eebab95e
2010-07-02 23:35:53 +02:00
|
|
|
*/
|
2012-07-14 00:21:29 +02:00
|
|
|
t0 = tokens[next][0].token == DCT_EOB_TOKEN ?
|
|
|
|
DCT_EOB_TOKEN : ZERO_TOKEN;
|
|
|
|
t1 = tokens[next][1].token == DCT_EOB_TOKEN ?
|
|
|
|
DCT_EOB_TOKEN : ZERO_TOKEN;
|
|
|
|
} else {
|
2013-04-19 01:18:08 +02:00
|
|
|
t0 = t1 = (vp9_dct_value_tokens_ptr + x)->token;
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
2012-08-11 00:34:31 +02:00
|
|
|
if (next < default_eob) {
|
2013-05-09 19:47:58 +02:00
|
|
|
band = get_coef_band(band_translate, i + 1);
|
2012-07-14 00:21:29 +02:00
|
|
|
if (t0 != DCT_EOB_TOKEN) {
|
2013-07-01 19:40:00 +02:00
|
|
|
pt = trellis_get_coeff_context(scan, nb, i, t0, token_cache);
|
2013-07-25 00:13:58 +02:00
|
|
|
rate0 += mb->token_costs[tx_size][type][ref][band][!x][pt]
|
2013-06-28 05:57:37 +02:00
|
|
|
[tokens[next][0].token];
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
2012-07-14 00:21:29 +02:00
|
|
|
if (t1 != DCT_EOB_TOKEN) {
|
2013-07-01 19:40:00 +02:00
|
|
|
pt = trellis_get_coeff_context(scan, nb, i, t1, token_cache);
|
2013-07-25 00:13:58 +02:00
|
|
|
rate1 += mb->token_costs[tx_size][type][ref][band][!x][pt]
|
2013-06-28 05:57:37 +02:00
|
|
|
[tokens[next][1].token];
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-08-11 00:34:31 +02:00
|
|
|
UPDATE_RD_COST();
|
2012-07-14 00:21:29 +02:00
|
|
|
/* And pick the best. */
|
|
|
|
best = rd_cost1 < rd_cost0;
|
2012-10-31 01:12:12 +01:00
|
|
|
base_bits = *(vp9_dct_value_cost_ptr + x);
|
2012-07-14 00:21:29 +02:00
|
|
|
|
|
|
|
if (shortcut) {
|
2012-08-11 00:34:31 +02:00
|
|
|
dx -= (dequant_ptr[rc != 0] + sz) ^ sz;
|
2012-07-14 00:21:29 +02:00
|
|
|
d2 = dx * dx;
|
|
|
|
}
|
|
|
|
tokens[i][1].rate = base_bits + (best ? rate1 : rate0);
|
|
|
|
tokens[i][1].error = d2 + (best ? error1 : error0);
|
|
|
|
tokens[i][1].next = next;
|
|
|
|
tokens[i][1].token = best ? t1 : t0;
|
|
|
|
tokens[i][1].qc = x;
|
2012-12-03 23:53:45 +01:00
|
|
|
best_index[i][1] = best;
|
2012-07-14 00:21:29 +02:00
|
|
|
/* Finally, make this the new head of the trellis. */
|
|
|
|
next = i;
|
2013-10-06 02:24:51 +02:00
|
|
|
} else {
|
|
|
|
/* There's no choice to make for a zero coefficient, so we don't
|
|
|
|
* add a new trellis node, but we do need to update the costs.
|
|
|
|
*/
|
2013-05-09 19:47:58 +02:00
|
|
|
band = get_coef_band(band_translate, i + 1);
|
2012-07-14 00:21:29 +02:00
|
|
|
t0 = tokens[next][0].token;
|
|
|
|
t1 = tokens[next][1].token;
|
|
|
|
/* Update the cost of each path if we're past the EOB token. */
|
|
|
|
if (t0 != DCT_EOB_TOKEN) {
|
2013-02-19 22:36:38 +01:00
|
|
|
tokens[next][0].rate +=
|
2013-07-25 00:13:58 +02:00
|
|
|
mb->token_costs[tx_size][type][ref][band][1][0][t0];
|
2012-07-14 00:21:29 +02:00
|
|
|
tokens[next][0].token = ZERO_TOKEN;
|
|
|
|
}
|
|
|
|
if (t1 != DCT_EOB_TOKEN) {
|
2013-02-19 22:36:38 +01:00
|
|
|
tokens[next][1].rate +=
|
2013-07-25 00:13:58 +02:00
|
|
|
mb->token_costs[tx_size][type][ref][band][1][0][t1];
|
2012-07-14 00:21:29 +02:00
|
|
|
tokens[next][1].token = ZERO_TOKEN;
|
|
|
|
}
|
2013-07-03 19:09:15 +02:00
|
|
|
best_index[i][0] = best_index[i][1] = 0;
|
2012-07-14 00:21:29 +02:00
|
|
|
/* Don't update next, because we didn't add a new node. */
|
Add trellis quantization.
Replace the exponential search for optimal rounding during
quantization with a linear Viterbi trellis and enable it
by default when using --best.
Right now this operates on top of the output of the adaptive
zero-bin quantizer in vp8_regular_quantize_b() and gives a small
gain.
It can be tested as a replacement for that quantizer by
enabling the call to vp8_strict_quantize_b(), which uses
normal rounding and no zero bin offset.
Ultimately, the quantizer will have to become a function of lambda
in order to take advantage of activity masking, since there is
limited ability to change the quantization factor itself.
However, currently vp8_strict_quantize_b() plus the trellis
quantizer (which is lambda-dependent) loses to
vp8_regular_quantize_b() alone (which is not) on my test clip.
Patch Set 3:
Fix an issue related to the cost evaluation of successor
states when a coefficient is reduced to zero. With this
issue fixed, now the trellis search almost exactly matches
the exponential search.
Patch Set 2:
Overall, the goal of this patch set is to make "trellis"
search to produce encodings that match the exponential
search version. There are three main differences between
Patch Set 2 and 1:
a. Patch set 1 did not properly account for the scale of
2nd order error, so patch set 2 disable it all together
for 2nd blocks.
b. Patch set 1 was not consistent on when to enable the
the quantization optimization. Patch set 2 restore the
condition to be consistent.
c. Patch set 1 checks quantized level L-1, and L for any
input coefficient was quantized to L. Patch set 2 limits
the candidate coefficient to those that were rounded up
to L. It is worth noting here that a strategy to check
L and L+1 for coefficients that were truncated down to L
might work.
(a and b get trellis quant to basically match the exponential
search on all mid/low rate encodings on cif set, without
a, b, trellis quant can hurt the psnr by 0.2 to .3db at
200kbps for some cif clips)
(c gets trellis quant to match the exponential search
to match at Q0 encoding, without c, trellis quant can be
1.5 to 2db lower for encodings with fixed Q at 0 on most
derf cif clips)
Change-Id: Ib1a043b665d75fbf00cb0257b7c18e90eebab95e
2010-07-02 23:35:53 +02:00
|
|
|
}
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Now pick the best path through the whole trellis. */
|
2013-05-09 19:47:58 +02:00
|
|
|
band = get_coef_band(band_translate, i + 1);
|
2013-04-17 00:30:28 +02:00
|
|
|
pt = combine_entropy_contexts(*a, *l);
|
2012-07-14 00:21:29 +02:00
|
|
|
rate0 = tokens[next][0].rate;
|
|
|
|
rate1 = tokens[next][1].rate;
|
|
|
|
error0 = tokens[next][0].error;
|
|
|
|
error1 = tokens[next][1].error;
|
|
|
|
t0 = tokens[next][0].token;
|
|
|
|
t1 = tokens[next][1].token;
|
2013-07-25 00:13:58 +02:00
|
|
|
rate0 += mb->token_costs[tx_size][type][ref][band][0][pt][t0];
|
|
|
|
rate1 += mb->token_costs[tx_size][type][ref][band][0][pt][t1];
|
2012-08-11 00:34:31 +02:00
|
|
|
UPDATE_RD_COST();
|
2012-07-14 00:21:29 +02:00
|
|
|
best = rd_cost1 < rd_cost0;
|
|
|
|
final_eob = i0 - 1;
|
2013-03-28 18:42:23 +01:00
|
|
|
vpx_memset(qcoeff_ptr, 0, sizeof(*qcoeff_ptr) * (16 << (tx_size * 2)));
|
|
|
|
vpx_memset(dqcoeff_ptr, 0, sizeof(*dqcoeff_ptr) * (16 << (tx_size * 2)));
|
2012-07-14 00:21:29 +02:00
|
|
|
for (i = next; i < eob; i = next) {
|
|
|
|
x = tokens[i][best].qc;
|
2013-02-20 19:16:24 +01:00
|
|
|
if (x) {
|
2012-07-14 00:21:29 +02:00
|
|
|
final_eob = i;
|
2013-02-20 19:16:24 +01:00
|
|
|
}
|
2012-08-11 00:34:31 +02:00
|
|
|
rc = scan[i];
|
2012-07-14 00:21:29 +02:00
|
|
|
qcoeff_ptr[rc] = x;
|
2013-03-04 23:12:17 +01:00
|
|
|
dqcoeff_ptr[rc] = (x * dequant_ptr[rc != 0]) / mul;
|
2012-08-11 00:34:31 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
next = tokens[i][best].next;
|
2012-12-03 23:53:45 +01:00
|
|
|
best = best_index[i][best];
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
|
|
|
final_eob++;
|
|
|
|
|
2013-04-30 18:54:51 +02:00
|
|
|
xd->plane[plane].eobs[block] = final_eob;
|
2013-02-27 19:00:24 +01:00
|
|
|
*a = *l = (final_eob > 0);
|
2011-10-25 19:25:02 +02:00
|
|
|
}
|
|
|
|
|
2013-08-27 20:05:08 +02:00
|
|
|
void vp9_optimize_b(int plane, int block, BLOCK_SIZE plane_bsize,
|
2013-08-15 20:44:57 +02:00
|
|
|
TX_SIZE tx_size, MACROBLOCK *mb, struct optimize_ctx *ctx) {
|
2013-04-30 18:54:51 +02:00
|
|
|
int x, y;
|
2013-08-19 22:20:21 +02:00
|
|
|
txfrm_block_to_raster_xy(plane_bsize, tx_size, block, &x, &y);
|
2013-08-20 00:47:24 +02:00
|
|
|
optimize_b(mb, plane, block, plane_bsize,
|
|
|
|
&ctx->ta[plane][x], &ctx->tl[plane][y], tx_size);
|
2013-04-30 20:29:27 +02:00
|
|
|
}
|
|
|
|
|
2013-08-27 20:05:08 +02:00
|
|
|
static void optimize_init_b(int plane, BLOCK_SIZE bsize,
|
2013-08-22 01:40:16 +02:00
|
|
|
struct encode_b_args *args) {
|
2013-07-24 00:53:09 +02:00
|
|
|
const MACROBLOCKD *xd = &args->x->e_mbd;
|
|
|
|
const struct macroblockd_plane* const pd = &xd->plane[plane];
|
2013-08-27 20:05:08 +02:00
|
|
|
const BLOCK_SIZE plane_bsize = get_plane_block_size(bsize, pd);
|
2013-08-22 01:40:16 +02:00
|
|
|
const int num_4x4_w = num_4x4_blocks_wide_lookup[plane_bsize];
|
|
|
|
const int num_4x4_h = num_4x4_blocks_high_lookup[plane_bsize];
|
2013-09-11 19:45:44 +02:00
|
|
|
const MB_MODE_INFO *mbmi = &xd->this_mi->mbmi;
|
2013-08-28 04:47:53 +02:00
|
|
|
const TX_SIZE tx_size = plane ? get_uv_tx_size(mbmi) : mbmi->tx_size;
|
2013-07-24 00:53:09 +02:00
|
|
|
|
2013-09-25 02:26:05 +02:00
|
|
|
vp9_get_entropy_contexts(tx_size, args->ctx->ta[plane], args->ctx->tl[plane],
|
|
|
|
pd->above_context, pd->left_context,
|
|
|
|
num_4x4_w, num_4x4_h);
|
2013-03-04 23:12:17 +01:00
|
|
|
}
|
|
|
|
|
2013-08-27 20:05:08 +02:00
|
|
|
void vp9_xform_quant(int plane, int block, BLOCK_SIZE plane_bsize,
|
2013-08-16 02:03:03 +02:00
|
|
|
TX_SIZE tx_size, void *arg) {
|
2013-04-30 20:29:27 +02:00
|
|
|
struct encode_b_args* const args = arg;
|
|
|
|
MACROBLOCK* const x = args->x;
|
|
|
|
MACROBLOCKD* const xd = &x->e_mbd;
|
2013-07-11 22:01:44 +02:00
|
|
|
struct macroblock_plane *const p = &x->plane[plane];
|
|
|
|
struct macroblockd_plane *const pd = &xd->plane[plane];
|
2013-08-10 01:40:05 +02:00
|
|
|
int16_t *coeff = BLOCK_OFFSET(p->coeff, block);
|
|
|
|
int16_t *qcoeff = BLOCK_OFFSET(pd->qcoeff, block);
|
|
|
|
int16_t *dqcoeff = BLOCK_OFFSET(pd->dqcoeff, block);
|
2013-07-11 22:01:44 +02:00
|
|
|
const int16_t *scan, *iscan;
|
|
|
|
uint16_t *eob = &pd->eobs[block];
|
2013-08-19 22:20:21 +02:00
|
|
|
const int bwl = b_width_log2(plane_bsize), bw = 1 << bwl;
|
2013-07-11 22:01:44 +02:00
|
|
|
const int twl = bwl - tx_size, twmask = (1 << twl) - 1;
|
|
|
|
int xoff, yoff;
|
|
|
|
int16_t *src_diff;
|
|
|
|
|
|
|
|
switch (tx_size) {
|
2013-04-30 20:29:27 +02:00
|
|
|
case TX_32X32:
|
2013-07-11 22:01:44 +02:00
|
|
|
scan = vp9_default_scan_32x32;
|
|
|
|
iscan = vp9_default_iscan_32x32;
|
|
|
|
block >>= 6;
|
|
|
|
xoff = 32 * (block & twmask);
|
|
|
|
yoff = 32 * (block >> twl);
|
|
|
|
src_diff = p->src_diff + 4 * bw * yoff + xoff;
|
2013-08-08 00:22:51 +02:00
|
|
|
if (x->use_lp32x32fdct)
|
2013-07-11 22:01:44 +02:00
|
|
|
vp9_short_fdct32x32_rd(src_diff, coeff, bw * 8);
|
2013-06-14 20:28:56 +02:00
|
|
|
else
|
2013-07-11 22:01:44 +02:00
|
|
|
vp9_short_fdct32x32(src_diff, coeff, bw * 8);
|
|
|
|
vp9_quantize_b_32x32(coeff, 1024, x->skip_block, p->zbin, p->round,
|
|
|
|
p->quant, p->quant_shift, qcoeff, dqcoeff,
|
|
|
|
pd->dequant, p->zbin_extra, eob, scan, iscan);
|
2013-04-30 20:29:27 +02:00
|
|
|
break;
|
|
|
|
case TX_16X16:
|
2013-07-23 21:21:48 +02:00
|
|
|
scan = vp9_default_scan_16x16;
|
|
|
|
iscan = vp9_default_iscan_16x16;
|
2013-07-11 22:01:44 +02:00
|
|
|
block >>= 4;
|
|
|
|
xoff = 16 * (block & twmask);
|
|
|
|
yoff = 16 * (block >> twl);
|
|
|
|
src_diff = p->src_diff + 4 * bw * yoff + xoff;
|
2013-07-23 21:21:48 +02:00
|
|
|
x->fwd_txm16x16(src_diff, coeff, bw * 8);
|
2013-07-11 22:01:44 +02:00
|
|
|
vp9_quantize_b(coeff, 256, x->skip_block, p->zbin, p->round,
|
|
|
|
p->quant, p->quant_shift, qcoeff, dqcoeff,
|
|
|
|
pd->dequant, p->zbin_extra, eob, scan, iscan);
|
2013-04-30 20:29:27 +02:00
|
|
|
break;
|
|
|
|
case TX_8X8:
|
2013-07-23 21:21:48 +02:00
|
|
|
scan = vp9_default_scan_8x8;
|
|
|
|
iscan = vp9_default_iscan_8x8;
|
2013-07-11 22:01:44 +02:00
|
|
|
block >>= 2;
|
|
|
|
xoff = 8 * (block & twmask);
|
|
|
|
yoff = 8 * (block >> twl);
|
|
|
|
src_diff = p->src_diff + 4 * bw * yoff + xoff;
|
2013-07-23 21:21:48 +02:00
|
|
|
x->fwd_txm8x8(src_diff, coeff, bw * 8);
|
2013-07-11 22:01:44 +02:00
|
|
|
vp9_quantize_b(coeff, 64, x->skip_block, p->zbin, p->round,
|
|
|
|
p->quant, p->quant_shift, qcoeff, dqcoeff,
|
|
|
|
pd->dequant, p->zbin_extra, eob, scan, iscan);
|
2013-04-30 20:29:27 +02:00
|
|
|
break;
|
|
|
|
case TX_4X4:
|
2013-07-23 21:21:48 +02:00
|
|
|
scan = vp9_default_scan_4x4;
|
|
|
|
iscan = vp9_default_iscan_4x4;
|
2013-07-11 22:01:44 +02:00
|
|
|
xoff = 4 * (block & twmask);
|
|
|
|
yoff = 4 * (block >> twl);
|
|
|
|
src_diff = p->src_diff + 4 * bw * yoff + xoff;
|
2013-07-23 21:21:48 +02:00
|
|
|
x->fwd_txm4x4(src_diff, coeff, bw * 8);
|
2013-07-11 22:01:44 +02:00
|
|
|
vp9_quantize_b(coeff, 16, x->skip_block, p->zbin, p->round,
|
|
|
|
p->quant, p->quant_shift, qcoeff, dqcoeff,
|
|
|
|
pd->dequant, p->zbin_extra, eob, scan, iscan);
|
2013-04-30 20:29:27 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
assert(0);
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
2013-05-03 02:05:14 +02:00
|
|
|
}
|
|
|
|
|
2013-08-27 20:05:08 +02:00
|
|
|
static void encode_block(int plane, int block, BLOCK_SIZE plane_bsize,
|
2013-08-16 02:03:03 +02:00
|
|
|
TX_SIZE tx_size, void *arg) {
|
2013-05-31 21:30:32 +02:00
|
|
|
struct encode_b_args *const args = arg;
|
|
|
|
MACROBLOCK *const x = args->x;
|
|
|
|
MACROBLOCKD *const xd = &x->e_mbd;
|
|
|
|
struct macroblockd_plane *const pd = &xd->plane[plane];
|
2013-08-19 22:20:21 +02:00
|
|
|
const int raster_block = txfrm_block_to_raster_block(plane_bsize, tx_size,
|
|
|
|
block);
|
|
|
|
|
2013-08-10 01:40:05 +02:00
|
|
|
int16_t *const dqcoeff = BLOCK_OFFSET(pd->dqcoeff, block);
|
2013-08-19 22:20:21 +02:00
|
|
|
uint8_t *const dst = raster_block_offset_uint8(plane_bsize, raster_block,
|
2013-05-31 21:30:32 +02:00
|
|
|
pd->dst.buf, pd->dst.stride);
|
2013-09-21 01:29:24 +02:00
|
|
|
|
|
|
|
// TODO(jingning): per transformed block zero forcing only enabled for
|
|
|
|
// luma component. will integrate chroma components as well.
|
|
|
|
if (x->zcoeff_blk[tx_size][block] && plane == 0) {
|
|
|
|
pd->eobs[block] = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-08-19 22:20:21 +02:00
|
|
|
vp9_xform_quant(plane, block, plane_bsize, tx_size, arg);
|
2013-05-03 02:05:14 +02:00
|
|
|
|
2013-04-30 20:29:27 +02:00
|
|
|
if (x->optimize)
|
2013-08-20 00:47:24 +02:00
|
|
|
vp9_optimize_b(plane, block, plane_bsize, tx_size, x, args->ctx);
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2013-08-14 20:39:31 +02:00
|
|
|
if (x->skip_encode || pd->eobs[block] == 0)
|
2013-07-23 19:02:43 +02:00
|
|
|
return;
|
2013-07-15 20:28:46 +02:00
|
|
|
|
2013-08-14 20:39:31 +02:00
|
|
|
switch (tx_size) {
|
2013-04-30 20:29:27 +02:00
|
|
|
case TX_32X32:
|
2013-10-10 20:27:39 +02:00
|
|
|
vp9_idct32x32_1024_add(dqcoeff, dst, pd->dst.stride);
|
2013-04-30 20:29:27 +02:00
|
|
|
break;
|
|
|
|
case TX_16X16:
|
2013-10-07 23:31:10 +02:00
|
|
|
vp9_idct16x16_add(dqcoeff, dst, pd->dst.stride, pd->eobs[block]);
|
2013-04-30 20:29:27 +02:00
|
|
|
break;
|
|
|
|
case TX_8X8:
|
2013-10-06 09:24:09 +02:00
|
|
|
vp9_idct8x8_add(dqcoeff, dst, pd->dst.stride, pd->eobs[block]);
|
2013-04-30 20:29:27 +02:00
|
|
|
break;
|
|
|
|
case TX_4X4:
|
2013-07-11 18:09:41 +02:00
|
|
|
// this is like vp9_short_idct4x4 but has a special case around eob<=1
|
|
|
|
// which is significant (not just an optimization) for the lossless
|
|
|
|
// case.
|
2013-10-08 20:27:56 +02:00
|
|
|
xd->itxm_add(dqcoeff, dst, pd->dst.stride, pd->eobs[block]);
|
2013-04-30 20:29:27 +02:00
|
|
|
break;
|
2013-08-14 20:39:31 +02:00
|
|
|
default:
|
|
|
|
assert(!"Invalid transform size");
|
2013-04-30 20:29:27 +02:00
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2013-08-27 20:05:08 +02:00
|
|
|
void vp9_encode_sby(MACROBLOCK *x, BLOCK_SIZE bsize) {
|
2013-05-31 21:30:32 +02:00
|
|
|
MACROBLOCKD *const xd = &x->e_mbd;
|
2013-05-03 02:05:14 +02:00
|
|
|
struct optimize_ctx ctx;
|
2013-08-16 21:51:20 +02:00
|
|
|
struct encode_b_args arg = {x, &ctx};
|
2013-05-03 02:05:14 +02:00
|
|
|
|
|
|
|
vp9_subtract_sby(x, bsize);
|
|
|
|
if (x->optimize)
|
2013-07-24 00:53:09 +02:00
|
|
|
optimize_init_b(0, bsize, &arg);
|
2013-05-03 02:05:14 +02:00
|
|
|
|
2013-05-20 19:03:17 +02:00
|
|
|
foreach_transformed_block_in_plane(xd, bsize, 0, encode_block, &arg);
|
2013-05-03 02:05:14 +02:00
|
|
|
}
|
|
|
|
|
2013-08-27 20:05:08 +02:00
|
|
|
void vp9_encode_sb(MACROBLOCK *x, BLOCK_SIZE bsize) {
|
2013-05-31 21:30:32 +02:00
|
|
|
MACROBLOCKD *const xd = &x->e_mbd;
|
2013-04-30 20:29:27 +02:00
|
|
|
struct optimize_ctx ctx;
|
2013-08-16 21:51:20 +02:00
|
|
|
struct encode_b_args arg = {x, &ctx};
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2013-04-30 20:29:27 +02:00
|
|
|
vp9_subtract_sb(x, bsize);
|
2013-07-24 00:53:09 +02:00
|
|
|
|
|
|
|
if (x->optimize) {
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < MAX_MB_PLANE; ++i)
|
|
|
|
optimize_init_b(i, bsize, &arg);
|
|
|
|
}
|
2013-05-14 17:58:13 +02:00
|
|
|
|
2013-05-20 19:03:17 +02:00
|
|
|
foreach_transformed_block(xd, bsize, encode_block, &arg);
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
2013-05-16 02:21:15 +02:00
|
|
|
|
2013-08-27 20:05:08 +02:00
|
|
|
void vp9_encode_block_intra(int plane, int block, BLOCK_SIZE plane_bsize,
|
2013-08-16 02:03:03 +02:00
|
|
|
TX_SIZE tx_size, void *arg) {
|
2013-05-16 02:21:15 +02:00
|
|
|
struct encode_b_args* const args = arg;
|
2013-05-31 21:30:32 +02:00
|
|
|
MACROBLOCK *const x = args->x;
|
|
|
|
MACROBLOCKD *const xd = &x->e_mbd;
|
2013-09-11 19:45:44 +02:00
|
|
|
MB_MODE_INFO *mbmi = &xd->this_mi->mbmi;
|
2013-05-31 21:30:32 +02:00
|
|
|
struct macroblock_plane *const p = &x->plane[plane];
|
|
|
|
struct macroblockd_plane *const pd = &xd->plane[plane];
|
2013-08-10 01:40:05 +02:00
|
|
|
int16_t *coeff = BLOCK_OFFSET(p->coeff, block);
|
|
|
|
int16_t *qcoeff = BLOCK_OFFSET(pd->qcoeff, block);
|
|
|
|
int16_t *dqcoeff = BLOCK_OFFSET(pd->dqcoeff, block);
|
2013-07-11 20:35:13 +02:00
|
|
|
const int16_t *scan, *iscan;
|
2013-05-16 02:21:15 +02:00
|
|
|
TX_TYPE tx_type;
|
2013-07-11 20:35:13 +02:00
|
|
|
MB_PREDICTION_MODE mode;
|
2013-08-19 22:20:21 +02:00
|
|
|
const int bwl = b_width_log2(plane_bsize), bw = 1 << bwl;
|
2013-07-11 20:35:13 +02:00
|
|
|
const int twl = bwl - tx_size, twmask = (1 << twl) - 1;
|
|
|
|
int xoff, yoff;
|
|
|
|
uint8_t *src, *dst;
|
|
|
|
int16_t *src_diff;
|
|
|
|
uint16_t *eob = &pd->eobs[block];
|
2013-05-16 02:21:15 +02:00
|
|
|
|
2013-08-20 00:47:24 +02:00
|
|
|
if (xd->mb_to_right_edge < 0 || xd->mb_to_bottom_edge < 0)
|
2013-08-19 22:20:21 +02:00
|
|
|
extend_for_intra(xd, plane_bsize, plane, block, tx_size);
|
2013-06-06 15:07:09 +02:00
|
|
|
|
2013-05-31 21:30:32 +02:00
|
|
|
// if (x->optimize)
|
2013-08-20 00:47:24 +02:00
|
|
|
// vp9_optimize_b(plane, block, plane_bsize, tx_size, x, args->ctx);
|
2013-05-31 21:30:32 +02:00
|
|
|
|
2013-07-11 20:35:13 +02:00
|
|
|
switch (tx_size) {
|
2013-05-16 02:21:15 +02:00
|
|
|
case TX_32X32:
|
2013-07-11 20:35:13 +02:00
|
|
|
scan = vp9_default_scan_32x32;
|
|
|
|
iscan = vp9_default_iscan_32x32;
|
|
|
|
mode = plane == 0 ? mbmi->mode : mbmi->uv_mode;
|
|
|
|
block >>= 6;
|
|
|
|
xoff = 32 * (block & twmask);
|
|
|
|
yoff = 32 * (block >> twl);
|
|
|
|
dst = pd->dst.buf + yoff * pd->dst.stride + xoff;
|
|
|
|
src = p->src.buf + yoff * p->src.stride + xoff;
|
|
|
|
src_diff = p->src_diff + 4 * bw * yoff + xoff;
|
|
|
|
vp9_predict_intra_block(xd, block, bwl, TX_32X32, mode,
|
|
|
|
dst, pd->dst.stride, dst, pd->dst.stride);
|
|
|
|
vp9_subtract_block(32, 32, src_diff, bw * 4,
|
|
|
|
src, p->src.stride, dst, pd->dst.stride);
|
2013-08-08 00:22:51 +02:00
|
|
|
if (x->use_lp32x32fdct)
|
2013-07-11 20:35:13 +02:00
|
|
|
vp9_short_fdct32x32_rd(src_diff, coeff, bw * 8);
|
|
|
|
else
|
|
|
|
vp9_short_fdct32x32(src_diff, coeff, bw * 8);
|
|
|
|
vp9_quantize_b_32x32(coeff, 1024, x->skip_block, p->zbin, p->round,
|
|
|
|
p->quant, p->quant_shift, qcoeff, dqcoeff,
|
|
|
|
pd->dequant, p->zbin_extra, eob, scan, iscan);
|
2013-07-23 19:02:43 +02:00
|
|
|
if (!x->skip_encode && *eob)
|
2013-10-10 20:27:39 +02:00
|
|
|
vp9_idct32x32_1024_add(dqcoeff, dst, pd->dst.stride);
|
2013-05-16 02:21:15 +02:00
|
|
|
break;
|
|
|
|
case TX_16X16:
|
2013-07-24 21:55:45 +02:00
|
|
|
tx_type = get_tx_type_16x16(pd->plane_type, xd);
|
2013-07-11 20:35:13 +02:00
|
|
|
scan = get_scan_16x16(tx_type);
|
|
|
|
iscan = get_iscan_16x16(tx_type);
|
|
|
|
mode = plane == 0 ? mbmi->mode : mbmi->uv_mode;
|
|
|
|
block >>= 4;
|
|
|
|
xoff = 16 * (block & twmask);
|
|
|
|
yoff = 16 * (block >> twl);
|
|
|
|
dst = pd->dst.buf + yoff * pd->dst.stride + xoff;
|
|
|
|
src = p->src.buf + yoff * p->src.stride + xoff;
|
|
|
|
src_diff = p->src_diff + 4 * bw * yoff + xoff;
|
|
|
|
vp9_predict_intra_block(xd, block, bwl, TX_16X16, mode,
|
|
|
|
dst, pd->dst.stride, dst, pd->dst.stride);
|
|
|
|
vp9_subtract_block(16, 16, src_diff, bw * 4,
|
|
|
|
src, p->src.stride, dst, pd->dst.stride);
|
|
|
|
if (tx_type != DCT_DCT)
|
|
|
|
vp9_short_fht16x16(src_diff, coeff, bw * 4, tx_type);
|
2013-05-31 21:30:32 +02:00
|
|
|
else
|
2013-07-11 20:35:13 +02:00
|
|
|
x->fwd_txm16x16(src_diff, coeff, bw * 8);
|
2013-09-07 01:06:21 +02:00
|
|
|
vp9_quantize_b(coeff, 256, x->skip_block, p->zbin, p->round,
|
|
|
|
p->quant, p->quant_shift, qcoeff, dqcoeff,
|
2013-07-11 20:35:13 +02:00
|
|
|
pd->dequant, p->zbin_extra, eob, scan, iscan);
|
2013-10-02 23:13:33 +02:00
|
|
|
if (!x->skip_encode && *eob)
|
|
|
|
vp9_iht_add_16x16(tx_type, dqcoeff, dst, pd->dst.stride, *eob);
|
2013-05-16 02:21:15 +02:00
|
|
|
break;
|
|
|
|
case TX_8X8:
|
2013-07-24 21:55:45 +02:00
|
|
|
tx_type = get_tx_type_8x8(pd->plane_type, xd);
|
2013-07-11 20:35:13 +02:00
|
|
|
scan = get_scan_8x8(tx_type);
|
|
|
|
iscan = get_iscan_8x8(tx_type);
|
|
|
|
mode = plane == 0 ? mbmi->mode : mbmi->uv_mode;
|
|
|
|
block >>= 2;
|
|
|
|
xoff = 8 * (block & twmask);
|
|
|
|
yoff = 8 * (block >> twl);
|
|
|
|
dst = pd->dst.buf + yoff * pd->dst.stride + xoff;
|
|
|
|
src = p->src.buf + yoff * p->src.stride + xoff;
|
|
|
|
src_diff = p->src_diff + 4 * bw * yoff + xoff;
|
|
|
|
vp9_predict_intra_block(xd, block, bwl, TX_8X8, mode,
|
|
|
|
dst, pd->dst.stride, dst, pd->dst.stride);
|
|
|
|
vp9_subtract_block(8, 8, src_diff, bw * 4,
|
|
|
|
src, p->src.stride, dst, pd->dst.stride);
|
|
|
|
if (tx_type != DCT_DCT)
|
|
|
|
vp9_short_fht8x8(src_diff, coeff, bw * 4, tx_type);
|
2013-05-31 21:30:32 +02:00
|
|
|
else
|
2013-07-11 20:35:13 +02:00
|
|
|
x->fwd_txm8x8(src_diff, coeff, bw * 8);
|
|
|
|
vp9_quantize_b(coeff, 64, x->skip_block, p->zbin, p->round, p->quant,
|
|
|
|
p->quant_shift, qcoeff, dqcoeff,
|
|
|
|
pd->dequant, p->zbin_extra, eob, scan, iscan);
|
2013-10-02 23:13:33 +02:00
|
|
|
if (!x->skip_encode && *eob)
|
|
|
|
vp9_iht_add_8x8(tx_type, dqcoeff, dst, pd->dst.stride, *eob);
|
2013-05-16 02:21:15 +02:00
|
|
|
break;
|
|
|
|
case TX_4X4:
|
2013-07-24 21:55:45 +02:00
|
|
|
tx_type = get_tx_type_4x4(pd->plane_type, xd, block);
|
2013-07-11 20:35:13 +02:00
|
|
|
scan = get_scan_4x4(tx_type);
|
|
|
|
iscan = get_iscan_4x4(tx_type);
|
2013-08-02 20:45:21 +02:00
|
|
|
if (mbmi->sb_type < BLOCK_8X8 && plane == 0)
|
2013-09-11 19:45:44 +02:00
|
|
|
mode = xd->this_mi->bmi[block].as_mode;
|
2013-08-02 20:45:21 +02:00
|
|
|
else
|
2013-07-11 20:35:13 +02:00
|
|
|
mode = plane == 0 ? mbmi->mode : mbmi->uv_mode;
|
2013-08-02 20:45:21 +02:00
|
|
|
|
2013-07-11 20:35:13 +02:00
|
|
|
xoff = 4 * (block & twmask);
|
|
|
|
yoff = 4 * (block >> twl);
|
|
|
|
dst = pd->dst.buf + yoff * pd->dst.stride + xoff;
|
|
|
|
src = p->src.buf + yoff * p->src.stride + xoff;
|
|
|
|
src_diff = p->src_diff + 4 * bw * yoff + xoff;
|
|
|
|
vp9_predict_intra_block(xd, block, bwl, TX_4X4, mode,
|
|
|
|
dst, pd->dst.stride, dst, pd->dst.stride);
|
|
|
|
vp9_subtract_block(4, 4, src_diff, bw * 4,
|
|
|
|
src, p->src.stride, dst, pd->dst.stride);
|
|
|
|
if (tx_type != DCT_DCT)
|
|
|
|
vp9_short_fht4x4(src_diff, coeff, bw * 4, tx_type);
|
2013-05-31 21:30:32 +02:00
|
|
|
else
|
2013-07-11 20:35:13 +02:00
|
|
|
x->fwd_txm4x4(src_diff, coeff, bw * 8);
|
|
|
|
vp9_quantize_b(coeff, 16, x->skip_block, p->zbin, p->round, p->quant,
|
|
|
|
p->quant_shift, qcoeff, dqcoeff,
|
|
|
|
pd->dequant, p->zbin_extra, eob, scan, iscan);
|
2013-07-23 19:02:43 +02:00
|
|
|
if (!x->skip_encode && *eob) {
|
2013-07-11 20:35:13 +02:00
|
|
|
if (tx_type == DCT_DCT)
|
|
|
|
// this is like vp9_short_idct4x4 but has a special case around eob<=1
|
|
|
|
// which is significant (not just an optimization) for the lossless
|
|
|
|
// case.
|
2013-10-08 20:27:56 +02:00
|
|
|
xd->itxm_add(dqcoeff, dst, pd->dst.stride, *eob);
|
2013-07-11 20:35:13 +02:00
|
|
|
else
|
|
|
|
vp9_short_iht4x4_add(dqcoeff, dst, pd->dst.stride, tx_type);
|
|
|
|
}
|
2013-05-16 02:21:15 +02:00
|
|
|
break;
|
2013-07-11 20:35:13 +02:00
|
|
|
default:
|
|
|
|
assert(0);
|
2013-05-16 02:21:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-27 20:05:08 +02:00
|
|
|
void vp9_encode_intra_block_y(MACROBLOCK *x, BLOCK_SIZE bsize) {
|
2013-05-16 02:21:15 +02:00
|
|
|
MACROBLOCKD* const xd = &x->e_mbd;
|
|
|
|
struct optimize_ctx ctx;
|
2013-08-16 21:51:20 +02:00
|
|
|
struct encode_b_args arg = {x, &ctx};
|
2013-05-16 02:21:15 +02:00
|
|
|
|
2013-08-16 02:03:03 +02:00
|
|
|
foreach_transformed_block_in_plane(xd, bsize, 0, vp9_encode_block_intra,
|
|
|
|
&arg);
|
2013-05-16 02:21:15 +02:00
|
|
|
}
|
2013-08-27 20:05:08 +02:00
|
|
|
void vp9_encode_intra_block_uv(MACROBLOCK *x, BLOCK_SIZE bsize) {
|
2013-05-17 21:50:40 +02:00
|
|
|
MACROBLOCKD* const xd = &x->e_mbd;
|
|
|
|
struct optimize_ctx ctx;
|
2013-08-16 21:51:20 +02:00
|
|
|
struct encode_b_args arg = {x, &ctx};
|
2013-08-16 02:03:03 +02:00
|
|
|
foreach_transformed_block_uv(xd, bsize, vp9_encode_block_intra, &arg);
|
2013-05-17 21:50:40 +02:00
|
|
|
}
|
2013-05-16 02:21:15 +02:00
|
|
|
|