2014-01-24 10:37:15 +00:00
|
|
|
/*****************************************************************************
|
2021-11-23 06:46:06 +00:00
|
|
|
* This file is part of uvg266 VVC encoder.
|
2014-02-21 13:00:20 +00:00
|
|
|
*
|
2021-10-07 08:32:59 +00:00
|
|
|
* Copyright (c) 2021, Tampere University, ITU/ISO/IEC, project contributors
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without modification,
|
|
|
|
* are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* * Redistributions of source code must retain the above copyright notice, this
|
|
|
|
* list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* * Redistributions in binary form must reproduce the above copyright notice, this
|
|
|
|
* list of conditions and the following disclaimer in the documentation and/or
|
|
|
|
* other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* * Neither the name of the Tampere University or ITU/ISO/IEC nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived from
|
|
|
|
* this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
|
|
|
|
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
|
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION HOWEVER CAUSED AND ON
|
|
|
|
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
* INCLUDING NEGLIGENCE OR OTHERWISE ARISING IN ANY WAY OUT OF THE USE OF THIS
|
2014-01-24 10:37:15 +00:00
|
|
|
****************************************************************************/
|
|
|
|
|
2013-09-18 09:16:03 +00:00
|
|
|
#include "search.h"
|
2013-04-16 08:23:03 +00:00
|
|
|
|
2016-04-01 14:14:23 +00:00
|
|
|
#include <limits.h>
|
2013-04-16 08:23:03 +00:00
|
|
|
#include <string.h>
|
2013-09-18 09:16:03 +00:00
|
|
|
|
2016-04-01 14:14:23 +00:00
|
|
|
#include "cabac.h"
|
|
|
|
#include "encoder.h"
|
2021-12-16 09:26:45 +00:00
|
|
|
#include "encode_coding_tree.h"
|
2016-04-01 14:14:23 +00:00
|
|
|
#include "imagelist.h"
|
2013-09-05 12:02:53 +00:00
|
|
|
#include "inter.h"
|
2016-04-01 14:14:23 +00:00
|
|
|
#include "intra.h"
|
2022-04-28 11:26:05 +00:00
|
|
|
#include "uvg266.h"
|
2014-04-04 10:09:02 +00:00
|
|
|
#include "rdo.h"
|
2015-07-21 09:02:54 +00:00
|
|
|
#include "search_inter.h"
|
2015-07-21 11:28:50 +00:00
|
|
|
#include "search_intra.h"
|
2016-04-01 14:14:23 +00:00
|
|
|
#include "threadqueue.h"
|
|
|
|
#include "transform.h"
|
|
|
|
#include "videoframe.h"
|
2016-10-20 12:37:15 +00:00
|
|
|
#include "strategies/strategies-picture.h"
|
2017-07-27 06:49:17 +00:00
|
|
|
#include "strategies/strategies-quant.h"
|
2021-05-18 18:22:22 +00:00
|
|
|
#include "reshape.h"
|
2013-09-16 16:18:24 +00:00
|
|
|
|
2013-09-30 07:47:05 +00:00
|
|
|
#define IN_FRAME(x, y, width, height, block_width, block_height) \
|
|
|
|
((x) >= 0 && (y) >= 0 \
|
|
|
|
&& (x) + (block_width) <= (width) \
|
|
|
|
&& (y) + (block_height) <= (height))
|
2013-09-25 14:47:40 +00:00
|
|
|
|
2017-07-25 10:16:28 +00:00
|
|
|
// Cost threshold for doing intra search in inter frames with --rd=0.
|
|
|
|
static const int INTRA_THRESHOLD = 8;
|
2016-05-10 11:15:41 +00:00
|
|
|
|
2014-10-06 18:46:12 +00:00
|
|
|
|
2017-06-05 12:21:34 +00:00
|
|
|
static INLINE void copy_cu_info(int x_local, int y_local, int width, lcu_t *from, lcu_t *to)
|
2014-02-25 11:06:22 +00:00
|
|
|
{
|
2017-06-05 12:21:34 +00:00
|
|
|
for (int y = y_local; y < y_local + width; y += SCU_WIDTH) {
|
|
|
|
for (int x = x_local; x < x_local + width; x += SCU_WIDTH) {
|
|
|
|
*LCU_GET_CU_AT_PX(to, x, y) = *LCU_GET_CU_AT_PX(from, x, y);
|
2014-02-26 13:09:18 +00:00
|
|
|
}
|
|
|
|
}
|
2017-06-05 12:21:34 +00:00
|
|
|
}
|
2014-02-25 11:06:22 +00:00
|
|
|
|
2017-06-05 12:21:34 +00:00
|
|
|
static INLINE void copy_cu_pixels(int x_local, int y_local, int width, lcu_t *from, lcu_t *to)
|
|
|
|
{
|
|
|
|
const int luma_index = x_local + y_local * LCU_WIDTH;
|
|
|
|
const int chroma_index = (x_local / 2) + (y_local / 2) * (LCU_WIDTH / 2);
|
|
|
|
|
2022-04-28 11:18:09 +00:00
|
|
|
uvg_pixels_blit(&from->rec.y[luma_index], &to->rec.y[luma_index],
|
2017-06-05 12:21:34 +00:00
|
|
|
width, width, LCU_WIDTH, LCU_WIDTH);
|
2022-04-28 11:18:09 +00:00
|
|
|
if (from->rec.chroma_format != UVG_CSP_400) {
|
|
|
|
uvg_pixels_blit(&from->rec.u[chroma_index], &to->rec.u[chroma_index],
|
2017-06-05 12:21:34 +00:00
|
|
|
width / 2, width / 2, LCU_WIDTH / 2, LCU_WIDTH / 2);
|
2022-04-28 11:18:09 +00:00
|
|
|
uvg_pixels_blit(&from->rec.v[chroma_index], &to->rec.v[chroma_index],
|
2017-06-05 12:21:34 +00:00
|
|
|
width / 2, width / 2, LCU_WIDTH / 2, LCU_WIDTH / 2);
|
|
|
|
}
|
|
|
|
}
|
2014-02-27 09:56:16 +00:00
|
|
|
|
2021-08-16 12:39:14 +00:00
|
|
|
static INLINE void copy_cu_coeffs(int x_local, int y_local, int width, lcu_t *from, lcu_t *to, bool joint)
|
2017-06-05 12:21:34 +00:00
|
|
|
{
|
|
|
|
const int luma_z = xy_to_zorder(LCU_WIDTH, x_local, y_local);
|
|
|
|
copy_coeffs(&from->coeff.y[luma_z], &to->coeff.y[luma_z], width);
|
2017-05-12 13:03:23 +00:00
|
|
|
|
2022-04-28 11:18:09 +00:00
|
|
|
if (from->rec.chroma_format != UVG_CSP_400) {
|
2017-06-05 12:21:34 +00:00
|
|
|
const int chroma_z = xy_to_zorder(LCU_WIDTH_C, x_local >> 1, y_local >> 1);
|
|
|
|
copy_coeffs(&from->coeff.u[chroma_z], &to->coeff.u[chroma_z], width >> 1);
|
|
|
|
copy_coeffs(&from->coeff.v[chroma_z], &to->coeff.v[chroma_z], width >> 1);
|
2021-08-16 12:39:14 +00:00
|
|
|
if (joint) {
|
|
|
|
copy_coeffs(&from->coeff.joint_uv[chroma_z], &to->coeff.joint_uv[chroma_z], width >> 1);
|
|
|
|
}
|
2014-02-26 13:09:18 +00:00
|
|
|
}
|
2014-02-25 11:06:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-06-05 12:21:34 +00:00
|
|
|
* Copy all non-reference CU data from next level to current level.
|
2014-02-25 11:06:22 +00:00
|
|
|
*/
|
2021-08-16 12:39:14 +00:00
|
|
|
static void work_tree_copy_up(int x_local, int y_local, int depth, lcu_t *work_tree, bool joint)
|
2014-02-25 11:06:22 +00:00
|
|
|
{
|
2017-06-05 12:21:34 +00:00
|
|
|
const int width = LCU_WIDTH >> depth;
|
|
|
|
copy_cu_info (x_local, y_local, width, &work_tree[depth + 1], &work_tree[depth]);
|
|
|
|
copy_cu_pixels(x_local, y_local, width, &work_tree[depth + 1], &work_tree[depth]);
|
2021-08-17 06:31:01 +00:00
|
|
|
copy_cu_coeffs(x_local, y_local, width, &work_tree[depth + 1], &work_tree[depth], joint);
|
|
|
|
|
2017-06-05 12:21:34 +00:00
|
|
|
}
|
2014-02-26 15:30:15 +00:00
|
|
|
|
|
|
|
|
2017-06-05 12:21:34 +00:00
|
|
|
/**
|
|
|
|
* Copy all non-reference CU data from current level to all lower levels.
|
|
|
|
*/
|
2017-07-28 06:27:02 +00:00
|
|
|
static void work_tree_copy_down(int x_local, int y_local, int depth, lcu_t *work_tree)
|
2017-06-05 12:21:34 +00:00
|
|
|
{
|
|
|
|
const int width = LCU_WIDTH >> depth;
|
|
|
|
for (int i = depth + 1; i <= MAX_PU_DEPTH; i++) {
|
|
|
|
copy_cu_info (x_local, y_local, width, &work_tree[depth], &work_tree[i]);
|
|
|
|
copy_cu_pixels(x_local, y_local, width, &work_tree[depth], &work_tree[i]);
|
2014-02-26 15:30:15 +00:00
|
|
|
}
|
2014-02-25 11:06:22 +00:00
|
|
|
}
|
|
|
|
|
2022-04-28 11:18:09 +00:00
|
|
|
void uvg_lcu_fill_trdepth(lcu_t *lcu, int x_px, int y_px, int depth, int tr_depth)
|
2014-09-05 08:29:30 +00:00
|
|
|
{
|
2017-06-05 12:24:22 +00:00
|
|
|
const int x_local = SUB_SCU(x_px);
|
|
|
|
const int y_local = SUB_SCU(y_px);
|
2022-06-17 08:27:19 +00:00
|
|
|
const uint32_t width = LCU_WIDTH >> depth;
|
2014-09-05 08:29:30 +00:00
|
|
|
|
2016-01-12 11:27:58 +00:00
|
|
|
for (unsigned y = 0; y < width; y += SCU_WIDTH) {
|
|
|
|
for (unsigned x = 0; x < width; x += SCU_WIDTH) {
|
2017-06-05 12:24:22 +00:00
|
|
|
LCU_GET_CU_AT_PX(lcu, x_local + x, y_local + y)->tr_depth = tr_depth;
|
2014-02-27 11:02:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-05 12:24:22 +00:00
|
|
|
static void lcu_fill_cu_info(lcu_t *lcu, int x_local, int y_local, int width, int height, cu_info_t *cu)
|
2015-11-03 06:34:46 +00:00
|
|
|
{
|
|
|
|
// Set mode in every CU covered by part_mode in this depth.
|
2017-06-05 12:24:22 +00:00
|
|
|
for (int y = y_local; y < y_local + height; y += SCU_WIDTH) {
|
|
|
|
for (int x = x_local; x < x_local + width; x += SCU_WIDTH) {
|
|
|
|
cu_info_t *to = LCU_GET_CU_AT_PX(lcu, x, y);
|
|
|
|
to->type = cu->type;
|
|
|
|
to->depth = cu->depth;
|
|
|
|
to->part_size = cu->part_size;
|
2017-05-08 07:54:06 +00:00
|
|
|
to->qp = cu->qp;
|
2021-02-02 09:09:43 +00:00
|
|
|
//to->tr_idx = cu->tr_idx;
|
2022-04-28 09:10:10 +00:00
|
|
|
to->lfnst_idx = cu->lfnst_idx;
|
|
|
|
to->lfnst_last_scan_pos = cu->lfnst_last_scan_pos;
|
|
|
|
to->violates_lfnst_constrained[0] = cu->violates_lfnst_constrained[0];
|
|
|
|
to->violates_lfnst_constrained[1] = cu->violates_lfnst_constrained[1];
|
2017-06-05 12:24:22 +00:00
|
|
|
|
|
|
|
if (cu->type == CU_INTRA) {
|
|
|
|
to->intra.mode = cu->intra.mode;
|
|
|
|
to->intra.mode_chroma = cu->intra.mode_chroma;
|
2021-11-24 13:37:40 +00:00
|
|
|
to->intra.multi_ref_idx = cu->intra.multi_ref_idx;
|
2022-01-24 22:44:31 +00:00
|
|
|
to->intra.mip_flag = cu->intra.mip_flag;
|
|
|
|
to->intra.mip_is_transposed = cu->intra.mip_is_transposed;
|
2017-06-05 12:24:22 +00:00
|
|
|
} else {
|
|
|
|
to->skipped = cu->skipped;
|
|
|
|
to->merged = cu->merged;
|
|
|
|
to->merge_idx = cu->merge_idx;
|
|
|
|
to->inter = cu->inter;
|
2015-11-03 06:34:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-09 14:26:43 +00:00
|
|
|
static void lcu_fill_inter(lcu_t *lcu, int x_local, int y_local, int cu_width)
|
2014-02-25 11:06:22 +00:00
|
|
|
{
|
2017-06-05 12:24:22 +00:00
|
|
|
const part_mode_t part_mode = LCU_GET_CU_AT_PX(lcu, x_local, y_local)->part_size;
|
2022-04-28 11:18:09 +00:00
|
|
|
const int num_pu = uvg_part_mode_num_parts[part_mode];
|
2015-09-25 08:59:57 +00:00
|
|
|
|
|
|
|
for (int i = 0; i < num_pu; ++i) {
|
2017-06-05 12:24:22 +00:00
|
|
|
const int x_pu = PU_GET_X(part_mode, cu_width, x_local, i);
|
|
|
|
const int y_pu = PU_GET_Y(part_mode, cu_width, y_local, i);
|
|
|
|
const int width_pu = PU_GET_W(part_mode, cu_width, i);
|
|
|
|
const int height_pu = PU_GET_H(part_mode, cu_width, i);
|
|
|
|
|
|
|
|
cu_info_t *pu = LCU_GET_CU_AT_PX(lcu, x_pu, y_pu);
|
|
|
|
pu->type = CU_INTER;
|
|
|
|
lcu_fill_cu_info(lcu, x_pu, y_pu, width_pu, height_pu, pu);
|
2014-03-03 12:51:36 +00:00
|
|
|
}
|
2014-02-25 11:06:22 +00:00
|
|
|
}
|
|
|
|
|
2022-06-17 08:27:19 +00:00
|
|
|
static void lcu_fill_cbf(lcu_t *lcu, uint32_t x_local, uint32_t y_local, uint32_t width, cu_info_t *cur_cu)
|
2014-03-06 12:52:58 +00:00
|
|
|
{
|
2017-06-05 12:24:22 +00:00
|
|
|
const uint32_t tr_split = cur_cu->tr_depth - cur_cu->depth;
|
2016-01-12 11:27:58 +00:00
|
|
|
const uint32_t mask = ~((width >> tr_split)-1);
|
2014-03-06 12:52:58 +00:00
|
|
|
|
|
|
|
// Set coeff flags in every CU covered by part_mode in this depth.
|
2016-01-12 11:27:58 +00:00
|
|
|
for (uint32_t y = y_local; y < y_local + width; y += SCU_WIDTH) {
|
|
|
|
for (uint32_t x = x_local; x < x_local + width; x += SCU_WIDTH) {
|
2014-03-06 12:52:58 +00:00
|
|
|
// Use TU top-left CU to propagate coeff flags
|
2016-01-12 11:27:58 +00:00
|
|
|
cu_info_t *cu_from = LCU_GET_CU_AT_PX(lcu, x & mask, y & mask);
|
2017-06-05 12:24:22 +00:00
|
|
|
cu_info_t *cu_to = LCU_GET_CU_AT_PX(lcu, x, y);
|
|
|
|
if (cu_from != cu_to) {
|
2021-12-09 16:04:58 +00:00
|
|
|
// Chroma and luma coeff data is needed for deblocking
|
2017-06-05 12:24:22 +00:00
|
|
|
cbf_copy(&cu_to->cbf, cu_from->cbf, COLOR_Y);
|
2021-12-09 16:04:58 +00:00
|
|
|
cbf_copy(&cu_to->cbf, cu_from->cbf, COLOR_U);
|
|
|
|
cbf_copy(&cu_to->cbf, cu_from->cbf, COLOR_V);
|
2014-04-15 04:30:21 +00:00
|
|
|
}
|
2014-03-06 12:52:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-02-25 11:06:22 +00:00
|
|
|
|
2014-03-06 16:14:01 +00:00
|
|
|
|
2018-10-16 08:02:01 +00:00
|
|
|
//Calculates cost for all zero coeffs
|
|
|
|
static double cu_zero_coeff_cost(const encoder_state_t *state, lcu_t *work_tree, const int x, const int y,
|
|
|
|
const int depth)
|
|
|
|
{
|
|
|
|
int x_local = SUB_SCU(x);
|
|
|
|
int y_local = SUB_SCU(y);
|
|
|
|
int cu_width = LCU_WIDTH >> depth;
|
|
|
|
lcu_t *const lcu = &work_tree[depth];
|
|
|
|
|
|
|
|
const int luma_index = y_local * LCU_WIDTH + x_local;
|
|
|
|
const int chroma_index = (y_local / 2) * LCU_WIDTH_C + (x_local / 2);
|
|
|
|
|
|
|
|
double ssd = 0.0;
|
2022-05-30 09:11:48 +00:00
|
|
|
ssd += UVG_LUMA_MULT * uvg_pixels_calc_ssd(
|
2018-10-16 08:02:01 +00:00
|
|
|
&lcu->ref.y[luma_index], &lcu->rec.y[luma_index],
|
|
|
|
LCU_WIDTH, LCU_WIDTH, cu_width
|
|
|
|
);
|
2022-04-28 11:18:09 +00:00
|
|
|
if (x % 8 == 0 && y % 8 == 0 && state->encoder_control->chroma_format != UVG_CSP_400) {
|
2022-05-30 09:11:48 +00:00
|
|
|
ssd += UVG_CHROMA_MULT * uvg_pixels_calc_ssd(
|
2018-10-16 08:02:01 +00:00
|
|
|
&lcu->ref.u[chroma_index], &lcu->rec.u[chroma_index],
|
|
|
|
LCU_WIDTH_C, LCU_WIDTH_C, cu_width / 2
|
|
|
|
);
|
2022-05-30 09:11:48 +00:00
|
|
|
ssd += UVG_CHROMA_MULT * uvg_pixels_calc_ssd(
|
2018-10-16 08:02:01 +00:00
|
|
|
&lcu->ref.v[chroma_index], &lcu->rec.v[chroma_index],
|
|
|
|
LCU_WIDTH_C, LCU_WIDTH_C, cu_width / 2
|
|
|
|
);
|
|
|
|
}
|
|
|
|
// Save the pixels at a lower level of the working tree.
|
|
|
|
copy_cu_pixels(x_local, y_local, cu_width, lcu, &work_tree[depth + 1]);
|
|
|
|
|
|
|
|
return ssd;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-04-28 11:18:09 +00:00
|
|
|
static void downsample_cclm_rec(encoder_state_t *state, int x, int y, int width, int height, uvg_pixel *y_rec, uvg_pixel extra_pixel) {
|
2021-11-19 09:54:51 +00:00
|
|
|
if (!state->encoder_control->cfg.cclm) return;
|
|
|
|
int x_scu = SUB_SCU(x);
|
|
|
|
int y_scu = SUB_SCU(y);
|
|
|
|
y_rec += x_scu + y_scu * LCU_WIDTH;
|
2022-03-25 08:18:53 +00:00
|
|
|
const int stride = state->tile->frame->rec->stride;
|
|
|
|
const int stride2 = (((state->tile->frame->width + 7) & ~7) + FRAME_PADDING_LUMA);
|
2021-11-19 09:54:51 +00:00
|
|
|
|
|
|
|
for (int y_ = 0; y_ < height && y_ * 2 + y < state->encoder_control->cfg.height; y_++) {
|
|
|
|
for (int x_ = 0; x_ < width; x_++) {
|
|
|
|
int s = 4;
|
|
|
|
s += y_rec[2 * x_] * 2;
|
|
|
|
s += y_rec[2 * x_ + 1];
|
|
|
|
// If we are at the edge of the CTU read the pixel from the frame reconstruct buffer,
|
|
|
|
// *except* when we are also at the edge of the frame, in which case we want to duplicate
|
|
|
|
// the edge pixel
|
|
|
|
s += !x_scu && !x_ && x ? state->tile->frame->rec->y[x - 1 + (y + y_ * 2) * stride] : y_rec[2 * x_ - ((x_ + x) > 0)];
|
|
|
|
s += y_rec[2 * x_ + LCU_WIDTH] * 2;
|
|
|
|
s += y_rec[2 * x_ + 1 + LCU_WIDTH];
|
|
|
|
s += !x_scu && !x_ && x ? state->tile->frame->rec->y[x - 1 + (y + y_ * 2 + 1) * stride] : y_rec[2 * x_ - ((x_ + x) > 0) + LCU_WIDTH];
|
2022-03-25 08:18:53 +00:00
|
|
|
int index = x / 2 + x_ + (y / 2 + y_ )* stride2 / 2;
|
2021-11-19 09:54:51 +00:00
|
|
|
state->tile->frame->cclm_luma_rec[index] = s >> 3;
|
|
|
|
}
|
|
|
|
y_rec += LCU_WIDTH * 2;
|
|
|
|
}
|
2021-11-24 06:46:08 +00:00
|
|
|
if((y + height * 2) % 64 == 0) {
|
2022-03-25 08:18:53 +00:00
|
|
|
int line = y / 64 * stride2 / 2;
|
2021-11-24 06:46:08 +00:00
|
|
|
y_rec -= LCU_WIDTH;
|
|
|
|
for (int i = 0; i < width; ++i) {
|
|
|
|
int s = 2;
|
|
|
|
s += y_rec[i * 2] * 2;
|
|
|
|
s += y_rec[i * 2 + 1];
|
|
|
|
s += !x_scu && !i && x ? extra_pixel : y_rec[i * 2 - ((i + x) > 0)] ;
|
|
|
|
state->tile->frame->cclm_luma_rec_top_line[i + x / 2 + line] = s >> 2;
|
|
|
|
}
|
|
|
|
}
|
2021-11-19 09:54:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-03-11 13:01:50 +00:00
|
|
|
/**
|
2014-09-05 08:29:30 +00:00
|
|
|
* Calculate RD cost for a Coding Unit.
|
|
|
|
* \return Cost of block
|
|
|
|
* \param ref_cu CU used for prediction parameters.
|
|
|
|
*
|
|
|
|
* Calculates the RDO cost of a single CU that will not be split further.
|
|
|
|
* Takes into account SSD of reconstruction and the cost of encoding whatever
|
|
|
|
* prediction unit data needs to be coded.
|
|
|
|
*/
|
2022-04-28 11:18:09 +00:00
|
|
|
double uvg_cu_rd_cost_luma(const encoder_state_t *const state,
|
2022-03-14 12:33:36 +00:00
|
|
|
const int x_px, const int y_px, const int depth,
|
|
|
|
const cu_info_t *const pred_cu,
|
|
|
|
lcu_t *const lcu)
|
2014-03-11 13:01:50 +00:00
|
|
|
{
|
2014-09-05 08:29:30 +00:00
|
|
|
const int width = LCU_WIDTH >> depth;
|
2022-01-28 10:26:12 +00:00
|
|
|
const int skip_residual_coding = pred_cu->skipped || (pred_cu->type == CU_INTER && pred_cu->cbf == 0);
|
2022-03-21 06:42:41 +00:00
|
|
|
cabac_data_t* cabac = (cabac_data_t *)&state->search_cabac;
|
2014-09-05 08:29:30 +00:00
|
|
|
|
|
|
|
// cur_cu is used for TU parameters.
|
2015-07-23 06:40:41 +00:00
|
|
|
cu_info_t *const tr_cu = LCU_GET_CU_AT_PX(lcu, x_px, y_px);
|
2014-09-05 08:29:30 +00:00
|
|
|
|
2014-09-17 08:52:22 +00:00
|
|
|
double coeff_bits = 0;
|
2014-10-02 08:51:34 +00:00
|
|
|
double tr_tree_bits = 0;
|
2014-09-05 08:29:30 +00:00
|
|
|
|
|
|
|
// Check that lcu is not in
|
|
|
|
assert(x_px >= 0 && x_px < LCU_WIDTH);
|
|
|
|
assert(y_px >= 0 && y_px < LCU_WIDTH);
|
|
|
|
|
2014-10-02 09:33:17 +00:00
|
|
|
const uint8_t tr_depth = tr_cu->tr_depth - depth;
|
2014-10-01 09:32:29 +00:00
|
|
|
|
2014-10-02 09:33:17 +00:00
|
|
|
if (tr_depth > 0) {
|
2014-09-05 08:29:30 +00:00
|
|
|
int offset = width / 2;
|
2014-09-17 08:52:22 +00:00
|
|
|
double sum = 0;
|
2014-09-05 08:29:30 +00:00
|
|
|
|
2022-04-28 11:18:09 +00:00
|
|
|
sum += uvg_cu_rd_cost_luma(state, x_px, y_px, depth + 1, pred_cu, lcu);
|
|
|
|
sum += uvg_cu_rd_cost_luma(state, x_px + offset, y_px, depth + 1, pred_cu, lcu);
|
|
|
|
sum += uvg_cu_rd_cost_luma(state, x_px, y_px + offset, depth + 1, pred_cu, lcu);
|
|
|
|
sum += uvg_cu_rd_cost_luma(state, x_px + offset, y_px + offset, depth + 1, pred_cu, lcu);
|
2014-04-07 11:36:01 +00:00
|
|
|
|
2016-08-21 04:16:59 +00:00
|
|
|
return sum + tr_tree_bits * state->lambda;
|
2014-09-05 08:29:30 +00:00
|
|
|
}
|
|
|
|
|
2014-10-02 09:33:17 +00:00
|
|
|
// Add transform_tree cbf_luma bit cost.
|
2021-12-20 07:36:23 +00:00
|
|
|
const int is_tr_split = tr_cu->tr_depth - tr_cu->depth;
|
2022-05-13 12:04:03 +00:00
|
|
|
int is_set = cbf_is_set(pred_cu->cbf, depth, COLOR_Y);
|
2014-10-02 09:33:17 +00:00
|
|
|
if (pred_cu->type == CU_INTRA ||
|
2021-12-20 07:36:23 +00:00
|
|
|
is_tr_split ||
|
2016-05-22 07:08:11 +00:00
|
|
|
cbf_is_set(tr_cu->cbf, depth, COLOR_U) ||
|
|
|
|
cbf_is_set(tr_cu->cbf, depth, COLOR_V))
|
2014-10-02 09:33:17 +00:00
|
|
|
{
|
2022-03-21 06:42:41 +00:00
|
|
|
cabac_ctx_t *ctx = &(cabac->ctx.qt_cbf_model_luma[0]);
|
2021-12-20 07:36:23 +00:00
|
|
|
|
2021-12-13 10:23:16 +00:00
|
|
|
CABAC_FBITS_UPDATE(cabac, ctx, is_set, tr_tree_bits, "cbf_y_search");
|
2014-09-05 08:29:30 +00:00
|
|
|
}
|
2014-03-11 13:01:50 +00:00
|
|
|
|
2022-05-13 12:04:03 +00:00
|
|
|
if (is_set && state->encoder_control->cfg.trskip_enable && width <= (1 << state->encoder_control->cfg.trskip_max_size)) {
|
2022-05-18 06:34:31 +00:00
|
|
|
CABAC_FBITS_UPDATE(cabac, &cabac->ctx.transform_skip_model_luma, pred_cu->tr_idx == MTS_SKIP, tr_tree_bits, "transform_skip_flag");
|
2022-05-13 12:04:03 +00:00
|
|
|
}
|
|
|
|
|
2014-04-07 11:36:01 +00:00
|
|
|
// SSD between reconstruction and original
|
2016-06-07 04:59:40 +00:00
|
|
|
int ssd = 0;
|
2017-02-05 09:59:21 +00:00
|
|
|
if (!state->encoder_control->cfg.lossless) {
|
2016-06-07 04:59:40 +00:00
|
|
|
int index = y_px * LCU_WIDTH + x_px;
|
2022-04-28 11:18:09 +00:00
|
|
|
ssd = uvg_pixels_calc_ssd(&lcu->ref.y[index], &lcu->rec.y[index],
|
2016-06-07 04:59:40 +00:00
|
|
|
LCU_WIDTH, LCU_WIDTH,
|
|
|
|
width);
|
|
|
|
}
|
2014-05-19 09:17:42 +00:00
|
|
|
|
2022-01-28 10:26:12 +00:00
|
|
|
|
|
|
|
if (!skip_residual_coding) {
|
2022-04-28 11:18:09 +00:00
|
|
|
int8_t luma_scan_mode = uvg_get_scan_order(pred_cu->type, pred_cu->intra.mode, depth);
|
2017-05-12 13:03:23 +00:00
|
|
|
const coeff_t *coeffs = &lcu->coeff.y[xy_to_zorder(LCU_WIDTH, x_px, y_px)];
|
2014-09-05 08:29:30 +00:00
|
|
|
|
2022-05-17 10:55:07 +00:00
|
|
|
coeff_bits += uvg_get_coeff_cost(state, coeffs, NULL, width, 0, luma_scan_mode, pred_cu->tr_idx == MTS_SKIP);
|
2014-05-19 09:17:42 +00:00
|
|
|
}
|
|
|
|
|
2014-10-02 08:51:34 +00:00
|
|
|
double bits = tr_tree_bits + coeff_bits;
|
2022-05-30 09:11:48 +00:00
|
|
|
return (double)ssd * UVG_LUMA_MULT + bits * state->lambda;
|
2014-05-19 09:17:42 +00:00
|
|
|
}
|
|
|
|
|
2014-09-05 08:29:30 +00:00
|
|
|
|
2022-04-28 11:18:09 +00:00
|
|
|
double uvg_cu_rd_cost_chroma(const encoder_state_t *const state,
|
2022-03-14 12:33:36 +00:00
|
|
|
const int x_px, const int y_px, const int depth,
|
2022-03-21 06:42:41 +00:00
|
|
|
cu_info_t *const pred_cu,
|
2022-03-14 12:33:36 +00:00
|
|
|
lcu_t *const lcu)
|
2014-05-19 09:17:42 +00:00
|
|
|
{
|
2021-05-07 06:27:20 +00:00
|
|
|
const vector2d_t lcu_px = { (x_px & ~7) / 2, (y_px & ~7) / 2 };
|
|
|
|
const int width = (depth < MAX_DEPTH) ? LCU_WIDTH >> (depth + 1) : LCU_WIDTH >> depth;
|
2016-01-12 11:27:58 +00:00
|
|
|
cu_info_t *const tr_cu = LCU_GET_CU_AT_PX(lcu, x_px, y_px);
|
2022-01-28 10:26:12 +00:00
|
|
|
const int skip_residual_coding = pred_cu->skipped || (pred_cu->type == CU_INTER && pred_cu->cbf == 0);
|
2014-09-05 08:29:30 +00:00
|
|
|
|
2014-10-02 08:51:34 +00:00
|
|
|
double tr_tree_bits = 0;
|
2014-09-17 08:52:22 +00:00
|
|
|
double coeff_bits = 0;
|
2014-09-05 08:29:30 +00:00
|
|
|
|
|
|
|
assert(x_px >= 0 && x_px < LCU_WIDTH);
|
|
|
|
assert(y_px >= 0 && y_px < LCU_WIDTH);
|
|
|
|
|
2021-05-07 06:27:20 +00:00
|
|
|
if (depth == 4 && (x_px % 8 == 0 || y_px % 8 == 0)) {
|
2014-09-05 08:29:30 +00:00
|
|
|
// For MAX_PU_DEPTH calculate chroma for previous depth for the first
|
|
|
|
// block and return 0 cost for all others.
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-12-07 06:13:08 +00:00
|
|
|
// See luma for why the second condition
|
2022-05-11 12:18:59 +00:00
|
|
|
if (!skip_residual_coding) {
|
2014-10-02 08:51:34 +00:00
|
|
|
const int tr_depth = depth - pred_cu->depth;
|
2021-12-08 09:48:46 +00:00
|
|
|
cabac_data_t* cabac = (cabac_data_t*)&state->search_cabac;
|
2022-03-21 06:42:41 +00:00
|
|
|
cabac_ctx_t *ctx = &(cabac->ctx.qt_cbf_model_cb[0]);
|
2021-12-08 09:48:46 +00:00
|
|
|
cabac->cur_ctx = ctx;
|
2016-05-22 07:08:11 +00:00
|
|
|
if (tr_depth == 0 || cbf_is_set(pred_cu->cbf, depth - 1, COLOR_U)) {
|
2021-12-08 09:48:46 +00:00
|
|
|
int u_is_set = cbf_is_set(pred_cu->cbf, depth, COLOR_U);
|
2021-12-13 10:23:16 +00:00
|
|
|
CABAC_FBITS_UPDATE(cabac, ctx, u_is_set, tr_tree_bits, "cbf_cb_search");
|
2021-08-19 11:27:55 +00:00
|
|
|
}
|
2021-03-24 08:03:55 +00:00
|
|
|
int is_set = cbf_is_set(pred_cu->cbf, depth, COLOR_U);
|
2022-03-21 06:42:41 +00:00
|
|
|
ctx = &(cabac->ctx.qt_cbf_model_cr[is_set]);
|
2016-05-22 07:08:11 +00:00
|
|
|
if (tr_depth == 0 || cbf_is_set(pred_cu->cbf, depth - 1, COLOR_V)) {
|
2021-12-08 09:48:46 +00:00
|
|
|
int v_is_set = cbf_is_set(pred_cu->cbf, depth, COLOR_V);
|
2021-12-13 10:23:16 +00:00
|
|
|
CABAC_FBITS_UPDATE(cabac, ctx, v_is_set, tr_tree_bits, "cbf_cb_search");
|
2021-08-19 11:27:55 +00:00
|
|
|
}
|
2014-10-02 08:51:34 +00:00
|
|
|
}
|
|
|
|
|
2021-08-19 11:27:55 +00:00
|
|
|
|
2021-05-07 06:27:20 +00:00
|
|
|
if (tr_cu->tr_depth > depth) {
|
2014-09-05 08:29:30 +00:00
|
|
|
int offset = LCU_WIDTH >> (depth + 1);
|
2021-12-20 07:36:23 +00:00
|
|
|
double sum = 0;
|
2014-09-05 08:29:30 +00:00
|
|
|
|
2022-04-28 11:18:09 +00:00
|
|
|
sum += uvg_cu_rd_cost_chroma(state, x_px, y_px, depth + 1, pred_cu, lcu);
|
|
|
|
sum += uvg_cu_rd_cost_chroma(state, x_px + offset, y_px, depth + 1, pred_cu, lcu);
|
|
|
|
sum += uvg_cu_rd_cost_chroma(state, x_px, y_px + offset, depth + 1, pred_cu, lcu);
|
|
|
|
sum += uvg_cu_rd_cost_chroma(state, x_px + offset, y_px + offset, depth + 1, pred_cu, lcu);
|
2014-05-19 09:17:42 +00:00
|
|
|
|
2016-08-21 04:16:59 +00:00
|
|
|
return sum + tr_tree_bits * state->lambda;
|
2014-09-05 08:29:30 +00:00
|
|
|
}
|
2014-05-19 09:17:42 +00:00
|
|
|
|
2021-08-19 11:27:55 +00:00
|
|
|
if (state->encoder_control->cfg.jccr) {
|
2021-08-20 09:19:37 +00:00
|
|
|
int cbf_mask = cbf_is_set(pred_cu->cbf, depth, COLOR_U) * 2 + cbf_is_set(pred_cu->cbf, depth, COLOR_V) - 1;
|
2022-04-28 07:39:13 +00:00
|
|
|
cabac_ctx_t* ctx = NULL;
|
2021-08-20 09:19:37 +00:00
|
|
|
if (cbf_mask != -1) {
|
2022-04-27 09:05:32 +00:00
|
|
|
cabac_data_t* cabac = (cabac_data_t*)&state->search_cabac;
|
|
|
|
ctx = &(cabac->ctx.joint_cb_cr[cbf_mask]);
|
|
|
|
CABAC_FBITS_UPDATE(cabac, ctx, 0, tr_tree_bits, "cbf_cb_search");
|
2021-08-20 09:19:37 +00:00
|
|
|
}
|
2021-08-19 11:27:55 +00:00
|
|
|
}
|
|
|
|
|
2014-04-07 11:36:01 +00:00
|
|
|
// Chroma SSD
|
2016-06-07 04:59:40 +00:00
|
|
|
int ssd = 0;
|
2017-02-05 09:59:21 +00:00
|
|
|
if (!state->encoder_control->cfg.lossless) {
|
2016-06-07 04:59:40 +00:00
|
|
|
int index = lcu_px.y * LCU_WIDTH_C + lcu_px.x;
|
2022-04-28 11:18:09 +00:00
|
|
|
int ssd_u = uvg_pixels_calc_ssd(&lcu->ref.u[index], &lcu->rec.u[index],
|
2016-06-07 04:59:40 +00:00
|
|
|
LCU_WIDTH_C, LCU_WIDTH_C,
|
|
|
|
width);
|
2022-04-28 11:18:09 +00:00
|
|
|
int ssd_v = uvg_pixels_calc_ssd(&lcu->ref.v[index], &lcu->rec.v[index],
|
2016-06-07 04:59:40 +00:00
|
|
|
LCU_WIDTH_C, LCU_WIDTH_C,
|
|
|
|
width);
|
|
|
|
ssd = ssd_u + ssd_v;
|
|
|
|
}
|
2014-04-04 10:09:02 +00:00
|
|
|
|
2022-01-28 10:26:12 +00:00
|
|
|
if (!skip_residual_coding)
|
2015-01-20 08:53:03 +00:00
|
|
|
{
|
2022-05-30 09:11:48 +00:00
|
|
|
int8_t scan_order = uvg_get_scan_order(pred_cu->type, pred_cu->intra.mode_chroma, depth);
|
2017-05-12 13:03:23 +00:00
|
|
|
const int index = xy_to_zorder(LCU_WIDTH_C, lcu_px.x, lcu_px.y);
|
|
|
|
|
2022-05-17 10:55:07 +00:00
|
|
|
coeff_bits += uvg_get_coeff_cost(state, &lcu->coeff.u[index], NULL, width, 2, scan_order, 0);
|
|
|
|
coeff_bits += uvg_get_coeff_cost(state, &lcu->coeff.v[index], NULL, width, 2, scan_order, 0);
|
2014-04-04 10:09:02 +00:00
|
|
|
}
|
|
|
|
|
2021-08-19 11:27:55 +00:00
|
|
|
|
2014-10-02 08:51:34 +00:00
|
|
|
double bits = tr_tree_bits + coeff_bits;
|
2021-08-13 12:37:23 +00:00
|
|
|
|
2022-05-30 09:11:48 +00:00
|
|
|
return (double)ssd * UVG_CHROMA_MULT + bits * state->c_lambda;
|
2014-03-11 13:01:50 +00:00
|
|
|
}
|
2014-02-25 11:06:22 +00:00
|
|
|
|
2021-12-20 07:36:23 +00:00
|
|
|
static double cu_rd_cost_tr_split_accurate(const encoder_state_t* const state,
|
2022-03-14 12:33:36 +00:00
|
|
|
const int x_px, const int y_px, const int depth,
|
|
|
|
const cu_info_t* const pred_cu,
|
|
|
|
lcu_t* const lcu) {
|
2021-12-20 07:36:23 +00:00
|
|
|
const int width = LCU_WIDTH >> depth;
|
|
|
|
|
2021-12-20 08:44:19 +00:00
|
|
|
const int skip_residual_coding = pred_cu->skipped || (pred_cu->type == CU_INTER && pred_cu->cbf == 0);
|
2021-12-20 07:36:23 +00:00
|
|
|
// cur_cu is used for TU parameters.
|
|
|
|
cu_info_t* const tr_cu = LCU_GET_CU_AT_PX(lcu, x_px, y_px);
|
|
|
|
|
|
|
|
double coeff_bits = 0;
|
|
|
|
double tr_tree_bits = 0;
|
|
|
|
|
|
|
|
// Check that lcu is not in
|
|
|
|
assert(x_px >= 0 && x_px < LCU_WIDTH);
|
|
|
|
assert(y_px >= 0 && y_px < LCU_WIDTH);
|
|
|
|
|
|
|
|
const uint8_t tr_depth = tr_cu->tr_depth - depth;
|
2021-08-13 12:37:23 +00:00
|
|
|
|
2022-05-25 10:47:02 +00:00
|
|
|
const int cb_flag_u = tr_cu->joint_cb_cr ? tr_cu->joint_cb_cr >> 1 : cbf_is_set(tr_cu->cbf, depth, COLOR_U);
|
|
|
|
const int cb_flag_v = tr_cu->joint_cb_cr ? tr_cu->joint_cb_cr & 1 : cbf_is_set(tr_cu->cbf, depth, COLOR_V);
|
2021-12-20 07:36:23 +00:00
|
|
|
|
|
|
|
cabac_data_t* cabac = (cabac_data_t*)&state->search_cabac;
|
|
|
|
|
2022-02-04 08:25:16 +00:00
|
|
|
{
|
|
|
|
int cbf = cbf_is_set_any(pred_cu->cbf, depth);
|
|
|
|
// Only need to signal coded block flag if not skipped or merged
|
|
|
|
// skip = no coded residual, merge = coded residual
|
|
|
|
if (pred_cu->type == CU_INTER && (pred_cu->part_size != SIZE_2Nx2N || !pred_cu->merged)) {
|
|
|
|
CABAC_FBITS_UPDATE(cabac, &(cabac->ctx.cu_qt_root_cbf_model), cbf, tr_tree_bits, "rqt_root_cbf");
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2021-12-20 07:36:23 +00:00
|
|
|
|
2022-05-25 10:47:02 +00:00
|
|
|
bool has_chroma = state->encoder_control->chroma_format != UVG_CSP_400 && (depth != 4 || (x_px % 8 && y_px % 8));
|
|
|
|
if( !skip_residual_coding && has_chroma) {
|
2021-12-20 08:44:19 +00:00
|
|
|
if(tr_cu->depth == depth || cbf_is_set(pred_cu->cbf, depth - 1, COLOR_U)) {
|
2022-03-21 06:42:41 +00:00
|
|
|
CABAC_FBITS_UPDATE(cabac, &(cabac->ctx.qt_cbf_model_cb[0]), cb_flag_u, tr_tree_bits, "cbf_cb");
|
2021-12-20 07:36:23 +00:00
|
|
|
}
|
2021-12-20 08:44:19 +00:00
|
|
|
if(tr_cu->depth == depth || cbf_is_set(pred_cu->cbf, depth - 1, COLOR_V)) {
|
2022-03-21 06:42:41 +00:00
|
|
|
CABAC_FBITS_UPDATE(cabac, &(cabac->ctx.qt_cbf_model_cr[cb_flag_u]), cb_flag_v, tr_tree_bits, "cbf_cr");
|
2021-12-20 07:36:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (tr_depth > 0) {
|
|
|
|
int offset = LCU_WIDTH >> (depth + 1);
|
|
|
|
double sum = 0;
|
|
|
|
|
2022-03-14 12:33:36 +00:00
|
|
|
sum += cu_rd_cost_tr_split_accurate(state, x_px, y_px, depth + 1, pred_cu, lcu);
|
|
|
|
sum += cu_rd_cost_tr_split_accurate(state, x_px + offset, y_px, depth + 1, pred_cu, lcu);
|
|
|
|
sum += cu_rd_cost_tr_split_accurate(state, x_px, y_px + offset, depth + 1, pred_cu, lcu);
|
|
|
|
sum += cu_rd_cost_tr_split_accurate(state, x_px + offset, y_px + offset, depth + 1, pred_cu, lcu);
|
2021-12-20 07:36:23 +00:00
|
|
|
return sum + tr_tree_bits * state->lambda;
|
|
|
|
}
|
|
|
|
const int cb_flag_y = cbf_is_set(tr_cu->cbf, depth, COLOR_Y) ;
|
|
|
|
|
|
|
|
// Add transform_tree cbf_luma bit cost.
|
|
|
|
const int is_tr_split = depth - tr_cu->depth;
|
2021-12-20 08:44:19 +00:00
|
|
|
if ((pred_cu->type == CU_INTRA ||
|
2021-12-20 07:36:23 +00:00
|
|
|
is_tr_split ||
|
|
|
|
cb_flag_u ||
|
2021-12-20 08:44:19 +00:00
|
|
|
cb_flag_v)
|
|
|
|
&& !skip_residual_coding)
|
2021-12-20 07:36:23 +00:00
|
|
|
{
|
2022-05-11 12:18:59 +00:00
|
|
|
cabac_ctx_t* ctx = &(cabac->ctx.qt_cbf_model_luma[0]);
|
2021-12-20 07:36:23 +00:00
|
|
|
|
|
|
|
CABAC_FBITS_UPDATE(cabac, ctx, cb_flag_y, tr_tree_bits, "cbf_y_search");
|
|
|
|
}
|
2022-03-23 11:39:38 +00:00
|
|
|
|
2022-05-25 10:47:02 +00:00
|
|
|
if (cb_flag_y || cb_flag_u || cb_flag_v) {
|
2022-03-23 11:39:38 +00:00
|
|
|
// TODO qp_delta_sign_flag
|
|
|
|
|
2022-05-25 10:47:02 +00:00
|
|
|
if ((cb_flag_u || cb_flag_v) && has_chroma && state->encoder_control->cfg.jccr) {
|
2022-03-23 11:39:38 +00:00
|
|
|
CABAC_FBITS_UPDATE(cabac, &cabac->ctx.joint_cb_cr[cb_flag_u * 2 + cb_flag_v - 1], tr_cu->joint_cb_cr != 0, tr_tree_bits, "tu_joint_cbcr_residual_flag");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-12-20 07:36:23 +00:00
|
|
|
// SSD between reconstruction and original
|
|
|
|
unsigned luma_ssd = 0;
|
|
|
|
if (!state->encoder_control->cfg.lossless) {
|
|
|
|
int index = y_px * LCU_WIDTH + x_px;
|
2022-05-30 09:11:48 +00:00
|
|
|
luma_ssd = uvg_pixels_calc_ssd(&lcu->ref.y[index], &lcu->rec.y[index],
|
2021-12-20 07:36:23 +00:00
|
|
|
LCU_WIDTH, LCU_WIDTH,
|
|
|
|
width);
|
|
|
|
}
|
2022-06-02 10:36:20 +00:00
|
|
|
const bool can_use_tr_skip = state->encoder_control->cfg.trskip_enable && width <= (1 << state->encoder_control->cfg.trskip_max_size);
|
2021-12-20 07:36:23 +00:00
|
|
|
|
2022-05-13 12:04:03 +00:00
|
|
|
if(cb_flag_y){
|
2022-06-02 10:36:20 +00:00
|
|
|
if (can_use_tr_skip) {
|
2022-05-13 12:04:03 +00:00
|
|
|
CABAC_FBITS_UPDATE(cabac, &cabac->ctx.transform_skip_model_luma, tr_cu->tr_idx == MTS_SKIP, tr_tree_bits, "transform_skip_flag");
|
|
|
|
}
|
2022-05-30 09:11:48 +00:00
|
|
|
int8_t luma_scan_mode = uvg_get_scan_order(pred_cu->type, pred_cu->intra.mode, depth);
|
2021-12-20 07:36:23 +00:00
|
|
|
const coeff_t* coeffs = &lcu->coeff.y[xy_to_zorder(LCU_WIDTH, x_px, y_px)];
|
|
|
|
|
2022-05-25 10:47:02 +00:00
|
|
|
coeff_bits += uvg_get_coeff_cost(state, coeffs, tr_cu, width, 0, luma_scan_mode, tr_cu->tr_skip & 1);
|
2021-12-20 07:36:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
unsigned chroma_ssd = 0;
|
2022-05-25 10:47:02 +00:00
|
|
|
if(has_chroma) {
|
2022-03-29 06:27:56 +00:00
|
|
|
const vector2d_t lcu_px = { (x_px & ~7 ) / 2, (y_px & ~7) / 2 };
|
|
|
|
const int chroma_width = MAX(4, LCU_WIDTH >> (depth + 1));
|
2022-05-30 09:11:48 +00:00
|
|
|
int8_t scan_order = uvg_get_scan_order(pred_cu->type, pred_cu->intra.mode_chroma, depth);
|
2022-03-23 11:39:38 +00:00
|
|
|
const unsigned index = xy_to_zorder(LCU_WIDTH_C, lcu_px.x, lcu_px.y);
|
2022-06-03 10:28:40 +00:00
|
|
|
|
|
|
|
const bool chroma_can_use_tr_skip = state->encoder_control->cfg.trskip_enable && chroma_width <= (1 << state->encoder_control->cfg.trskip_max_size);
|
2022-03-28 11:08:35 +00:00
|
|
|
if(pred_cu->joint_cb_cr == 0) {
|
2022-03-23 11:39:38 +00:00
|
|
|
if (!state->encoder_control->cfg.lossless) {
|
|
|
|
int index = lcu_px.y * LCU_WIDTH_C + lcu_px.x;
|
2022-05-30 09:11:48 +00:00
|
|
|
unsigned ssd_u = uvg_pixels_calc_ssd(&lcu->ref.u[index], &lcu->rec.u[index],
|
2022-03-23 11:39:38 +00:00
|
|
|
LCU_WIDTH_C, LCU_WIDTH_C,
|
|
|
|
chroma_width);
|
2022-05-30 09:11:48 +00:00
|
|
|
unsigned ssd_v = uvg_pixels_calc_ssd(&lcu->ref.v[index], &lcu->rec.v[index],
|
2022-03-23 11:39:38 +00:00
|
|
|
LCU_WIDTH_C, LCU_WIDTH_C,
|
|
|
|
chroma_width);
|
|
|
|
chroma_ssd = ssd_u + ssd_v;
|
2022-06-02 10:36:20 +00:00
|
|
|
}
|
2022-06-03 10:28:40 +00:00
|
|
|
if(chroma_can_use_tr_skip && cb_flag_u) {
|
2022-06-02 10:36:20 +00:00
|
|
|
CABAC_FBITS_UPDATE(cabac, &cabac->ctx.transform_skip_model_chroma, tr_cu->tr_skip & 2, tr_tree_bits, "transform_skip_flag");
|
|
|
|
}
|
2022-06-03 10:28:40 +00:00
|
|
|
if(chroma_can_use_tr_skip && cb_flag_v) {
|
2022-06-02 10:36:20 +00:00
|
|
|
CABAC_FBITS_UPDATE(cabac, &cabac->ctx.transform_skip_model_chroma, tr_cu->tr_skip & 4, tr_tree_bits, "transform_skip_flag");
|
|
|
|
}
|
2022-05-25 10:47:02 +00:00
|
|
|
coeff_bits += kvz_get_coeff_cost(state, &lcu->coeff.u[index], NULL, chroma_width, COLOR_U, scan_order, tr_cu->tr_skip & 2);
|
|
|
|
coeff_bits += kvz_get_coeff_cost(state, &lcu->coeff.v[index], NULL, chroma_width, COLOR_V, scan_order, tr_cu->tr_skip & 4);
|
|
|
|
|
|
|
|
}
|
|
|
|
else {
|
2022-03-23 11:39:38 +00:00
|
|
|
{
|
2022-05-25 10:47:02 +00:00
|
|
|
int index = lcu_px.y * LCU_WIDTH_C + lcu_px.x;
|
|
|
|
int ssd_u_joint = uvg_pixels_calc_ssd(&lcu->ref.u[index], &lcu->rec.joint_u[index],
|
|
|
|
LCU_WIDTH_C, LCU_WIDTH_C,
|
|
|
|
chroma_width);
|
|
|
|
int ssd_v_joint = uvg_pixels_calc_ssd(&lcu->ref.v[index], &lcu->rec.joint_v[index],
|
|
|
|
LCU_WIDTH_C, LCU_WIDTH_C,
|
|
|
|
chroma_width);
|
|
|
|
chroma_ssd = ssd_u_joint + ssd_v_joint;
|
2022-03-23 11:39:38 +00:00
|
|
|
}
|
2022-05-25 10:47:02 +00:00
|
|
|
coeff_bits += uvg_get_coeff_cost(state, &lcu->coeff.joint_uv[index], NULL, chroma_width, COLOR_U, scan_order, 0);
|
2021-08-16 12:39:14 +00:00
|
|
|
}
|
2016-06-07 04:59:40 +00:00
|
|
|
}
|
2022-05-13 12:04:03 +00:00
|
|
|
if (kvz_is_mts_allowed(state, tr_cu)) {
|
|
|
|
|
|
|
|
bool symbol = tr_cu->tr_idx != 0;
|
|
|
|
int ctx_idx = 0;
|
2022-05-16 09:50:37 +00:00
|
|
|
CABAC_FBITS_UPDATE(cabac, &cabac->ctx.mts_idx_model[ctx_idx], symbol, tr_tree_bits, "mts_idx");
|
2022-05-13 12:04:03 +00:00
|
|
|
|
|
|
|
ctx_idx++;
|
|
|
|
for (int i = 0; i < 3 && symbol; i++, ctx_idx++)
|
|
|
|
{
|
|
|
|
symbol = tr_cu->tr_idx > i + MTS_DST7_DST7 ? 1 : 0;
|
2022-05-16 09:50:37 +00:00
|
|
|
CABAC_FBITS_UPDATE(cabac, &cabac->ctx.mts_idx_model[ctx_idx], symbol, tr_tree_bits, "mts_idx");
|
2022-05-13 12:04:03 +00:00
|
|
|
}
|
2022-05-16 11:49:09 +00:00
|
|
|
tr_cu->mts_last_scan_pos = false;
|
|
|
|
tr_cu->violates_mts_coeff_constraint = false;
|
2022-05-13 12:04:03 +00:00
|
|
|
}
|
2014-04-04 10:09:02 +00:00
|
|
|
|
2022-03-23 11:39:38 +00:00
|
|
|
double bits = tr_tree_bits + coeff_bits;
|
2022-05-30 09:11:48 +00:00
|
|
|
return luma_ssd * UVG_LUMA_MULT + chroma_ssd * UVG_CHROMA_MULT + bits * state->lambda;
|
2022-03-23 11:39:38 +00:00
|
|
|
}
|
2021-12-20 07:36:23 +00:00
|
|
|
|
2022-03-23 11:39:38 +00:00
|
|
|
|
2022-05-30 09:11:48 +00:00
|
|
|
void uvg_select_jccr_mode(
|
2022-03-23 11:39:38 +00:00
|
|
|
const encoder_state_t* const state,
|
|
|
|
const int x_px,
|
|
|
|
const int y_px,
|
|
|
|
const int depth,
|
|
|
|
cu_info_t* pred_cu,
|
|
|
|
lcu_t* const lcu,
|
|
|
|
double* cost_out)
|
|
|
|
{
|
|
|
|
const vector2d_t lcu_px = { (SUB_SCU(x_px) & ~7) / 2, (SUB_SCU(y_px) & ~7) / 2 };
|
|
|
|
const int width = (depth < MAX_DEPTH) ? LCU_WIDTH >> (depth + 1) : LCU_WIDTH >> depth;
|
2022-04-21 06:46:54 +00:00
|
|
|
if (pred_cu == NULL) pred_cu = LCU_GET_CU_AT_PX(lcu, SUB_SCU(x_px), SUB_SCU(y_px));
|
2022-03-23 11:39:38 +00:00
|
|
|
assert(pred_cu->depth == pred_cu->tr_depth && "jccr does not support transform splitting");
|
|
|
|
if (cost_out == NULL && pred_cu->joint_cb_cr == 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
double tr_tree_bits = 0;
|
|
|
|
double joint_cbcr_tr_tree_bits = 0;
|
|
|
|
double coeff_bits = 0;
|
|
|
|
double joint_coeff_bits = 0;
|
|
|
|
|
|
|
|
assert(lcu_px.x >= 0 && lcu_px.x < LCU_WIDTH_C);
|
|
|
|
assert(lcu_px.y >= 0 && lcu_px.y < LCU_WIDTH_C);
|
|
|
|
|
|
|
|
if (depth == 4 && (x_px % 8 == 0 || y_px % 8 == 0)) {
|
|
|
|
// For MAX_PU_DEPTH calculate chroma for previous depth for the first
|
|
|
|
// block and return 0 cost for all others.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
cabac_data_t* cabac = (cabac_data_t*)&state->search_cabac;
|
|
|
|
cabac_ctx_t* ctx = &(cabac->ctx.qt_cbf_model_cb[0]);
|
|
|
|
cabac->cur_ctx = ctx;
|
|
|
|
int u_is_set = cbf_is_set(pred_cu->cbf, depth, COLOR_U);
|
|
|
|
CABAC_FBITS_UPDATE(cabac, ctx, u_is_set, tr_tree_bits, "cbf_cb_search");
|
|
|
|
ctx = &(cabac->ctx.qt_cbf_model_cr[u_is_set]);
|
|
|
|
int v_is_set = cbf_is_set(pred_cu->cbf, depth, COLOR_V);
|
|
|
|
CABAC_FBITS_UPDATE(cabac, ctx, v_is_set, tr_tree_bits, "cbf_cr_search");
|
|
|
|
|
2022-04-20 05:12:42 +00:00
|
|
|
int cbf_mask = u_is_set * 2 + v_is_set - 1;
|
2022-03-31 12:19:32 +00:00
|
|
|
if((cbf_mask != -1 && pred_cu->type == CU_INTRA) || cbf_mask == 2)
|
2022-03-23 11:39:38 +00:00
|
|
|
CABAC_FBITS_UPDATE(cabac, &(cabac->ctx.joint_cb_cr[cbf_mask]), 0, tr_tree_bits, "jccr_flag");
|
|
|
|
|
|
|
|
if(pred_cu->joint_cb_cr) {
|
2022-04-20 05:12:42 +00:00
|
|
|
const int u_jccr = (pred_cu->joint_cb_cr >> 1) & 1;
|
2022-03-23 11:39:38 +00:00
|
|
|
ctx = &(cabac->ctx.qt_cbf_model_cb[0]);
|
2022-04-20 05:12:42 +00:00
|
|
|
CABAC_FBITS_UPDATE(cabac, ctx, u_jccr, joint_cbcr_tr_tree_bits, "cbf_cb_search");
|
|
|
|
ctx = &(cabac->ctx.qt_cbf_model_cr[u_jccr]);
|
|
|
|
CABAC_FBITS_UPDATE(cabac, ctx, pred_cu->joint_cb_cr & 1, joint_cbcr_tr_tree_bits, "cbf_cr_search");
|
|
|
|
cbf_mask = pred_cu->joint_cb_cr - 1;
|
2022-03-23 11:39:38 +00:00
|
|
|
CABAC_FBITS_UPDATE(cabac, &(cabac->ctx.joint_cb_cr[cbf_mask]), 1, joint_cbcr_tr_tree_bits, "jccr_flag");
|
|
|
|
}
|
2022-04-21 06:46:54 +00:00
|
|
|
unsigned ssd = 0;
|
|
|
|
unsigned joint_ssd = 0;
|
2022-03-23 11:39:38 +00:00
|
|
|
if (!state->encoder_control->cfg.lossless) {
|
2022-04-21 06:46:54 +00:00
|
|
|
const int index = lcu_px.y * LCU_WIDTH_C + lcu_px.x;
|
2022-05-30 09:11:48 +00:00
|
|
|
const unsigned ssd_u = uvg_pixels_calc_ssd(&lcu->ref.u[index], &lcu->rec.u[index],
|
2022-03-23 11:39:38 +00:00
|
|
|
LCU_WIDTH_C, LCU_WIDTH_C,
|
|
|
|
width);
|
2022-05-30 09:11:48 +00:00
|
|
|
const unsigned ssd_v = uvg_pixels_calc_ssd(&lcu->ref.v[index], &lcu->rec.v[index],
|
2022-03-23 11:39:38 +00:00
|
|
|
LCU_WIDTH_C, LCU_WIDTH_C,
|
|
|
|
width);
|
|
|
|
ssd = ssd_u + ssd_v;
|
|
|
|
|
|
|
|
if (pred_cu->joint_cb_cr) {
|
2022-05-30 09:11:48 +00:00
|
|
|
const unsigned ssd_u_joint = uvg_pixels_calc_ssd(&lcu->ref.u[index], &lcu->rec.joint_u[index],
|
2022-03-23 11:39:38 +00:00
|
|
|
LCU_WIDTH_C, LCU_WIDTH_C,
|
|
|
|
width);
|
2022-05-30 09:11:48 +00:00
|
|
|
const unsigned ssd_v_joint = uvg_pixels_calc_ssd(&lcu->ref.v[index], &lcu->rec.joint_v[index],
|
2022-03-23 11:39:38 +00:00
|
|
|
LCU_WIDTH_C, LCU_WIDTH_C,
|
|
|
|
width);
|
|
|
|
joint_ssd = ssd_u_joint + ssd_v_joint;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-20 08:53:03 +00:00
|
|
|
{
|
2022-04-28 11:18:09 +00:00
|
|
|
int8_t scan_order = uvg_get_scan_order(pred_cu->type, pred_cu->intra.mode_chroma, depth);
|
2017-05-12 13:03:23 +00:00
|
|
|
const int index = xy_to_zorder(LCU_WIDTH_C, lcu_px.x, lcu_px.y);
|
|
|
|
|
2022-05-17 10:55:07 +00:00
|
|
|
if (u_is_set) coeff_bits += uvg_get_coeff_cost(state, &lcu->coeff.u[index], NULL, width, 2, scan_order, 0);
|
|
|
|
if (v_is_set) coeff_bits += uvg_get_coeff_cost(state, &lcu->coeff.v[index], NULL, width, 2, scan_order, 0);
|
2022-03-23 11:39:38 +00:00
|
|
|
|
2022-05-17 10:55:07 +00:00
|
|
|
joint_coeff_bits += uvg_get_coeff_cost(state, &lcu->coeff.joint_uv[index], NULL, width, 2, scan_order, 0);
|
2014-04-04 10:09:02 +00:00
|
|
|
}
|
|
|
|
|
2021-08-19 11:27:55 +00:00
|
|
|
|
2014-10-02 08:51:34 +00:00
|
|
|
double bits = tr_tree_bits + coeff_bits;
|
2021-08-19 11:27:55 +00:00
|
|
|
double joint_bits = joint_cbcr_tr_tree_bits + joint_coeff_bits;
|
2021-08-13 12:37:23 +00:00
|
|
|
|
2022-05-30 09:11:48 +00:00
|
|
|
double cost = (double)ssd * UVG_CHROMA_MULT + bits * state->c_lambda;
|
|
|
|
double joint_cost = (double)joint_ssd * UVG_CHROMA_MULT + joint_bits * state->c_lambda;
|
2021-08-16 12:39:14 +00:00
|
|
|
if ((cost < joint_cost || !pred_cu->joint_cb_cr) || !state->encoder_control->cfg.jccr) {
|
2021-08-19 11:27:55 +00:00
|
|
|
pred_cu->joint_cb_cr = 0;
|
2022-03-23 11:39:38 +00:00
|
|
|
if (cost_out) *cost_out += cost;
|
|
|
|
return;
|
2021-08-13 12:37:23 +00:00
|
|
|
}
|
|
|
|
cbf_clear(&pred_cu->cbf, depth, COLOR_U);
|
|
|
|
cbf_clear(&pred_cu->cbf, depth, COLOR_V);
|
2022-04-20 05:12:42 +00:00
|
|
|
if (pred_cu->joint_cb_cr & 2) {
|
2021-08-13 12:37:23 +00:00
|
|
|
cbf_set(&pred_cu->cbf, depth, COLOR_U);
|
|
|
|
}
|
2022-04-20 05:12:42 +00:00
|
|
|
if (pred_cu->joint_cb_cr & 1) {
|
2021-08-13 12:37:23 +00:00
|
|
|
cbf_set(&pred_cu->cbf, depth, COLOR_V);
|
|
|
|
}
|
|
|
|
int lcu_width = LCU_WIDTH_C;
|
|
|
|
const int index = lcu_px.x + lcu_px.y * lcu_width;
|
2022-04-28 11:18:09 +00:00
|
|
|
uvg_pixels_blit(&lcu->rec.joint_u[index], &lcu->rec.u[index], width, width, lcu_width, lcu_width);
|
|
|
|
uvg_pixels_blit(&lcu->rec.joint_v[index], &lcu->rec.v[index], width, width, lcu_width, lcu_width);
|
2022-03-23 11:39:38 +00:00
|
|
|
if (cost_out) *cost_out += joint_cost;
|
2014-03-11 13:01:50 +00:00
|
|
|
}
|
2014-02-25 11:06:22 +00:00
|
|
|
|
2014-05-19 09:17:42 +00:00
|
|
|
|
2015-01-14 08:44:52 +00:00
|
|
|
// Return estimate of bits used to code prediction mode of cur_cu.
|
2015-03-04 15:00:23 +00:00
|
|
|
static double calc_mode_bits(const encoder_state_t *state,
|
2016-01-15 08:51:40 +00:00
|
|
|
const lcu_t *lcu,
|
2015-03-04 11:15:45 +00:00
|
|
|
const cu_info_t * cur_cu,
|
2021-05-07 06:27:20 +00:00
|
|
|
int x, int y, int depth)
|
2015-01-14 08:44:52 +00:00
|
|
|
{
|
2016-03-21 09:50:41 +00:00
|
|
|
assert(cur_cu->type == CU_INTRA);
|
2016-01-15 08:51:40 +00:00
|
|
|
|
2022-05-30 09:11:48 +00:00
|
|
|
double mode_bits = uvg_luma_mode_bits(state, cur_cu, x, y, depth, lcu);
|
2016-08-25 13:05:46 +00:00
|
|
|
|
2022-04-28 11:18:09 +00:00
|
|
|
if (((depth == 4 && x % 8 && y % 8) || (depth != 4)) && state->encoder_control->chroma_format != UVG_CSP_400) {
|
|
|
|
mode_bits += uvg_chroma_mode_bits(state, cur_cu->intra.mode_chroma, cur_cu->intra.mode);
|
2015-01-14 08:44:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return mode_bits;
|
|
|
|
}
|
2014-05-19 10:18:06 +00:00
|
|
|
|
2015-07-21 11:28:50 +00:00
|
|
|
|
2022-05-30 09:11:48 +00:00
|
|
|
// TODO: replace usages of this by the uvg_sort_indices_by_cost function.
|
2019-07-06 18:34:29 +00:00
|
|
|
/**
|
|
|
|
* \brief Sort modes and costs to ascending order according to costs.
|
|
|
|
*/
|
2022-04-28 11:18:09 +00:00
|
|
|
void uvg_sort_modes(int8_t *__restrict modes, double *__restrict costs, uint8_t length)
|
2019-07-06 18:34:29 +00:00
|
|
|
{
|
|
|
|
// Length for intra is always between 5 and 23, and is either 21, 17, 9 or 8 about
|
|
|
|
// 60% of the time, so there should be no need for anything more complex
|
|
|
|
// than insertion sort.
|
|
|
|
// Length for merge is 5 or less.
|
|
|
|
for (uint8_t i = 1; i < length; ++i) {
|
|
|
|
const double cur_cost = costs[i];
|
|
|
|
const int8_t cur_mode = modes[i];
|
|
|
|
uint8_t j = i;
|
|
|
|
while (j > 0 && cur_cost < costs[j - 1]) {
|
|
|
|
costs[j] = costs[j - 1];
|
|
|
|
modes[j] = modes[j - 1];
|
|
|
|
--j;
|
|
|
|
}
|
|
|
|
costs[j] = cur_cost;
|
|
|
|
modes[j] = cur_mode;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-10 09:01:58 +00:00
|
|
|
/**
|
|
|
|
* \brief Sort modes and costs to ascending order according to costs.
|
|
|
|
*/
|
2022-04-28 11:18:09 +00:00
|
|
|
void uvg_sort_modes_intra_luma(int8_t *__restrict modes, int8_t *__restrict trafo, double *__restrict costs, uint8_t length)
|
2021-02-10 09:01:58 +00:00
|
|
|
{
|
|
|
|
// Length for intra is always between 5 and 23, and is either 21, 17, 9 or 8 about
|
|
|
|
// 60% of the time, so there should be no need for anything more complex
|
|
|
|
// than insertion sort.
|
|
|
|
// Length for merge is 5 or less.
|
|
|
|
for (uint8_t i = 1; i < length; ++i) {
|
|
|
|
const double cur_cost = costs[i];
|
|
|
|
const int8_t cur_mode = modes[i];
|
|
|
|
const int8_t cur_tr = trafo[i];
|
|
|
|
uint8_t j = i;
|
|
|
|
while (j > 0 && cur_cost < costs[j - 1]) {
|
|
|
|
costs[j] = costs[j - 1];
|
|
|
|
modes[j] = modes[j - 1];
|
|
|
|
trafo[j] = trafo[j - 1];
|
|
|
|
--j;
|
|
|
|
}
|
|
|
|
costs[j] = cur_cost;
|
|
|
|
modes[j] = cur_mode;
|
|
|
|
trafo[j] = cur_tr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-28 21:40:16 +00:00
|
|
|
/**
|
2021-12-02 18:23:21 +00:00
|
|
|
* \brief Sort keys (indices) to ascending order according to costs.
|
2021-11-28 21:40:16 +00:00
|
|
|
*/
|
2022-05-30 09:11:48 +00:00
|
|
|
void uvg_sort_keys_by_cost(unit_stats_map_t *__restrict map)
|
2015-01-14 09:16:34 +00:00
|
|
|
{
|
2021-11-28 21:40:16 +00:00
|
|
|
// Size of sorted arrays is expected to be "small". No need for faster algorithm.
|
|
|
|
for (uint8_t i = 1; i < map->size; ++i) {
|
2021-12-02 18:23:21 +00:00
|
|
|
const int8_t cur_indx = map->keys[i];
|
2021-11-30 17:15:36 +00:00
|
|
|
const double cur_cost = map->cost[cur_indx];
|
2021-11-28 21:40:16 +00:00
|
|
|
uint8_t j = i;
|
2021-12-02 18:23:21 +00:00
|
|
|
while (j > 0 && cur_cost < map->cost[map->keys[j - 1]]) {
|
|
|
|
map->keys[j] = map->keys[j - 1];
|
2021-11-28 21:40:16 +00:00
|
|
|
--j;
|
|
|
|
}
|
2021-12-02 18:23:21 +00:00
|
|
|
map->keys[j] = cur_indx;
|
2021-11-28 21:40:16 +00:00
|
|
|
}
|
2015-01-14 09:16:34 +00:00
|
|
|
}
|
|
|
|
|
2019-07-06 18:34:29 +00:00
|
|
|
|
2014-02-25 11:06:22 +00:00
|
|
|
/**
|
|
|
|
* Search every mode from 0 to MAX_PU_DEPTH and return cost of best mode.
|
|
|
|
* - The recursion is started at depth 0 and goes in Z-order to MAX_PU_DEPTH.
|
|
|
|
* - Data structure work_tree is maintained such that the neighbouring SCUs
|
|
|
|
* and pixels to the left and up of current CU are the final CUs decided
|
|
|
|
* via the search. This is done by copying the relevant data to all
|
|
|
|
* relevant levels whenever a decision is made whether to split or not.
|
|
|
|
* - All the final data for the LCU gets eventually copied to depth 0, which
|
|
|
|
* will be the final output of the recursion.
|
|
|
|
*/
|
2017-07-28 06:27:02 +00:00
|
|
|
static double search_cu(encoder_state_t * const state, int x, int y, int depth, lcu_t *work_tree)
|
2014-02-25 11:06:22 +00:00
|
|
|
{
|
2015-03-04 15:00:23 +00:00
|
|
|
const encoder_control_t* ctrl = state->encoder_control;
|
|
|
|
const videoframe_t * const frame = state->tile->frame;
|
2014-02-25 11:06:22 +00:00
|
|
|
int cu_width = LCU_WIDTH >> depth;
|
2021-11-26 17:32:45 +00:00
|
|
|
double cost = MAX_DOUBLE;
|
|
|
|
double inter_zero_coeff_cost = MAX_DOUBLE;
|
2021-12-13 08:43:19 +00:00
|
|
|
double inter_bitcost = MAX_INT;
|
2015-03-04 11:15:45 +00:00
|
|
|
cu_info_t *cur_cu;
|
2021-12-03 07:09:57 +00:00
|
|
|
cabac_data_t pre_search_cabac;
|
|
|
|
memcpy(&pre_search_cabac, &state->search_cabac, sizeof(pre_search_cabac));
|
2014-10-15 19:11:45 +00:00
|
|
|
|
2021-11-05 11:13:11 +00:00
|
|
|
const uint32_t ctu_row = (y >> LOG2_LCU_WIDTH);
|
|
|
|
const uint32_t ctu_row_mul_five = ctu_row * MAX_NUM_HMVP_CANDS;
|
|
|
|
|
|
|
|
cu_info_t hmvp_lut[MAX_NUM_HMVP_CANDS];
|
2021-11-25 18:21:13 +00:00
|
|
|
uint8_t hmvp_lut_size = state->tile->frame->hmvp_size[ctu_row];
|
2021-11-05 11:13:11 +00:00
|
|
|
|
|
|
|
// Store original HMVP lut before search and restore after, since it's modified
|
2022-04-28 11:18:09 +00:00
|
|
|
if (state->frame->slicetype != UVG_SLICE_I) memcpy(hmvp_lut, &state->tile->frame->hmvp_lut[ctu_row_mul_five], sizeof(cu_info_t) * MAX_NUM_HMVP_CANDS);
|
2021-11-05 11:13:11 +00:00
|
|
|
|
2019-08-28 15:45:58 +00:00
|
|
|
struct {
|
2020-01-27 11:11:31 +00:00
|
|
|
int32_t min;
|
|
|
|
int32_t max;
|
2019-08-28 15:45:58 +00:00
|
|
|
} pu_depth_inter, pu_depth_intra;
|
|
|
|
|
2014-10-15 19:11:45 +00:00
|
|
|
lcu_t *const lcu = &work_tree[depth];
|
|
|
|
|
2015-09-02 07:55:19 +00:00
|
|
|
int x_local = SUB_SCU(x);
|
|
|
|
int y_local = SUB_SCU(y);
|
2014-03-06 16:14:01 +00:00
|
|
|
|
2014-02-25 11:06:22 +00:00
|
|
|
// Stop recursion if the CU is completely outside the frame.
|
2014-06-05 12:54:58 +00:00
|
|
|
if (x >= frame->width || y >= frame->height) {
|
2014-02-25 11:06:22 +00:00
|
|
|
// Return zero cost because this CU does not have to be coded.
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-03-18 09:03:33 +00:00
|
|
|
int gop_layer = ctrl->cfg.gop_len != 0 ? ctrl->cfg.gop[state->frame->gop_offset].layer - 1 : 0;
|
2020-03-17 15:57:18 +00:00
|
|
|
|
2019-08-28 15:45:58 +00:00
|
|
|
// Assign correct depth limit
|
|
|
|
constraint_t* constr = state->constraint;
|
2021-12-21 15:04:47 +00:00
|
|
|
if(constr->ml_intra_depth_ctu) {
|
2020-01-27 11:11:31 +00:00
|
|
|
pu_depth_intra.min = constr->ml_intra_depth_ctu->_mat_upper_depth[(x_local >> 3) + (y_local >> 3) * 8];
|
|
|
|
pu_depth_intra.max = constr->ml_intra_depth_ctu->_mat_lower_depth[(x_local >> 3) + (y_local >> 3) * 8];
|
2019-08-28 15:45:58 +00:00
|
|
|
}
|
|
|
|
else {
|
2020-03-17 15:57:18 +00:00
|
|
|
pu_depth_intra.min = ctrl->cfg.pu_depth_intra.min[gop_layer] >= 0 ? ctrl->cfg.pu_depth_intra.min[gop_layer] : ctrl->cfg.pu_depth_intra.min[0];
|
|
|
|
pu_depth_intra.max = ctrl->cfg.pu_depth_intra.max[gop_layer] >= 0 ? ctrl->cfg.pu_depth_intra.max[gop_layer] : ctrl->cfg.pu_depth_intra.max[0];
|
2019-08-28 15:45:58 +00:00
|
|
|
}
|
2020-03-17 15:57:18 +00:00
|
|
|
pu_depth_inter.min = ctrl->cfg.pu_depth_inter.min[gop_layer] >= 0 ? ctrl->cfg.pu_depth_inter.min[gop_layer] : ctrl->cfg.pu_depth_inter.min[0];
|
|
|
|
pu_depth_inter.max = ctrl->cfg.pu_depth_inter.max[gop_layer] >= 0 ? ctrl->cfg.pu_depth_inter.max[gop_layer] : ctrl->cfg.pu_depth_inter.max[0];
|
2019-08-28 15:45:58 +00:00
|
|
|
|
2017-06-05 12:24:22 +00:00
|
|
|
cur_cu = LCU_GET_CU_AT_PX(lcu, x_local, y_local);
|
2014-02-27 08:38:48 +00:00
|
|
|
// Assign correct depth
|
2021-02-02 09:09:43 +00:00
|
|
|
cur_cu->depth = (depth > MAX_DEPTH) ? MAX_DEPTH : depth;
|
|
|
|
cur_cu->tr_depth = (depth > 0) ? depth : 1;
|
2014-03-11 17:19:20 +00:00
|
|
|
cur_cu->type = CU_NOTSET;
|
2015-11-03 08:32:37 +00:00
|
|
|
cur_cu->part_size = SIZE_2Nx2N;
|
2017-05-08 07:54:06 +00:00
|
|
|
cur_cu->qp = state->qp;
|
2019-05-29 10:00:19 +00:00
|
|
|
cur_cu->bdpcmMode = 0;
|
2021-02-02 09:09:43 +00:00
|
|
|
cur_cu->tr_idx = 0;
|
|
|
|
cur_cu->violates_mts_coeff_constraint = 0;
|
|
|
|
cur_cu->mts_last_scan_pos = 0;
|
2022-03-16 10:52:18 +00:00
|
|
|
cur_cu->violates_lfnst_constrained[0] = 0;
|
|
|
|
cur_cu->violates_lfnst_constrained[1] = 0;
|
|
|
|
cur_cu->lfnst_last_scan_pos = 0;
|
|
|
|
cur_cu->lfnst_idx = 0;
|
2021-08-13 12:37:23 +00:00
|
|
|
cur_cu->joint_cb_cr = 0;
|
2017-04-27 07:07:45 +00:00
|
|
|
|
2014-02-25 11:06:22 +00:00
|
|
|
// If the CU is completely inside the frame at this depth, search for
|
|
|
|
// prediction modes at this depth.
|
2014-06-05 12:54:58 +00:00
|
|
|
if (x + cu_width <= frame->width &&
|
|
|
|
y + cu_width <= frame->height)
|
2014-02-25 11:06:22 +00:00
|
|
|
{
|
2019-08-28 15:45:58 +00:00
|
|
|
int cu_width_inter_min = LCU_WIDTH >> pu_depth_inter.max;
|
2018-01-10 12:21:48 +00:00
|
|
|
bool can_use_inter =
|
2022-04-28 11:18:09 +00:00
|
|
|
state->frame->slicetype != UVG_SLICE_I &&
|
2018-01-10 12:21:48 +00:00
|
|
|
depth <= MAX_DEPTH &&
|
|
|
|
(
|
2019-08-28 15:45:58 +00:00
|
|
|
WITHIN(depth, pu_depth_inter.min, pu_depth_inter.max) ||
|
2018-01-10 12:21:48 +00:00
|
|
|
// When the split was forced because the CTU is partially outside the
|
|
|
|
// frame, we permit inter coding even if pu_depth_inter would
|
|
|
|
// otherwise forbid it.
|
|
|
|
(x & ~(cu_width_inter_min - 1)) + cu_width_inter_min > frame->width ||
|
|
|
|
(y & ~(cu_width_inter_min - 1)) + cu_width_inter_min > frame->height
|
|
|
|
);
|
2015-11-03 08:32:37 +00:00
|
|
|
|
|
|
|
if (can_use_inter) {
|
2016-03-21 09:50:41 +00:00
|
|
|
double mode_cost;
|
2021-12-13 08:43:19 +00:00
|
|
|
double mode_bitcost;
|
2022-04-28 11:18:09 +00:00
|
|
|
uvg_search_cu_inter(state,
|
2016-03-21 09:50:41 +00:00
|
|
|
x, y,
|
|
|
|
depth,
|
2017-06-05 12:24:22 +00:00
|
|
|
lcu,
|
2016-03-21 09:50:41 +00:00
|
|
|
&mode_cost, &mode_bitcost);
|
2014-03-03 15:42:44 +00:00
|
|
|
if (mode_cost < cost) {
|
2014-02-25 11:06:22 +00:00
|
|
|
cost = mode_cost;
|
2016-03-21 09:50:41 +00:00
|
|
|
inter_bitcost = mode_bitcost;
|
2014-02-26 15:50:09 +00:00
|
|
|
cur_cu->type = CU_INTER;
|
2014-02-25 11:06:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-14 12:11:12 +00:00
|
|
|
// Try to skip intra search in rd==0 mode.
|
|
|
|
// This can be quite severe on bdrate. It might be better to do this
|
|
|
|
// decision after reconstructing the inter frame.
|
2019-07-06 18:34:29 +00:00
|
|
|
bool skip_intra = (state->encoder_control->cfg.rdo == 0
|
2015-01-20 08:19:07 +00:00
|
|
|
&& cur_cu->type != CU_NOTSET
|
2019-07-06 18:34:29 +00:00
|
|
|
&& cost / (cu_width * cu_width) < INTRA_THRESHOLD)
|
2019-07-09 14:40:05 +00:00
|
|
|
|| (ctrl->cfg.early_skip && cur_cu->skipped);
|
2017-04-27 07:07:45 +00:00
|
|
|
|
2019-08-28 15:45:58 +00:00
|
|
|
int32_t cu_width_intra_min = LCU_WIDTH >> pu_depth_intra.max;
|
2017-04-27 07:07:45 +00:00
|
|
|
bool can_use_intra =
|
2022-03-17 12:48:08 +00:00
|
|
|
(WITHIN(depth, pu_depth_intra.min, pu_depth_intra.max) ||
|
2017-04-27 07:07:45 +00:00
|
|
|
// When the split was forced because the CTU is partially outside
|
|
|
|
// the frame, we permit intra coding even if pu_depth_intra would
|
|
|
|
// otherwise forbid it.
|
|
|
|
(x & ~(cu_width_intra_min - 1)) + cu_width_intra_min > frame->width ||
|
2022-03-17 12:48:08 +00:00
|
|
|
(y & ~(cu_width_intra_min - 1)) + cu_width_intra_min > frame->height) &&
|
2022-05-30 09:11:48 +00:00
|
|
|
!(state->encoder_control->cfg.force_inter && state->frame->slicetype != UVG_SLICE_I);
|
2017-04-27 07:07:45 +00:00
|
|
|
|
2022-04-11 06:58:37 +00:00
|
|
|
intra_search_data_t intra_search;
|
2017-04-27 07:07:45 +00:00
|
|
|
if (can_use_intra && !skip_intra) {
|
2022-04-11 06:58:37 +00:00
|
|
|
intra_search.pred_cu = *cur_cu;
|
|
|
|
intra_search.pred_cu.joint_cb_cr = 4;
|
2022-05-30 09:11:48 +00:00
|
|
|
uvg_search_cu_intra(state, x, y, depth, &intra_search,
|
2022-04-11 06:58:37 +00:00
|
|
|
lcu);
|
2022-03-16 07:14:08 +00:00
|
|
|
#ifdef COMPLETE_PRED_MODE_BITS
|
|
|
|
// Technically counting these bits would be correct, however counting
|
|
|
|
// them universally degrades quality so this block is disabled by default
|
2022-05-30 09:11:48 +00:00
|
|
|
if(state->frame->slicetype != UVG_SLICE_I) {
|
2021-12-13 10:23:16 +00:00
|
|
|
double pred_mode_type_bits = 0;
|
|
|
|
CABAC_FBITS_UPDATE(&state->search_cabac, &state->search_cabac.ctx.cu_pred_mode_model, 1, pred_mode_type_bits, "pred_mode_flag");
|
2022-05-30 09:11:48 +00:00
|
|
|
CABAC_FBITS_UPDATE(&state->search_cabac, &state->search_cabac.ctx.cu_skip_flag_model[uvg_get_skip_context(x, y, lcu, NULL)], 0, pred_mode_type_bits, "skip_flag");
|
2021-12-13 10:23:16 +00:00
|
|
|
intra_cost += pred_mode_type_bits * state->lambda;
|
2021-12-08 08:27:07 +00:00
|
|
|
}
|
2022-03-16 07:14:08 +00:00
|
|
|
#endif
|
2022-04-11 06:58:37 +00:00
|
|
|
if (intra_search.cost < cost) {
|
|
|
|
cost = intra_search.cost;
|
|
|
|
*cur_cu = intra_search.pred_cu;
|
2014-02-26 15:50:09 +00:00
|
|
|
cur_cu->type = CU_INTRA;
|
2014-02-25 11:06:22 +00:00
|
|
|
}
|
|
|
|
}
|
2014-03-06 16:14:01 +00:00
|
|
|
|
2014-02-27 11:02:24 +00:00
|
|
|
// Reconstruct best mode because we need the reconstructed pixels for
|
|
|
|
// mode search of adjacent CUs.
|
2014-02-26 15:50:09 +00:00
|
|
|
if (cur_cu->type == CU_INTRA) {
|
2015-11-03 08:32:37 +00:00
|
|
|
assert(cur_cu->part_size == SIZE_2Nx2N || cur_cu->part_size == SIZE_NxN);
|
2022-04-11 06:58:37 +00:00
|
|
|
|
|
|
|
intra_search.pred_cu.intra.mode_chroma = -1; // don't reconstruct chroma before search is performed for it
|
2017-06-05 12:24:22 +00:00
|
|
|
lcu_fill_cu_info(lcu, x_local, y_local, cu_width, cu_width, cur_cu);
|
2022-04-28 11:18:09 +00:00
|
|
|
uvg_intra_recon_cu(state,
|
2017-05-24 07:33:13 +00:00
|
|
|
x, y,
|
2022-04-11 06:58:37 +00:00
|
|
|
depth, &intra_search,
|
2022-03-23 11:39:38 +00:00
|
|
|
NULL,
|
2022-01-19 22:11:50 +00:00
|
|
|
lcu);
|
2014-10-15 13:01:58 +00:00
|
|
|
|
2021-11-19 09:54:51 +00:00
|
|
|
downsample_cclm_rec(
|
2021-11-24 06:46:08 +00:00
|
|
|
state, x, y, cu_width / 2, cu_width / 2, lcu->rec.y, lcu->left_ref.y[64]
|
2021-11-19 09:54:51 +00:00
|
|
|
);
|
2022-04-20 05:12:42 +00:00
|
|
|
cur_cu->joint_cb_cr = 0;
|
2021-11-19 09:54:51 +00:00
|
|
|
|
2021-04-19 09:46:12 +00:00
|
|
|
// TODO: This heavily relies to square CUs
|
2022-04-28 11:18:09 +00:00
|
|
|
if ((depth != 4 || (x % 8 && y % 8)) && state->encoder_control->chroma_format != UVG_CSP_400) {
|
2014-10-15 20:07:28 +00:00
|
|
|
// There is almost no benefit to doing the chroma mode search for
|
|
|
|
// rd2. Possibly because the luma mode search already takes chroma
|
|
|
|
// into account, so there is less of a chanse of luma mode being
|
|
|
|
// really bad for chroma.
|
2022-04-27 09:05:32 +00:00
|
|
|
intra_search.pred_cu.intra.mode_chroma = cur_cu->intra.mode; // skip luma
|
|
|
|
if (ctrl->cfg.rdo >= 3) {
|
2022-05-30 09:11:48 +00:00
|
|
|
cur_cu->intra.mode_chroma = uvg_search_cu_intra_chroma(state, x, y, depth, lcu, &intra_search);
|
2022-04-14 08:29:56 +00:00
|
|
|
|
2022-05-25 10:47:02 +00:00
|
|
|
if (intra_search.pred_cu.joint_cb_cr == 0) {
|
|
|
|
intra_search.pred_cu.joint_cb_cr = 4;
|
|
|
|
cur_cu->tr_skip |= intra_search.pred_cu.tr_skip;
|
|
|
|
}
|
2022-04-14 08:29:56 +00:00
|
|
|
else cur_cu->joint_cb_cr = intra_search.pred_cu.joint_cb_cr;
|
|
|
|
|
2017-06-05 12:24:22 +00:00
|
|
|
lcu_fill_cu_info(lcu, x_local, y_local, cu_width, cu_width, cur_cu);
|
2014-10-15 13:01:58 +00:00
|
|
|
}
|
2022-05-09 08:00:16 +00:00
|
|
|
else if(!cur_cu->intra.mip_flag) {
|
|
|
|
cur_cu->intra.mode_chroma = cur_cu->intra.mode;
|
|
|
|
intra_search.pred_cu.intra.mode_chroma = cur_cu->intra.mode;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
cur_cu->intra.mode_chroma = 0;
|
|
|
|
intra_search.pred_cu.intra.mode_chroma = 0;
|
|
|
|
}
|
2022-04-11 06:58:37 +00:00
|
|
|
intra_search.pred_cu.intra.mode = -1; // skip luma
|
2022-04-28 11:18:09 +00:00
|
|
|
uvg_intra_recon_cu(state,
|
2022-04-21 06:46:54 +00:00
|
|
|
x, y, // TODO: as does this
|
2022-04-11 06:58:37 +00:00
|
|
|
depth, &intra_search,
|
2022-03-23 11:39:38 +00:00
|
|
|
NULL,
|
2022-01-19 22:11:50 +00:00
|
|
|
lcu);
|
2022-04-14 08:29:56 +00:00
|
|
|
if(depth != 0 && state->encoder_control->cfg.jccr && ctrl->cfg.rdo < 3) {
|
2022-05-30 09:11:48 +00:00
|
|
|
uvg_select_jccr_mode(state,
|
2022-04-21 06:46:54 +00:00
|
|
|
x, y,
|
2022-03-23 11:39:38 +00:00
|
|
|
depth,
|
|
|
|
NULL,
|
|
|
|
lcu,
|
|
|
|
NULL);
|
|
|
|
}
|
2022-04-14 08:29:56 +00:00
|
|
|
else if(depth != 0 && state->encoder_control->cfg.jccr && cur_cu->joint_cb_cr & 3) {
|
|
|
|
assert(cur_cu->joint_cb_cr < 4);
|
2022-04-20 05:12:42 +00:00
|
|
|
cbf_clear(&cur_cu->cbf, depth, COLOR_U);
|
|
|
|
cbf_clear(&cur_cu->cbf, depth, COLOR_V);
|
|
|
|
if (cur_cu->joint_cb_cr & 2) {
|
|
|
|
cbf_set(&cur_cu->cbf, depth, COLOR_U);
|
|
|
|
}
|
|
|
|
if (cur_cu->joint_cb_cr & 1) {
|
|
|
|
cbf_set(&cur_cu->cbf, depth, COLOR_V);
|
|
|
|
}
|
2022-04-14 08:29:56 +00:00
|
|
|
const vector2d_t lcu_px = { (x_local & ~7) / 2, (y_local & ~7) / 2 };
|
|
|
|
int lcu_width = LCU_WIDTH_C;
|
|
|
|
const int index = lcu_px.x + lcu_px.y * lcu_width;
|
|
|
|
const int width = (depth < MAX_DEPTH) ? LCU_WIDTH >> (depth + 1) : LCU_WIDTH >> depth;
|
2022-05-30 09:11:48 +00:00
|
|
|
uvg_pixels_blit(&lcu->rec.joint_u[index], &lcu->rec.u[index], width, width, lcu_width, lcu_width);
|
|
|
|
uvg_pixels_blit(&lcu->rec.joint_v[index], &lcu->rec.v[index], width, width, lcu_width, lcu_width);
|
2022-04-14 08:29:56 +00:00
|
|
|
|
|
|
|
}
|
2014-10-15 13:01:58 +00:00
|
|
|
}
|
2014-02-26 15:50:09 +00:00
|
|
|
} else if (cur_cu->type == CU_INTER) {
|
2021-11-05 11:13:11 +00:00
|
|
|
|
2019-07-06 18:34:29 +00:00
|
|
|
if (!cur_cu->skipped) {
|
2021-11-19 14:20:49 +00:00
|
|
|
|
|
|
|
if (!cur_cu->merged) {
|
2022-04-28 11:18:09 +00:00
|
|
|
if (cur_cu->inter.mv_dir & 1) uvg_round_precision(INTERNAL_MV_PREC, 2, &cur_cu->inter.mv[0][0], &cur_cu->inter.mv[0][1]);
|
|
|
|
if (cur_cu->inter.mv_dir & 2) uvg_round_precision(INTERNAL_MV_PREC, 2, &cur_cu->inter.mv[1][0], &cur_cu->inter.mv[1][1]);
|
2021-11-19 14:20:49 +00:00
|
|
|
}
|
2019-07-06 18:34:29 +00:00
|
|
|
// Reset transform depth because intra messes with them.
|
|
|
|
// This will no longer be necessary if the transform depths are not shared.
|
|
|
|
int tr_depth = MAX(1, depth);
|
|
|
|
if (cur_cu->part_size != SIZE_2Nx2N) {
|
|
|
|
tr_depth = depth + 1;
|
|
|
|
}
|
2022-04-28 11:18:09 +00:00
|
|
|
uvg_lcu_fill_trdepth(lcu, x, y, depth, tr_depth);
|
2014-03-06 16:14:01 +00:00
|
|
|
|
2022-04-28 11:18:09 +00:00
|
|
|
const bool has_chroma = state->encoder_control->chroma_format != UVG_CSP_400;
|
|
|
|
uvg_inter_recon_cu(state, lcu, x, y, cu_width, true, has_chroma);
|
2015-03-30 11:40:29 +00:00
|
|
|
|
2020-02-04 19:06:21 +00:00
|
|
|
if (ctrl->cfg.zero_coeff_rdo && !ctrl->cfg.lossless && !ctrl->cfg.rdoq_enable) {
|
2019-07-06 18:34:29 +00:00
|
|
|
//Calculate cost for zero coeffs
|
|
|
|
inter_zero_coeff_cost = cu_zero_coeff_cost(state, work_tree, x, y, depth) + inter_bitcost * state->lambda;
|
2014-05-06 11:43:12 +00:00
|
|
|
|
2019-07-06 18:34:29 +00:00
|
|
|
}
|
2018-01-17 11:39:20 +00:00
|
|
|
|
2022-04-28 11:18:09 +00:00
|
|
|
uvg_quantize_lcu_residual(state,
|
2022-03-23 11:39:38 +00:00
|
|
|
true, has_chroma,
|
|
|
|
state->encoder_control->cfg.jccr, x, y,
|
|
|
|
depth,
|
|
|
|
NULL,
|
|
|
|
lcu,
|
|
|
|
false);
|
2022-03-31 11:59:22 +00:00
|
|
|
if (cur_cu->depth == cur_cu->tr_depth && state->encoder_control->cfg.jccr && cur_cu->joint_cb_cr) {
|
2022-05-30 09:11:48 +00:00
|
|
|
uvg_select_jccr_mode(state,
|
2022-04-21 06:46:54 +00:00
|
|
|
x, y,
|
2022-03-31 11:59:22 +00:00
|
|
|
depth,
|
|
|
|
NULL,
|
|
|
|
lcu,
|
|
|
|
NULL);
|
|
|
|
}
|
2019-07-06 18:34:29 +00:00
|
|
|
|
|
|
|
int cbf = cbf_is_set_any(cur_cu->cbf, depth);
|
|
|
|
|
|
|
|
if (cur_cu->merged && !cbf && cur_cu->part_size == SIZE_2Nx2N) {
|
|
|
|
cur_cu->merged = 0;
|
|
|
|
cur_cu->skipped = 1;
|
|
|
|
// Selecting skip reduces bits needed to code the CU
|
2022-05-30 09:11:48 +00:00
|
|
|
int skip_ctx = uvg_get_skip_context(x, y, lcu, NULL, NULL);
|
2022-02-04 08:25:16 +00:00
|
|
|
inter_bitcost = CTX_ENTROPY_FBITS(&state->search_cabac.ctx.cu_skip_flag_model[skip_ctx], 1);
|
|
|
|
inter_bitcost += CTX_ENTROPY_FBITS(&(state->search_cabac.ctx.cu_merge_idx_ext_model), cur_cu->merge_idx != 0);
|
|
|
|
inter_bitcost += cur_cu->merge_idx;
|
2014-10-21 15:11:39 +00:00
|
|
|
}
|
2014-03-04 10:48:19 +00:00
|
|
|
}
|
2019-07-09 14:26:43 +00:00
|
|
|
lcu_fill_inter(lcu, x_local, y_local, cu_width);
|
|
|
|
lcu_fill_cbf(lcu, x_local, y_local, cu_width, cur_cu);
|
2014-02-26 15:50:09 +00:00
|
|
|
}
|
2014-02-25 11:06:22 +00:00
|
|
|
}
|
2019-07-06 18:34:29 +00:00
|
|
|
|
2014-03-11 15:09:08 +00:00
|
|
|
if (cur_cu->type == CU_INTRA || cur_cu->type == CU_INTER) {
|
2021-12-02 08:05:21 +00:00
|
|
|
double bits = 0;
|
2021-12-16 06:40:23 +00:00
|
|
|
cabac_data_t* cabac = &state->search_cabac;
|
|
|
|
cabac->update = 1;
|
2021-12-03 07:09:57 +00:00
|
|
|
|
2021-12-16 09:26:45 +00:00
|
|
|
if(cur_cu->type != CU_INTRA || cur_cu->part_size == SIZE_2Nx2N) {
|
2022-05-30 09:11:48 +00:00
|
|
|
bits += uvg_mock_encode_coding_unit(
|
2021-12-16 09:26:45 +00:00
|
|
|
state,
|
|
|
|
cabac,
|
|
|
|
x, y, depth,
|
|
|
|
lcu,
|
|
|
|
cur_cu);
|
2016-08-25 13:05:46 +00:00
|
|
|
}
|
2021-12-16 09:26:45 +00:00
|
|
|
else {
|
2022-03-21 06:42:41 +00:00
|
|
|
assert(0);
|
2016-03-21 09:50:41 +00:00
|
|
|
}
|
2021-12-16 09:26:45 +00:00
|
|
|
|
|
|
|
cost = bits * state->lambda;
|
2016-03-21 09:50:41 +00:00
|
|
|
|
2022-03-14 12:33:36 +00:00
|
|
|
cost += cu_rd_cost_tr_split_accurate(state, x_local, y_local, depth, cur_cu, lcu);
|
|
|
|
|
2020-02-04 19:06:21 +00:00
|
|
|
if (ctrl->cfg.zero_coeff_rdo && inter_zero_coeff_cost <= cost) {
|
2018-01-17 11:39:20 +00:00
|
|
|
cost = inter_zero_coeff_cost;
|
|
|
|
|
|
|
|
// Restore saved pixels from lower level of the working tree.
|
|
|
|
copy_cu_pixels(x_local, y_local, cu_width, &work_tree[depth + 1], lcu);
|
|
|
|
|
|
|
|
if (cur_cu->merged && cur_cu->part_size == SIZE_2Nx2N) {
|
|
|
|
cur_cu->merged = 0;
|
|
|
|
cur_cu->skipped = 1;
|
|
|
|
lcu_fill_cu_info(lcu, x_local, y_local, cu_width, cu_width, cur_cu);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cur_cu->tr_depth != depth) {
|
|
|
|
// Reset transform depth since there are no coefficients. This
|
|
|
|
// ensures that CBF is cleared for the whole area of the CU.
|
2022-04-28 11:18:09 +00:00
|
|
|
uvg_lcu_fill_trdepth(lcu, x, y, depth, depth);
|
2018-01-17 11:39:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
cur_cu->cbf = 0;
|
2019-07-09 14:26:43 +00:00
|
|
|
lcu_fill_cbf(lcu, x_local, y_local, cu_width, cur_cu);
|
2018-01-17 11:39:20 +00:00
|
|
|
}
|
2021-12-16 06:40:23 +00:00
|
|
|
cabac->update = 0;
|
2021-12-03 07:09:57 +00:00
|
|
|
}
|
2017-04-27 07:07:45 +00:00
|
|
|
|
|
|
|
bool can_split_cu =
|
|
|
|
// If the CU is partially outside the frame, we need to split it even
|
|
|
|
// if pu_depth_intra and pu_depth_inter would not permit it.
|
|
|
|
cur_cu->type == CU_NOTSET ||
|
2022-05-30 09:11:48 +00:00
|
|
|
(depth < pu_depth_intra.max && !(state->encoder_control->cfg.force_inter&& state->frame->slicetype != UVG_SLICE_I)) ||
|
2022-04-28 11:18:09 +00:00
|
|
|
(state->frame->slicetype != UVG_SLICE_I &&
|
2019-08-28 15:45:58 +00:00
|
|
|
depth < pu_depth_inter.max);
|
2017-04-27 07:07:45 +00:00
|
|
|
|
2022-06-03 10:28:40 +00:00
|
|
|
if(state->encoder_control->cabac_debug_file) {
|
|
|
|
fprintf(state->encoder_control->cabac_debug_file, "S %4d %4d %d", x, y, depth);
|
|
|
|
fwrite(&state->search_cabac.ctx, 1, sizeof(state->search_cabac.ctx), state->encoder_control->cabac_debug_file);
|
|
|
|
}
|
|
|
|
|
2014-02-25 11:06:22 +00:00
|
|
|
// Recursively split all the way to max search depth.
|
2017-04-27 07:07:45 +00:00
|
|
|
if (can_split_cu) {
|
2014-02-25 11:06:22 +00:00
|
|
|
int half_cu = cu_width / 2;
|
2015-12-15 14:25:19 +00:00
|
|
|
double split_cost = 0.0;
|
2016-05-22 07:08:11 +00:00
|
|
|
int cbf = cbf_is_set_any(cur_cu->cbf, depth);
|
2021-12-03 07:09:57 +00:00
|
|
|
cabac_data_t post_seach_cabac;
|
|
|
|
memcpy(&post_seach_cabac, &state->search_cabac, sizeof(post_seach_cabac));
|
|
|
|
memcpy(&state->search_cabac, &pre_search_cabac, sizeof(post_seach_cabac));
|
2014-02-25 11:06:22 +00:00
|
|
|
|
|
|
|
|
2022-06-03 10:28:40 +00:00
|
|
|
state->search_cabac.update = 1;
|
|
|
|
|
|
|
|
double split_bits = 0;
|
|
|
|
|
|
|
|
if (depth < MAX_DEPTH) {
|
|
|
|
// Add cost of cu_split_flag.
|
|
|
|
kvz_write_split_flag(state, &state->search_cabac,
|
|
|
|
x > 0 ? LCU_GET_CU_AT_PX(lcu, SUB_SCU(x) - 1, SUB_SCU(y)) : NULL,
|
|
|
|
y > 0 ? LCU_GET_CU_AT_PX(lcu, SUB_SCU(x), SUB_SCU(y) - 1) : NULL,
|
|
|
|
1, depth, cu_width, x, y, &split_bits);
|
|
|
|
}
|
|
|
|
|
|
|
|
state->search_cabac.update = 0;
|
|
|
|
split_cost += split_bits * state->lambda;
|
|
|
|
|
2014-03-11 06:55:25 +00:00
|
|
|
// If skip mode was selected for the block, skip further search.
|
|
|
|
// Skip mode means there's no coefficients in the block, so splitting
|
|
|
|
// might not give any better results but takes more time to do.
|
2017-01-30 14:21:41 +00:00
|
|
|
// It is ok to interrupt the search as soon as it is known that
|
|
|
|
// the split costs at least as much as not splitting.
|
2022-04-28 11:18:09 +00:00
|
|
|
if (cur_cu->type == CU_NOTSET || cbf || state->encoder_control->cfg.cu_split_termination == UVG_CU_SPLIT_TERMINATION_OFF) {
|
2017-01-30 14:21:41 +00:00
|
|
|
if (split_cost < cost) split_cost += search_cu(state, x, y, depth + 1, work_tree);
|
2022-06-03 12:03:44 +00:00
|
|
|
if (split_cost < cost) split_cost += search_cu(state, x + half_cu, y, depth + 1, work_tree);
|
|
|
|
if (split_cost < cost) split_cost += search_cu(state, x, y + half_cu, depth + 1, work_tree);
|
|
|
|
if (split_cost < cost) split_cost += search_cu(state, x + half_cu, y + half_cu, depth + 1, work_tree);
|
2014-03-12 12:14:42 +00:00
|
|
|
} else {
|
|
|
|
split_cost = INT_MAX;
|
2014-03-11 06:55:25 +00:00
|
|
|
}
|
2014-11-20 15:39:55 +00:00
|
|
|
|
2022-05-13 09:05:54 +00:00
|
|
|
|
2014-11-20 15:39:55 +00:00
|
|
|
// If no search is not performed for this depth, try just the best mode
|
|
|
|
// of the top left CU from the next depth. This should ensure that 64x64
|
|
|
|
// gets used, at least in the most obvious cases, while avoiding any
|
|
|
|
// searching.
|
2022-02-09 01:24:02 +00:00
|
|
|
|
2015-01-12 09:47:21 +00:00
|
|
|
if (cur_cu->type == CU_NOTSET && depth < MAX_PU_DEPTH
|
2021-12-02 08:42:30 +00:00
|
|
|
&& x + cu_width <= frame->width && y + cu_width <= frame->height
|
|
|
|
&& state->encoder_control->cfg.combine_intra_cus)
|
2014-11-20 15:39:55 +00:00
|
|
|
{
|
2021-12-07 07:11:47 +00:00
|
|
|
|
2016-01-12 11:27:58 +00:00
|
|
|
cu_info_t *cu_d1 = LCU_GET_CU_AT_PX(&work_tree[depth + 1], x_local, y_local);
|
2014-11-20 15:39:55 +00:00
|
|
|
|
2015-01-12 09:47:21 +00:00
|
|
|
// If the best CU in depth+1 is intra and the biggest it can be, try it.
|
|
|
|
if (cu_d1->type == CU_INTRA && cu_d1->depth == depth + 1) {
|
2021-12-07 07:11:47 +00:00
|
|
|
cabac_data_t temp_cabac;
|
|
|
|
memcpy(&temp_cabac, &state->search_cabac, sizeof(temp_cabac));
|
|
|
|
memcpy(&state->search_cabac, &pre_search_cabac, sizeof(pre_search_cabac));
|
2015-01-12 09:47:21 +00:00
|
|
|
cost = 0;
|
2021-12-02 08:05:21 +00:00
|
|
|
double bits = 0;
|
2022-05-30 09:11:48 +00:00
|
|
|
uvg_write_split_flag(state, &state->search_cabac,
|
2022-03-25 13:27:34 +00:00
|
|
|
x > 0 ? LCU_GET_CU_AT_PX(lcu, SUB_SCU(x) - 1, SUB_SCU(y)) : NULL,
|
|
|
|
y > 0 ? LCU_GET_CU_AT_PX(lcu, SUB_SCU(x), SUB_SCU(y) - 1) : NULL,
|
2022-03-25 11:54:37 +00:00
|
|
|
0, depth, cu_width, x, y, & split_bits);
|
2014-11-20 15:39:55 +00:00
|
|
|
|
2016-01-15 08:51:40 +00:00
|
|
|
cur_cu->intra = cu_d1->intra;
|
2015-01-12 09:47:21 +00:00
|
|
|
cur_cu->type = CU_INTRA;
|
2017-01-28 12:35:27 +00:00
|
|
|
cur_cu->part_size = SIZE_2Nx2N;
|
2014-11-20 15:39:55 +00:00
|
|
|
|
2021-09-14 11:55:45 +00:00
|
|
|
// Disable MRL in this case
|
|
|
|
cur_cu->intra.multi_ref_idx = 0;
|
|
|
|
|
2022-04-28 11:18:09 +00:00
|
|
|
uvg_lcu_fill_trdepth(lcu, x, y, depth, cur_cu->tr_depth);
|
2017-06-05 12:24:22 +00:00
|
|
|
lcu_fill_cu_info(lcu, x_local, y_local, cu_width, cu_width, cur_cu);
|
2022-04-12 11:51:49 +00:00
|
|
|
|
|
|
|
intra_search_data_t proxy;
|
|
|
|
FILL(proxy, 0);
|
|
|
|
proxy.pred_cu = *cur_cu;
|
2016-08-25 13:05:46 +00:00
|
|
|
|
2022-04-28 11:18:09 +00:00
|
|
|
uvg_intra_recon_cu(state,
|
2017-05-24 07:33:13 +00:00
|
|
|
x, y,
|
|
|
|
depth,
|
2022-04-12 11:51:49 +00:00
|
|
|
&proxy,
|
2022-03-23 11:39:38 +00:00
|
|
|
NULL,
|
2022-01-19 22:11:50 +00:00
|
|
|
lcu);
|
2017-05-24 07:33:13 +00:00
|
|
|
|
2022-03-21 06:42:41 +00:00
|
|
|
double mode_bits = calc_mode_bits(state, lcu, cur_cu, x, y, depth) + bits;
|
2021-12-07 07:11:47 +00:00
|
|
|
cost += mode_bits * state->lambda;
|
2015-01-12 09:47:21 +00:00
|
|
|
|
2022-03-14 12:33:36 +00:00
|
|
|
cost += cu_rd_cost_tr_split_accurate(state, x_local, y_local, depth, cur_cu, lcu);
|
2015-01-12 09:47:21 +00:00
|
|
|
|
2021-12-07 07:11:47 +00:00
|
|
|
memcpy(&post_seach_cabac, &state->search_cabac, sizeof(post_seach_cabac));
|
|
|
|
memcpy(&state->search_cabac, &temp_cabac, sizeof(temp_cabac));
|
2014-11-20 15:39:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-25 11:06:22 +00:00
|
|
|
if (split_cost < cost) {
|
|
|
|
// Copy split modes to this depth.
|
|
|
|
cost = split_cost;
|
2021-08-16 12:39:14 +00:00
|
|
|
work_tree_copy_up(x_local, y_local, depth, work_tree, state->encoder_control->cfg.jccr);
|
2022-04-28 11:18:09 +00:00
|
|
|
#if UVG_DEBUG
|
2018-07-27 08:03:16 +00:00
|
|
|
//debug_split = 1;
|
2014-07-07 08:50:05 +00:00
|
|
|
#endif
|
2014-11-20 15:39:55 +00:00
|
|
|
} else if (depth > 0) {
|
2014-02-25 11:06:22 +00:00
|
|
|
// Copy this CU's mode all the way down for use in adjacent CUs mode
|
|
|
|
// search.
|
2021-12-03 07:09:57 +00:00
|
|
|
memcpy(&state->search_cabac, &post_seach_cabac, sizeof(post_seach_cabac));
|
2017-06-05 12:21:34 +00:00
|
|
|
work_tree_copy_down(x_local, y_local, depth, work_tree);
|
2021-11-19 09:54:51 +00:00
|
|
|
downsample_cclm_rec(
|
2021-11-24 06:46:08 +00:00
|
|
|
state, x, y, cu_width / 2, cu_width / 2, lcu->rec.y, lcu->left_ref.y[64]
|
2021-11-19 09:54:51 +00:00
|
|
|
);
|
2021-11-05 11:13:11 +00:00
|
|
|
|
2022-04-28 11:18:09 +00:00
|
|
|
if (state->frame->slicetype != UVG_SLICE_I) {
|
2021-11-05 11:13:11 +00:00
|
|
|
// Reset HMVP to the beginning of this CU level search and add this CU as the mvp
|
2021-11-25 18:21:13 +00:00
|
|
|
memcpy(&state->tile->frame->hmvp_lut[ctu_row_mul_five], hmvp_lut, sizeof(cu_info_t) * MAX_NUM_HMVP_CANDS);
|
|
|
|
state->tile->frame->hmvp_size[ctu_row] = hmvp_lut_size;
|
2022-04-28 11:18:09 +00:00
|
|
|
uvg_hmvp_add_mv(state, x, y, cu_width, cu_width, cur_cu);
|
2021-11-05 11:13:11 +00:00
|
|
|
}
|
2014-02-25 11:06:22 +00:00
|
|
|
}
|
2022-03-30 07:10:02 +00:00
|
|
|
else {
|
|
|
|
downsample_cclm_rec(
|
|
|
|
state, x, y, cu_width / 2, cu_width / 2, lcu->rec.y, lcu->left_ref.y[64]
|
|
|
|
);
|
|
|
|
}
|
2015-11-03 08:32:37 +00:00
|
|
|
} else if (depth >= 0 && depth < MAX_PU_DEPTH) {
|
|
|
|
// Need to copy modes down since the lower level of the work tree is used
|
|
|
|
// when searching SMP and AMP blocks.
|
2017-06-05 12:21:34 +00:00
|
|
|
work_tree_copy_down(x_local, y_local, depth, work_tree);
|
2021-11-19 09:54:51 +00:00
|
|
|
downsample_cclm_rec(
|
2021-11-24 06:46:08 +00:00
|
|
|
state, x, y, cu_width / 2, cu_width / 2, lcu->rec.y, lcu->left_ref.y[64]
|
2021-11-19 09:54:51 +00:00
|
|
|
);
|
2021-11-05 11:13:11 +00:00
|
|
|
|
2022-04-28 11:18:09 +00:00
|
|
|
if (state->frame->slicetype != UVG_SLICE_I) {
|
2021-11-05 11:13:11 +00:00
|
|
|
// Reset HMVP to the beginning of this CU level search and add this CU as the mvp
|
2021-11-25 18:21:13 +00:00
|
|
|
memcpy(&state->tile->frame->hmvp_lut[ctu_row_mul_five], hmvp_lut, sizeof(cu_info_t) * MAX_NUM_HMVP_CANDS);
|
|
|
|
state->tile->frame->hmvp_size[ctu_row] = hmvp_lut_size;
|
2022-04-28 11:18:09 +00:00
|
|
|
uvg_hmvp_add_mv(state, x, y, cu_width, cu_width, cur_cu);
|
2021-11-05 11:13:11 +00:00
|
|
|
}
|
2014-02-25 11:06:22 +00:00
|
|
|
}
|
2015-11-03 08:32:37 +00:00
|
|
|
|
2017-04-27 07:07:45 +00:00
|
|
|
assert(cur_cu->type != CU_NOTSET);
|
|
|
|
|
2014-02-25 11:06:22 +00:00
|
|
|
return cost;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialize lcu_t for search.
|
|
|
|
* - Copy reference CUs.
|
|
|
|
* - Copy reference pixels from neighbouring LCUs.
|
|
|
|
* - Copy reference pixels from this LCU.
|
|
|
|
*/
|
2015-03-04 15:00:23 +00:00
|
|
|
static void init_lcu_t(const encoder_state_t * const state, const int x, const int y, lcu_t *lcu, const yuv_t *hor_buf, const yuv_t *ver_buf)
|
2014-02-25 11:06:22 +00:00
|
|
|
{
|
2015-03-04 15:00:23 +00:00
|
|
|
const videoframe_t * const frame = state->tile->frame;
|
2016-02-17 12:52:42 +00:00
|
|
|
|
|
|
|
FILL(*lcu, 0);
|
2014-04-17 07:51:55 +00:00
|
|
|
|
2016-08-25 13:05:46 +00:00
|
|
|
lcu->rec.chroma_format = state->encoder_control->chroma_format;
|
|
|
|
lcu->ref.chroma_format = state->encoder_control->chroma_format;
|
|
|
|
|
2014-02-25 15:10:46 +00:00
|
|
|
// Copy reference cu_info structs from neighbouring LCUs.
|
2016-01-12 11:27:58 +00:00
|
|
|
|
|
|
|
// Copy top CU row.
|
|
|
|
if (y > 0) {
|
|
|
|
for (int i = 0; i < LCU_WIDTH; i += SCU_WIDTH) {
|
2022-04-28 11:18:09 +00:00
|
|
|
const cu_info_t *from_cu = uvg_cu_array_at_const(frame->cu_array, x + i, y - 1);
|
2016-01-12 11:27:58 +00:00
|
|
|
cu_info_t *to_cu = LCU_GET_CU_AT_PX(lcu, i, -1);
|
2014-02-25 15:10:46 +00:00
|
|
|
memcpy(to_cu, from_cu, sizeof(*to_cu));
|
|
|
|
}
|
2016-01-12 11:27:58 +00:00
|
|
|
}
|
|
|
|
// Copy left CU column.
|
|
|
|
if (x > 0) {
|
|
|
|
for (int i = 0; i < LCU_WIDTH; i += SCU_WIDTH) {
|
2022-04-28 11:18:09 +00:00
|
|
|
const cu_info_t *from_cu = uvg_cu_array_at_const(frame->cu_array, x - 1, y + i);
|
2016-01-12 11:27:58 +00:00
|
|
|
cu_info_t *to_cu = LCU_GET_CU_AT_PX(lcu, -1, i);
|
2014-03-03 14:08:35 +00:00
|
|
|
memcpy(to_cu, from_cu, sizeof(*to_cu));
|
|
|
|
}
|
2014-02-25 15:10:46 +00:00
|
|
|
}
|
2016-01-12 11:27:58 +00:00
|
|
|
// Copy top-left CU.
|
|
|
|
if (x > 0 && y > 0) {
|
2022-04-28 11:18:09 +00:00
|
|
|
const cu_info_t *from_cu = uvg_cu_array_at_const(frame->cu_array, x - 1, y - 1);
|
2016-01-12 11:27:58 +00:00
|
|
|
cu_info_t *to_cu = LCU_GET_CU_AT_PX(lcu, -1, -1);
|
|
|
|
memcpy(to_cu, from_cu, sizeof(*to_cu));
|
|
|
|
}
|
|
|
|
|
2021-11-08 07:43:53 +00:00
|
|
|
// Copy top-right CU, available only without WPP
|
|
|
|
if (y > 0 && x + LCU_WIDTH < frame->width && !state->encoder_control->cfg.wpp) {
|
2022-04-28 11:18:09 +00:00
|
|
|
const cu_info_t *from_cu = uvg_cu_array_at_const(frame->cu_array, x + LCU_WIDTH, y - 1);
|
2016-01-12 11:27:58 +00:00
|
|
|
cu_info_t *to_cu = LCU_GET_TOP_RIGHT_CU(lcu);
|
|
|
|
memcpy(to_cu, from_cu, sizeof(*to_cu));
|
|
|
|
}
|
2014-02-25 15:10:46 +00:00
|
|
|
|
|
|
|
// Copy reference pixels.
|
|
|
|
{
|
2014-06-05 12:54:58 +00:00
|
|
|
const int pic_width = frame->width;
|
2014-02-25 15:10:46 +00:00
|
|
|
// Copy top reference pixels.
|
|
|
|
if (y > 0) {
|
2014-03-18 13:36:48 +00:00
|
|
|
// hor_buf is of size pic_width so there might not be LCU_REF_PX_WIDTH
|
|
|
|
// number of allocated pixels left.
|
|
|
|
int x_max = MIN(LCU_REF_PX_WIDTH, pic_width - x);
|
2014-05-14 07:13:31 +00:00
|
|
|
int x_min_in_lcu = (x>0) ? 0 : 1;
|
2016-08-17 12:56:34 +00:00
|
|
|
int luma_offset = OFFSET_HOR_BUF(x, y, frame, x_min_in_lcu - 1);
|
|
|
|
int chroma_offset = OFFSET_HOR_BUF_C(x, y, frame, x_min_in_lcu - 1);
|
2022-04-28 11:18:09 +00:00
|
|
|
int luma_bytes = (x_max + (1 - x_min_in_lcu))*sizeof(uvg_pixel);
|
|
|
|
int chroma_bytes = (x_max / 2 + (1 - x_min_in_lcu))*sizeof(uvg_pixel);
|
2016-08-17 12:56:34 +00:00
|
|
|
|
|
|
|
memcpy(&lcu->top_ref.y[x_min_in_lcu], &hor_buf->y[luma_offset], luma_bytes);
|
2021-05-18 18:22:22 +00:00
|
|
|
|
2022-04-28 11:18:09 +00:00
|
|
|
if (state->encoder_control->chroma_format != UVG_CSP_400) {
|
2016-08-25 13:05:46 +00:00
|
|
|
memcpy(&lcu->top_ref.u[x_min_in_lcu], &hor_buf->u[chroma_offset], chroma_bytes);
|
|
|
|
memcpy(&lcu->top_ref.v[x_min_in_lcu], &hor_buf->v[chroma_offset], chroma_bytes);
|
|
|
|
}
|
2014-02-25 15:10:46 +00:00
|
|
|
}
|
|
|
|
// Copy left reference pixels.
|
|
|
|
if (x > 0) {
|
2014-05-14 07:13:31 +00:00
|
|
|
int y_min_in_lcu = (y>0) ? 0 : 1;
|
2016-08-17 12:56:34 +00:00
|
|
|
int luma_offset = OFFSET_VER_BUF(x, y, frame, y_min_in_lcu - 1);
|
|
|
|
int chroma_offset = OFFSET_VER_BUF_C(x, y, frame, y_min_in_lcu - 1);
|
2022-04-28 11:18:09 +00:00
|
|
|
int luma_bytes = (LCU_WIDTH + (1 - y_min_in_lcu)) * sizeof(uvg_pixel);
|
|
|
|
int chroma_bytes = (LCU_WIDTH / 2 + (1 - y_min_in_lcu)) * sizeof(uvg_pixel);
|
2016-08-17 12:56:34 +00:00
|
|
|
|
|
|
|
memcpy(&lcu->left_ref.y[y_min_in_lcu], &ver_buf->y[luma_offset], luma_bytes);
|
2021-05-18 18:22:22 +00:00
|
|
|
|
2022-04-28 11:18:09 +00:00
|
|
|
if (state->encoder_control->chroma_format != UVG_CSP_400) {
|
2016-08-25 13:05:46 +00:00
|
|
|
memcpy(&lcu->left_ref.u[y_min_in_lcu], &ver_buf->u[chroma_offset], chroma_bytes);
|
|
|
|
memcpy(&lcu->left_ref.v[y_min_in_lcu], &ver_buf->v[chroma_offset], chroma_bytes);
|
|
|
|
}
|
2014-02-25 15:10:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Copy LCU pixels.
|
|
|
|
{
|
2015-03-04 15:00:23 +00:00
|
|
|
const videoframe_t * const frame = state->tile->frame;
|
2014-06-12 05:21:13 +00:00
|
|
|
int x_max = MIN(x + LCU_WIDTH, frame->width) - x;
|
2014-06-05 12:54:58 +00:00
|
|
|
int y_max = MIN(y + LCU_WIDTH, frame->height) - y;
|
2014-02-25 15:10:46 +00:00
|
|
|
|
|
|
|
int x_c = x / 2;
|
|
|
|
int y_c = y / 2;
|
|
|
|
int x_max_c = x_max / 2;
|
|
|
|
int y_max_c = y_max / 2;
|
|
|
|
|
2022-04-28 11:18:09 +00:00
|
|
|
uvg_pixel* source = NULL;
|
2021-05-28 07:57:25 +00:00
|
|
|
if (state->tile->frame->lmcs_aps->m_sliceReshapeInfo.sliceReshaperEnableFlag) {
|
|
|
|
source = frame->source_lmcs->y;
|
|
|
|
} else {
|
|
|
|
source = frame->source->y;
|
|
|
|
}
|
|
|
|
|
2021-05-25 11:27:21 +00:00
|
|
|
// Use LMCS pixels for luma if they are available, otherwise source_lmcs is mapped to normal source
|
2022-04-28 11:18:09 +00:00
|
|
|
uvg_pixels_blit(&source[x + y * frame->source->stride], lcu->ref.y,
|
2014-06-12 05:21:13 +00:00
|
|
|
x_max, y_max, frame->source->stride, LCU_WIDTH);
|
2022-04-28 11:18:09 +00:00
|
|
|
if (state->encoder_control->chroma_format != UVG_CSP_400) {
|
|
|
|
uvg_pixels_blit(&frame->source->u[x_c + y_c * frame->source->stride / 2], lcu->ref.u,
|
2016-08-25 13:05:46 +00:00
|
|
|
x_max_c, y_max_c, frame->source->stride / 2, LCU_WIDTH / 2);
|
2022-04-28 11:18:09 +00:00
|
|
|
uvg_pixels_blit(&frame->source->v[x_c + y_c * frame->source->stride / 2], lcu->ref.v,
|
2016-08-25 13:05:46 +00:00
|
|
|
x_max_c, y_max_c, frame->source->stride / 2, LCU_WIDTH / 2);
|
|
|
|
}
|
2014-02-25 15:10:46 +00:00
|
|
|
}
|
2014-02-25 11:06:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Copy CU and pixel data to it's place in picture datastructure.
|
|
|
|
*/
|
2015-03-04 15:00:23 +00:00
|
|
|
static void copy_lcu_to_cu_data(const encoder_state_t * const state, int x_px, int y_px, const lcu_t *lcu)
|
2014-02-25 11:06:22 +00:00
|
|
|
{
|
2014-02-26 10:31:51 +00:00
|
|
|
// Copy non-reference CUs to picture.
|
2022-04-28 11:18:09 +00:00
|
|
|
uvg_cu_array_copy_from_lcu(state->tile->frame->cu_array, x_px, y_px, lcu);
|
2014-02-26 10:31:51 +00:00
|
|
|
|
|
|
|
// Copy pixels to picture.
|
|
|
|
{
|
2015-03-04 15:00:23 +00:00
|
|
|
videoframe_t * const pic = state->tile->frame;
|
2014-04-17 07:51:55 +00:00
|
|
|
const int pic_width = pic->width;
|
2014-02-26 10:31:51 +00:00
|
|
|
const int x_max = MIN(x_px + LCU_WIDTH, pic_width) - x_px;
|
2014-04-17 07:51:55 +00:00
|
|
|
const int y_max = MIN(y_px + LCU_WIDTH, pic->height) - y_px;
|
2014-02-26 10:31:51 +00:00
|
|
|
|
2022-04-28 11:18:09 +00:00
|
|
|
uvg_pixels_blit(lcu->rec.y, &pic->rec->y[x_px + y_px * pic->rec->stride],
|
2014-06-12 05:21:13 +00:00
|
|
|
x_max, y_max, LCU_WIDTH, pic->rec->stride);
|
2014-02-26 10:31:51 +00:00
|
|
|
|
2021-06-01 09:17:03 +00:00
|
|
|
if (state->tile->frame->lmcs_aps->m_sliceReshapeInfo.sliceReshaperEnableFlag) {
|
2022-04-28 11:18:09 +00:00
|
|
|
uvg_pixels_blit(lcu->rec.y, &pic->rec_lmcs->y[x_px + y_px * pic->rec->stride],
|
2021-06-01 09:17:03 +00:00
|
|
|
x_max, y_max, LCU_WIDTH, pic->rec->stride);
|
|
|
|
}
|
|
|
|
|
2022-04-28 11:18:09 +00:00
|
|
|
if (state->encoder_control->chroma_format != UVG_CSP_400) {
|
|
|
|
uvg_pixels_blit(lcu->rec.u, &pic->rec->u[(x_px / 2) + (y_px / 2) * (pic->rec->stride / 2)],
|
2016-08-25 13:05:46 +00:00
|
|
|
x_max / 2, y_max / 2, LCU_WIDTH / 2, pic->rec->stride / 2);
|
2022-04-28 11:18:09 +00:00
|
|
|
uvg_pixels_blit(lcu->rec.v, &pic->rec->v[(x_px / 2) + (y_px / 2) * (pic->rec->stride / 2)],
|
2016-08-25 13:05:46 +00:00
|
|
|
x_max / 2, y_max / 2, LCU_WIDTH / 2, pic->rec->stride / 2);
|
|
|
|
}
|
2014-02-26 10:31:51 +00:00
|
|
|
}
|
2014-02-25 11:06:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Search LCU for modes.
|
|
|
|
* - Best mode gets copied to current picture.
|
|
|
|
*/
|
2022-04-28 11:18:09 +00:00
|
|
|
void uvg_search_lcu(encoder_state_t * const state, const int x, const int y, const yuv_t * const hor_buf, const yuv_t * const ver_buf, lcu_coeff_t *coeff)
|
2014-02-25 11:06:22 +00:00
|
|
|
{
|
2021-12-07 06:13:08 +00:00
|
|
|
memcpy(&state->search_cabac, &state->cabac, sizeof(cabac_data_t));
|
|
|
|
state->search_cabac.only_count = 1;
|
2016-01-15 08:51:40 +00:00
|
|
|
assert(x % LCU_WIDTH == 0);
|
|
|
|
assert(y % LCU_WIDTH == 0);
|
|
|
|
|
2016-02-17 12:52:42 +00:00
|
|
|
// Initialize the same starting state to every depth. The search process
|
|
|
|
// will use these as temporary storage for predictions before making
|
|
|
|
// a decision on which to use, and they get updated during the search
|
|
|
|
// process.
|
2014-03-11 17:19:20 +00:00
|
|
|
lcu_t work_tree[MAX_PU_DEPTH + 1];
|
2016-02-17 12:52:42 +00:00
|
|
|
init_lcu_t(state, x, y, &work_tree[0], hor_buf, ver_buf);
|
|
|
|
for (int depth = 1; depth <= MAX_PU_DEPTH; ++depth) {
|
|
|
|
work_tree[depth] = work_tree[0];
|
2014-02-25 11:06:22 +00:00
|
|
|
}
|
|
|
|
|
2019-08-28 15:45:58 +00:00
|
|
|
// If the ML depth prediction is enabled,
|
|
|
|
// generate the depth prediction interval
|
|
|
|
// for the current lcu
|
|
|
|
constraint_t* constr = state->constraint;
|
|
|
|
if (constr->ml_intra_depth_ctu) {
|
2022-04-28 11:18:09 +00:00
|
|
|
uvg_lcu_luma_depth_pred(constr->ml_intra_depth_ctu, work_tree[0].ref.y, state->qp);
|
2019-08-28 15:45:58 +00:00
|
|
|
}
|
|
|
|
|
2014-02-25 11:06:22 +00:00
|
|
|
// Start search from depth 0.
|
2016-08-24 01:16:48 +00:00
|
|
|
double cost = search_cu(state, x, y, 0, work_tree);
|
|
|
|
|
|
|
|
// Save squared cost for rate control.
|
2022-04-28 11:18:09 +00:00
|
|
|
if(state->encoder_control->cfg.rc_algorithm == UVG_LAMBDA) {
|
|
|
|
uvg_get_lcu_stats(state, x / LCU_WIDTH, y / LCU_WIDTH)->weight = cost * cost;
|
2019-11-19 11:45:58 +00:00
|
|
|
}
|
2014-02-25 11:06:22 +00:00
|
|
|
|
2016-02-17 12:52:42 +00:00
|
|
|
// The best decisions through out the LCU got propagated back to depth 0,
|
|
|
|
// so copy those back to the frame.
|
2015-03-04 15:00:23 +00:00
|
|
|
copy_lcu_to_cu_data(state, x, y, &work_tree[0]);
|
2017-05-11 11:51:09 +00:00
|
|
|
|
|
|
|
// Copy coeffs to encoder state.
|
2021-07-23 07:40:19 +00:00
|
|
|
copy_coeffs(work_tree[0].coeff.y, coeff->y, LCU_WIDTH);
|
|
|
|
copy_coeffs(work_tree[0].coeff.u, coeff->u, LCU_WIDTH_C);
|
|
|
|
copy_coeffs(work_tree[0].coeff.v, coeff->v, LCU_WIDTH_C);
|
2021-08-16 12:39:14 +00:00
|
|
|
if (state->encoder_control->cfg.jccr) {
|
|
|
|
copy_coeffs(work_tree[0].coeff.joint_uv, coeff->joint_uv, LCU_WIDTH_C);
|
|
|
|
}
|
2014-02-25 11:06:22 +00:00
|
|
|
}
|