2013-09-19 07:35:34 +00:00
|
|
|
#ifndef TRANSFORM_H_
|
|
|
|
#define TRANSFORM_H_
|
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
|
|
|
****************************************************************************/
|
|
|
|
|
2015-12-17 11:42:57 +00:00
|
|
|
/**
|
|
|
|
* \ingroup Reconstruction
|
2013-09-18 14:29:30 +00:00
|
|
|
* \file
|
2015-12-17 11:42:57 +00:00
|
|
|
* Quantization and transform functions.
|
2012-06-11 15:43:29 +00:00
|
|
|
*/
|
|
|
|
|
2016-04-01 14:14:23 +00:00
|
|
|
#include "cu.h"
|
2013-09-18 09:16:03 +00:00
|
|
|
#include "encoder.h"
|
2014-06-03 11:51:30 +00:00
|
|
|
#include "encoderstate.h"
|
2016-04-01 14:14:23 +00:00
|
|
|
#include "global.h" // IWYU pragma: keep
|
|
|
|
|
2022-04-28 11:18:09 +00:00
|
|
|
extern const uint8_t uvg_g_chroma_scale[58];
|
2022-11-16 10:27:28 +00:00
|
|
|
extern const int16_t uvg_g_inv_quant_scales[2][6];
|
|
|
|
extern const int16_t uvg_g_quant_scales[2][6];
|
2013-09-19 10:55:34 +00:00
|
|
|
|
2022-08-31 10:53:17 +00:00
|
|
|
#define COEFF_ORDER_LINEAR 0
|
|
|
|
#define COEFF_ORDER_CU 1
|
|
|
|
|
2022-08-03 10:23:27 +00:00
|
|
|
void uvg_transformskip(const encoder_control_t *encoder, int16_t *block,int16_t *coeff, int8_t width, int8_t height);
|
2022-08-16 12:52:30 +00:00
|
|
|
void uvg_itransformskip(const encoder_control_t *encoder, int16_t *block,int16_t *coeff, int8_t width, int8_t height);
|
2014-04-02 07:54:03 +00:00
|
|
|
|
2022-04-28 11:18:09 +00:00
|
|
|
void uvg_transform2d(const encoder_control_t * const encoder,
|
2018-01-12 09:16:01 +00:00
|
|
|
int16_t *block,
|
|
|
|
int16_t *coeff,
|
2022-08-03 10:23:27 +00:00
|
|
|
int8_t block_width,
|
|
|
|
int8_t block_height,
|
2018-01-12 09:16:01 +00:00
|
|
|
color_t color,
|
2021-02-02 09:09:43 +00:00
|
|
|
const cu_info_t *tu);
|
|
|
|
|
2022-04-28 11:18:09 +00:00
|
|
|
void uvg_itransform2d(const encoder_control_t * const encoder,
|
2018-01-12 09:16:01 +00:00
|
|
|
int16_t *block,
|
|
|
|
int16_t *coeff,
|
2022-08-05 07:13:24 +00:00
|
|
|
int8_t block_width,
|
|
|
|
int8_t block_height,
|
2018-01-12 09:16:01 +00:00
|
|
|
color_t color,
|
2021-02-02 09:09:43 +00:00
|
|
|
const cu_info_t *tu);
|
|
|
|
|
2013-03-07 15:42:00 +00:00
|
|
|
|
2022-04-28 11:18:09 +00:00
|
|
|
int32_t uvg_get_scaled_qp(color_t color, int8_t qp, int8_t qp_offset, int8_t const* const chroma_scale);
|
2014-02-21 13:41:55 +00:00
|
|
|
|
2022-06-14 08:57:42 +00:00
|
|
|
void uvg_derive_lfnst_constraints(
|
|
|
|
cu_info_t* const pred_cu,
|
|
|
|
bool* constraints,
|
|
|
|
const coeff_t* coeff,
|
|
|
|
const int width,
|
2022-09-05 13:51:23 +00:00
|
|
|
const int height,
|
|
|
|
const vector2d_t * const ,
|
|
|
|
color_t color);
|
2022-06-14 08:57:42 +00:00
|
|
|
|
2022-06-06 08:22:50 +00:00
|
|
|
typedef struct {
|
|
|
|
double best_u_cost;
|
|
|
|
double best_v_cost;
|
|
|
|
double best_combined_cost;
|
|
|
|
int best_u_index;
|
|
|
|
int best_v_index;
|
|
|
|
int best_combined_index;
|
2022-06-13 08:17:39 +00:00
|
|
|
} uvg_chorma_ts_out_t;
|
2022-06-06 08:22:50 +00:00
|
|
|
|
2022-05-30 09:11:48 +00:00
|
|
|
void uvg_quantize_lcu_residual(
|
2022-03-23 11:39:38 +00:00
|
|
|
encoder_state_t *state,
|
|
|
|
bool luma,
|
|
|
|
bool chroma,
|
|
|
|
const bool jccr,
|
2022-07-29 12:36:56 +00:00
|
|
|
const cu_loc_t* cu_loc,
|
2022-03-23 11:39:38 +00:00
|
|
|
cu_info_t *cur_cu,
|
|
|
|
lcu_t* lcu,
|
2022-06-28 06:48:21 +00:00
|
|
|
bool early_skip,
|
|
|
|
enum uvg_tree_type tree_type);
|
2014-05-12 08:35:40 +00:00
|
|
|
|
2022-06-13 08:17:39 +00:00
|
|
|
void uvg_chroma_transform_search(
|
2022-06-06 08:22:50 +00:00
|
|
|
encoder_state_t* const state,
|
|
|
|
lcu_t* const lcu,
|
2022-06-06 09:10:31 +00:00
|
|
|
cabac_data_t* temp_cabac,
|
2022-09-06 10:45:08 +00:00
|
|
|
const cu_loc_t* const cu_loc,
|
2022-06-06 08:22:50 +00:00
|
|
|
const int offset,
|
|
|
|
cu_info_t* pred_cu,
|
2022-06-13 08:17:39 +00:00
|
|
|
uvg_pixel u_pred[1024],
|
|
|
|
uvg_pixel v_pred[1024],
|
2022-06-06 08:22:50 +00:00
|
|
|
int16_t u_resi[1024],
|
|
|
|
int16_t v_resi[1024],
|
2022-06-27 07:36:44 +00:00
|
|
|
uvg_chorma_ts_out_t* chorma_ts_out,
|
|
|
|
enum uvg_tree_type tree_type);
|
2022-06-06 08:22:50 +00:00
|
|
|
|
2022-06-13 08:17:39 +00:00
|
|
|
enum uvg_chroma_transforms {
|
2022-06-06 08:22:50 +00:00
|
|
|
DCT7_CHROMA = 0,
|
|
|
|
CHROMA_TS = 4,
|
2022-06-06 09:10:31 +00:00
|
|
|
NO_RESIDUAL = 8,
|
2022-06-06 08:22:50 +00:00
|
|
|
JCCR_1 = 1,
|
|
|
|
JCCR_2 = 2,
|
|
|
|
JCCR_3 = 3,
|
|
|
|
};
|
|
|
|
|
2022-06-28 06:48:21 +00:00
|
|
|
void uvg_fwd_lfnst(
|
|
|
|
const cu_info_t* const cur_cu,
|
|
|
|
const int width,
|
|
|
|
const int height,
|
2022-06-28 08:11:10 +00:00
|
|
|
const color_t color,
|
2022-06-28 06:48:21 +00:00
|
|
|
const uint16_t lfnst_idx,
|
|
|
|
coeff_t *coeffs,
|
2022-11-30 11:26:48 +00:00
|
|
|
enum uvg_tree_type tree_type,
|
|
|
|
int8_t luma_mode);
|
2022-06-28 06:48:21 +00:00
|
|
|
|
|
|
|
void uvg_inv_lfnst(
|
|
|
|
const cu_info_t* cur_cu,
|
|
|
|
const int width,
|
|
|
|
const int height,
|
2022-06-28 08:11:10 +00:00
|
|
|
const color_t color,
|
2022-06-28 06:48:21 +00:00
|
|
|
const uint16_t lfnst_idx,
|
|
|
|
coeff_t* coeffs,
|
2022-11-30 11:26:48 +00:00
|
|
|
enum uvg_tree_type tree_type,
|
|
|
|
int8_t luma_mode);
|
2022-03-14 20:14:19 +00:00
|
|
|
|
2012-06-11 15:43:29 +00:00
|
|
|
#endif
|