uvg266/src/filter.h

64 lines
2.5 KiB
C
Raw Normal View History

#ifndef FILTER_H_
#define FILTER_H_
/*****************************************************************************
* This file is part of Kvazaar HEVC encoder.
2014-02-21 13:00:20 +00:00
*
* 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/>.
****************************************************************************/
/*
2013-09-18 14:29:30 +00:00
* \file
* \brief Filtering, such as deblocking.
*/
#include "global.h"
#include "encoder.h"
2013-09-19 12:29:39 +00:00
//////////////////////////////////////////////////////////////////////////
// FUNCTIONS
// Deblocking
void filter_deblock_cu(const encoder_control * const encoder, int32_t x_px, int32_t y_px,
2013-09-19 12:29:39 +00:00
int8_t depth, int32_t edge);
void filter_deblock_edge_luma(const encoder_control * const encoder,
2014-02-21 13:00:20 +00:00
int32_t x_pos, int32_t y_pos,
2013-09-19 12:29:39 +00:00
int8_t depth, int8_t dir);
void filter_deblock_edge_chroma(const encoder_control * const encoder,
2014-02-21 13:00:20 +00:00
int32_t xpos, int32_t ypos,
2013-09-19 12:29:39 +00:00
int8_t depth, int8_t dir);
void filter_deblock(const encoder_control * const encoder);
void filter_deblock_lcu(const encoder_control * const encoder, int x_px, int y_px);
void filter_deblock_luma(pixel *src, int32_t offset, int32_t tc , int8_t sw,
2013-09-19 12:29:39 +00:00
int8_t part_p_nofilter, int8_t part_q_nofilter,
2014-02-21 13:00:20 +00:00
int32_t thr_cut,
2013-09-19 12:29:39 +00:00
int8_t filter_second_p, int8_t filter_second_q);
void filter_deblock_chroma(pixel *src, int32_t offset, int32_t tc,
2013-09-19 12:29:39 +00:00
int8_t part_p_nofilter, int8_t part_q_nofilter);
// INTERPOLATION
void filter_inter_halfpel_chroma(int16_t *src, int16_t src_stride, int width, int height,
int16_t *dst, int16_t dst_stride, int8_t hor_flag, int8_t ver_flag);
2013-09-19 12:29:39 +00:00
// SAO
//////////////////////////////////////////////////////////////////////////
// MACROS
#define EDGE_VER 0
#define EDGE_HOR 1
#endif