2013-09-19 07:35:34 +00:00
|
|
|
#ifndef CABAC_H_
|
|
|
|
#define CABAC_H_
|
2014-01-24 10:37:15 +00:00
|
|
|
/*****************************************************************************
|
|
|
|
* This file is part of Kvazaar HEVC encoder.
|
2014-03-06 16:14:01 +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 CABAC
|
2013-09-18 14:29:30 +00:00
|
|
|
* \file
|
2015-12-17 11:42:57 +00:00
|
|
|
* Coding bins using CABAC.
|
2012-06-04 10:47:12 +00:00
|
|
|
*/
|
|
|
|
|
2016-03-30 09:41:37 +00:00
|
|
|
#include "global.h" // IWYU pragma: keep
|
2013-09-18 09:16:03 +00:00
|
|
|
|
|
|
|
#include "bitstream.h"
|
|
|
|
|
2021-12-02 08:05:21 +00:00
|
|
|
extern FILE* bit_cost_file;
|
|
|
|
|
2016-06-07 08:28:30 +00:00
|
|
|
struct encoder_state_t;
|
2013-09-18 09:16:03 +00:00
|
|
|
|
2013-09-19 09:28:57 +00:00
|
|
|
// Types
|
2014-04-04 08:50:07 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
uint8_t uc_state;
|
2015-03-04 11:26:48 +00:00
|
|
|
} cabac_ctx_t;
|
2014-04-04 08:50:07 +00:00
|
|
|
|
2012-06-04 10:47:12 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
2015-03-04 11:26:48 +00:00
|
|
|
cabac_ctx_t *cur_ctx;
|
2013-09-19 08:05:42 +00:00
|
|
|
uint32_t low;
|
|
|
|
uint32_t range;
|
|
|
|
uint32_t buffered_byte;
|
2013-09-18 11:06:45 +00:00
|
|
|
int32_t num_buffered_bytes;
|
|
|
|
int32_t bits_left;
|
2014-04-04 08:49:31 +00:00
|
|
|
int8_t only_count;
|
2015-03-04 11:20:18 +00:00
|
|
|
bitstream_t *stream;
|
2014-04-04 13:04:44 +00:00
|
|
|
|
2014-04-04 08:50:07 +00:00
|
|
|
// CONTEXTS
|
2014-09-23 21:58:17 +00:00
|
|
|
struct {
|
2015-03-04 11:26:48 +00:00
|
|
|
cabac_ctx_t sao_merge_flag_model;
|
|
|
|
cabac_ctx_t sao_type_idx_model;
|
|
|
|
cabac_ctx_t split_flag_model[3]; //!< \brief split flag context models
|
|
|
|
cabac_ctx_t intra_mode_model; //!< \brief intra mode context models
|
|
|
|
cabac_ctx_t chroma_pred_model[2];
|
2015-03-10 07:37:25 +00:00
|
|
|
cabac_ctx_t inter_dir[5];
|
2015-03-04 11:26:48 +00:00
|
|
|
cabac_ctx_t trans_subdiv_model[3]; //!< \brief intra mode context models
|
|
|
|
cabac_ctx_t qt_cbf_model_luma[4];
|
|
|
|
cabac_ctx_t qt_cbf_model_chroma[4];
|
2016-08-21 04:36:13 +00:00
|
|
|
cabac_ctx_t cu_qp_delta_abs[4];
|
2015-03-04 11:26:48 +00:00
|
|
|
cabac_ctx_t part_size_model[4];
|
|
|
|
cabac_ctx_t cu_sig_coeff_group_model[4];
|
|
|
|
cabac_ctx_t cu_sig_model_luma[27];
|
|
|
|
cabac_ctx_t cu_sig_model_chroma[15];
|
|
|
|
cabac_ctx_t cu_ctx_last_y_luma[15];
|
|
|
|
cabac_ctx_t cu_ctx_last_y_chroma[15];
|
|
|
|
cabac_ctx_t cu_ctx_last_x_luma[15];
|
|
|
|
cabac_ctx_t cu_ctx_last_x_chroma[15];
|
|
|
|
cabac_ctx_t cu_one_model_luma[16];
|
|
|
|
cabac_ctx_t cu_one_model_chroma[8];
|
|
|
|
cabac_ctx_t cu_abs_model_luma[4];
|
|
|
|
cabac_ctx_t cu_abs_model_chroma[2];
|
|
|
|
cabac_ctx_t cu_pred_mode_model;
|
|
|
|
cabac_ctx_t cu_skip_flag_model[3];
|
|
|
|
cabac_ctx_t cu_merge_idx_ext_model;
|
|
|
|
cabac_ctx_t cu_merge_flag_ext_model;
|
2016-05-30 07:41:53 +00:00
|
|
|
cabac_ctx_t cu_transquant_bypass;
|
2015-03-04 11:26:48 +00:00
|
|
|
cabac_ctx_t cu_mvd_model[2];
|
|
|
|
cabac_ctx_t cu_ref_pic_model[2];
|
|
|
|
cabac_ctx_t mvp_idx_model[2];
|
|
|
|
cabac_ctx_t cu_qt_root_cbf_model;
|
|
|
|
cabac_ctx_t transform_skip_model_luma;
|
|
|
|
cabac_ctx_t transform_skip_model_chroma;
|
2014-09-23 21:58:17 +00:00
|
|
|
} ctx;
|
2015-03-04 11:27:32 +00:00
|
|
|
} cabac_data_t;
|
2012-06-04 10:47:12 +00:00
|
|
|
|
|
|
|
|
2013-09-19 09:28:57 +00:00
|
|
|
// Globals
|
2015-08-26 08:50:27 +00:00
|
|
|
extern const uint8_t kvz_g_auc_next_state_mps[128];
|
|
|
|
extern const uint8_t kvz_g_auc_next_state_lps[128];
|
|
|
|
extern const uint8_t kvz_g_auc_lpst_table[64][4];
|
|
|
|
extern const uint8_t kvz_g_auc_renorm_table[32];
|
2012-06-04 10:47:12 +00:00
|
|
|
|
2012-06-13 15:08:15 +00:00
|
|
|
|
2013-09-19 09:28:57 +00:00
|
|
|
// Functions
|
2015-08-26 08:50:27 +00:00
|
|
|
void kvz_cabac_start(cabac_data_t *data);
|
|
|
|
void kvz_cabac_encode_bin(cabac_data_t *data, uint32_t bin_value);
|
|
|
|
void kvz_cabac_encode_bin_ep(cabac_data_t *data, uint32_t bin_value);
|
|
|
|
void kvz_cabac_encode_bins_ep(cabac_data_t *data, uint32_t bin_values, int num_bins);
|
|
|
|
void kvz_cabac_encode_bin_trm(cabac_data_t *data, uint8_t bin_value);
|
|
|
|
void kvz_cabac_write(cabac_data_t *data);
|
|
|
|
void kvz_cabac_finish(cabac_data_t *data);
|
|
|
|
void kvz_cabac_write_coeff_remain(cabac_data_t *cabac, uint32_t symbol,
|
2013-09-19 09:28:57 +00:00
|
|
|
uint32_t r_param);
|
2016-06-07 12:10:27 +00:00
|
|
|
void kvz_cabac_write_coeff_remain_encry(struct encoder_state_t * const state, cabac_data_t * const cabac, const uint32_t symbol,
|
2020-01-27 11:11:31 +00:00
|
|
|
const uint32_t r_param, int32_t base_level);
|
2016-06-07 08:28:30 +00:00
|
|
|
void kvz_cabac_write_ep_ex_golomb(struct encoder_state_t * const state, cabac_data_t *data,
|
2020-01-27 11:11:31 +00:00
|
|
|
uint32_t symbol, uint32_t count);
|
2015-08-26 08:50:27 +00:00
|
|
|
void kvz_cabac_write_unary_max_symbol(cabac_data_t *data, cabac_ctx_t *ctx,
|
2014-03-06 16:14:01 +00:00
|
|
|
uint32_t symbol, int32_t offset,
|
2013-09-19 09:28:57 +00:00
|
|
|
uint32_t max_symbol);
|
2015-08-26 08:50:27 +00:00
|
|
|
void kvz_cabac_write_unary_max_symbol_ep(cabac_data_t *data, unsigned int symbol, unsigned int max_symbol);
|
2013-09-19 09:28:57 +00:00
|
|
|
|
2021-12-02 08:05:21 +00:00
|
|
|
extern const float kvz_f_entropy_bits[128];
|
|
|
|
#define CTX_ENTROPY_FBITS(ctx, val) kvz_f_entropy_bits[(ctx)->uc_state ^ (val)]
|
|
|
|
extern double bits_written;
|
2013-09-19 09:37:27 +00:00
|
|
|
|
2013-09-19 09:28:57 +00:00
|
|
|
// Macros
|
2016-06-22 02:38:36 +00:00
|
|
|
#define CTX_STATE(ctx) ((ctx)->uc_state >> 1)
|
|
|
|
#define CTX_MPS(ctx) ((ctx)->uc_state & 1)
|
2015-08-26 08:50:27 +00:00
|
|
|
#define CTX_UPDATE_LPS(ctx) { (ctx)->uc_state = kvz_g_auc_next_state_lps[ (ctx)->uc_state ]; }
|
|
|
|
#define CTX_UPDATE_MPS(ctx) { (ctx)->uc_state = kvz_g_auc_next_state_mps[ (ctx)->uc_state ]; }
|
2014-01-16 15:13:48 +00:00
|
|
|
|
2021-12-02 08:05:21 +00:00
|
|
|
#define FILE_BITS(bits, x, y, depth, name) fprintf(bit_cost_file, "%s\t%d\t%d\t%d\t%f\n", (name), (x), (y), (depth), (bits))
|
|
|
|
|
2013-09-19 09:28:57 +00:00
|
|
|
#ifdef VERBOSE
|
|
|
|
#define CABAC_BIN(data, value, name) { \
|
2021-12-02 08:05:21 +00:00
|
|
|
uint32_t prev_state = (data)->cur_ctx->uc_state; \
|
|
|
|
if(!(data)->only_count) bits_written += CTX_ENTROPY_FBITS((data)->cur_ctx, (value));\
|
|
|
|
kvz_cabac_encode_bin((data), (value)); \
|
|
|
|
if(!(data)->only_count) printf("%s = %u, state = %u -> %u MPS = %u bits = %f\n", \
|
|
|
|
(name), (uint32_t)(value), prev_state, (data)->cur_ctx->uc_state, CTX_MPS((data)->cur_ctx), bits_written); }
|
2013-09-19 09:28:57 +00:00
|
|
|
|
|
|
|
#define CABAC_BINS_EP(data, value, bins, name) { \
|
2021-12-02 08:05:21 +00:00
|
|
|
uint32_t prev_state = (data)->cur_ctx->uc_state; \
|
2016-06-22 02:38:36 +00:00
|
|
|
kvz_cabac_encode_bins_ep((data), (value), (bins)); \
|
2021-12-02 08:05:21 +00:00
|
|
|
if(!(data)->only_count) bits_written += (bins); \
|
|
|
|
if(!(data)->only_count) printf("%s = %u(%u bins), state = %u -> %u\n", \
|
|
|
|
(name), (uint32_t)(value), (bins), prev_state, (data)->cur_ctx->uc_state); }
|
2013-09-19 09:28:57 +00:00
|
|
|
|
|
|
|
#define CABAC_BIN_EP(data, value, name) { \
|
2021-12-02 08:05:21 +00:00
|
|
|
uint32_t prev_state = (data)->cur_ctx->uc_state; \
|
2016-06-22 02:38:36 +00:00
|
|
|
kvz_cabac_encode_bin_ep((data), (value)); \
|
2021-12-02 08:05:21 +00:00
|
|
|
if(!(data)->only_count) bits_written += 1; \
|
|
|
|
if(!(data)->only_count) printf("%s = %u, state = %u -> %u\n", \
|
|
|
|
(name), (uint32_t)(value), prev_state, (data)->cur_ctx->uc_state); }
|
2012-06-07 14:38:28 +00:00
|
|
|
#else
|
2013-09-19 09:28:57 +00:00
|
|
|
#define CABAC_BIN(data, value, name) \
|
2016-06-22 02:38:36 +00:00
|
|
|
kvz_cabac_encode_bin((data), (value));
|
2013-09-19 09:28:57 +00:00
|
|
|
#define CABAC_BINS_EP(data, value, bins, name) \
|
2016-06-22 02:38:36 +00:00
|
|
|
kvz_cabac_encode_bins_ep((data), (value), (bins));
|
2013-09-19 09:28:57 +00:00
|
|
|
#define CABAC_BIN_EP(data, value, name) \
|
2016-06-22 02:38:36 +00:00
|
|
|
kvz_cabac_encode_bin_ep((data), (value));
|
2012-06-07 14:38:28 +00:00
|
|
|
#endif
|
|
|
|
|
2012-06-04 10:47:12 +00:00
|
|
|
#endif
|