2013-09-19 07:35:34 +00:00
|
|
|
#ifndef TRANSFORM_H_
|
|
|
|
#define TRANSFORM_H_
|
2014-01-24 10:37:15 +00:00
|
|
|
/*****************************************************************************
|
|
|
|
* This file is part of Kvazaar HEVC 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
|
|
|
|
|
2015-08-26 08:50:27 +00:00
|
|
|
extern const uint8_t kvz_g_chroma_scale[58];
|
|
|
|
extern const int16_t kvz_g_inv_quant_scales[6];
|
2021-04-30 10:44:42 +00:00
|
|
|
extern const int16_t kvz_g_quant_scales[6];
|
2013-09-19 10:55:34 +00:00
|
|
|
|
2015-08-26 08:50:27 +00:00
|
|
|
void kvz_transformskip(const encoder_control_t *encoder, int16_t *block,int16_t *coeff, int8_t block_size);
|
|
|
|
void kvz_itransformskip(const encoder_control_t *encoder, int16_t *block,int16_t *coeff, int8_t block_size);
|
2014-04-02 07:54:03 +00:00
|
|
|
|
2018-01-12 09:16:01 +00:00
|
|
|
void kvz_transform2d(const encoder_control_t * const encoder,
|
|
|
|
int16_t *block,
|
|
|
|
int16_t *coeff,
|
|
|
|
int8_t block_size,
|
|
|
|
color_t color,
|
2021-02-02 09:09:43 +00:00
|
|
|
const cu_info_t *tu);
|
|
|
|
|
2018-01-12 09:16:01 +00:00
|
|
|
void kvz_itransform2d(const encoder_control_t * const encoder,
|
|
|
|
int16_t *block,
|
|
|
|
int16_t *coeff,
|
|
|
|
int8_t block_size,
|
|
|
|
color_t color,
|
2021-02-02 09:09:43 +00:00
|
|
|
const cu_info_t *tu);
|
|
|
|
|
2013-03-07 15:42:00 +00:00
|
|
|
|
2021-08-13 12:37:23 +00:00
|
|
|
int32_t kvz_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
|
|
|
|
2016-10-17 09:28:36 +00:00
|
|
|
void kvz_quantize_lcu_residual(encoder_state_t *state,
|
2016-10-17 09:57:34 +00:00
|
|
|
bool luma,
|
|
|
|
bool chroma,
|
2016-10-17 09:28:36 +00:00
|
|
|
int32_t x,
|
|
|
|
int32_t y,
|
|
|
|
uint8_t depth,
|
|
|
|
cu_info_t *cur_cu,
|
2020-04-09 20:41:36 +00:00
|
|
|
lcu_t* lcu,
|
|
|
|
bool early_skip);
|
2014-05-12 08:35:40 +00:00
|
|
|
|
2012-06-11 15:43:29 +00:00
|
|
|
#endif
|