mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-24 10:34:05 +00:00
66 lines
2.7 KiB
C
66 lines
2.7 KiB
C
#ifndef SAO_H_
|
|
#define SAO_H_
|
|
/*****************************************************************************
|
|
* This file is part of Kvazaar HEVC encoder.
|
|
*
|
|
* Copyright (C) 2013-2014 Tampere University of Technology and others (see
|
|
* COPYING file).
|
|
*
|
|
* Kvazaar is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as published
|
|
* by the Free Software Foundation.
|
|
*
|
|
* Kvazaar is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with Kvazaar. If not, see <http://www.gnu.org/licenses/>.
|
|
****************************************************************************/
|
|
|
|
/*
|
|
* \file
|
|
* \brief Coding Unit (CU) and picture data related functions.
|
|
*/
|
|
|
|
#include "checkpoint.h"
|
|
#include "global.h"
|
|
#include "videoframe.h"
|
|
#include "encoder.h"
|
|
#include "encoderstate.h"
|
|
#include "math.h"
|
|
|
|
typedef enum { SAO_TYPE_NONE = 0, SAO_TYPE_BAND, SAO_TYPE_EDGE } sao_type;
|
|
typedef enum { SAO_EO0 = 0, SAO_EO1, SAO_EO2, SAO_EO3, SAO_NUM_EO } sao_eo_class;
|
|
typedef enum { SAO_EO_CAT0 = 0, SAO_EO_CAT1, SAO_EO_CAT2, SAO_EO_CAT3, SAO_EO_CAT4, NUM_SAO_EDGE_CATEGORIES } sao_eo_cat;
|
|
|
|
|
|
typedef struct sao_info_struct {
|
|
sao_type type;
|
|
sao_eo_class eo_class;
|
|
int ddistortion;
|
|
int merge_left_flag;
|
|
int merge_up_flag;
|
|
int band_position;
|
|
int offsets[NUM_SAO_EDGE_CATEGORIES];
|
|
} sao_info;
|
|
|
|
#define CHECKPOINT_SAO_INFO(prefix_str, sao) CHECKPOINT(prefix_str " type=%d eo_class=%d ddistortion=%d " \
|
|
"merge_left_flag=%d merge_up_flag=%d band_position=%d " \
|
|
"offsets[0]=%d offsets[1]=%d offsets[2]=%d offsets[3]=%d offsets[4]=%d", \
|
|
(sao).type, (sao).eo_class, (sao).ddistortion, \
|
|
(sao).merge_left_flag, (sao).merge_up_flag, (sao).band_position, \
|
|
(sao).offsets[0], (sao).offsets[1], (sao).offsets[2], (sao).offsets[3], (sao).offsets[4])
|
|
|
|
|
|
void init_sao_info(sao_info *sao);
|
|
void sao_search_chroma(const encoder_state * encoder_state, const videoframe *frame, unsigned x_ctb, unsigned y_ctb, sao_info *sao, sao_info *sao_top, sao_info *sao_left);
|
|
void sao_search_luma(const encoder_state * encoder_state, const videoframe *frame, unsigned x_ctb, unsigned y_ctb, sao_info *sao, sao_info *sao_top, sao_info *sao_left);
|
|
void sao_reconstruct(const encoder_control * encoder, videoframe *frame, const pixel *old_rec,
|
|
unsigned x_ctb, unsigned y_ctb,
|
|
const sao_info *sao, color_index color_i);
|
|
void sao_reconstruct_frame(encoder_state *encoder_state);
|
|
|
|
#endif
|