2014-01-24 10:37:15 +00:00
|
|
|
/*****************************************************************************
|
|
|
|
* 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
|
2014-01-24 10:37:15 +00:00
|
|
|
* 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
|
2013-04-03 08:05:07 +00:00
|
|
|
*/
|
|
|
|
|
2013-09-18 09:16:03 +00:00
|
|
|
#include "filter.h"
|
2013-04-03 08:05:07 +00:00
|
|
|
|
2014-04-17 11:39:12 +00:00
|
|
|
#include <assert.h>
|
2013-04-03 08:05:07 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2013-09-18 09:16:03 +00:00
|
|
|
|
2013-04-03 08:05:07 +00:00
|
|
|
#include "config.h"
|
|
|
|
#include "bitstream.h"
|
2014-06-05 12:54:58 +00:00
|
|
|
#include "videoframe.h"
|
2013-04-03 08:05:07 +00:00
|
|
|
#include "cabac.h"
|
2013-09-19 12:29:39 +00:00
|
|
|
#include "transform.h"
|
2013-04-03 08:05:07 +00:00
|
|
|
|
2013-09-19 12:29:39 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
// INITIALIZATIONS
|
|
|
|
const uint8_t g_tc_table_8x8[54] =
|
2013-04-03 08:05:07 +00:00
|
|
|
{
|
2013-09-19 12:29:39 +00:00
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 1, 1,
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 2, 2, 2,
|
|
|
|
2, 3, 3, 3, 3, 4, 4, 4, 5, 5,
|
|
|
|
6, 6, 7, 8, 9, 10, 11, 13, 14, 16,
|
|
|
|
18, 20, 22, 24
|
2013-04-03 08:05:07 +00:00
|
|
|
};
|
|
|
|
|
2013-09-19 12:29:39 +00:00
|
|
|
const uint8_t g_beta_table_8x8[52] =
|
2013-04-03 08:05:07 +00:00
|
|
|
{
|
2013-09-19 12:29:39 +00:00
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 6, 7, 8, 9,
|
|
|
|
10, 11, 12, 13, 14, 15, 16, 17, 18, 20,
|
|
|
|
22, 24, 26, 28, 30, 32, 34, 36, 38, 40,
|
|
|
|
42, 44, 46, 48, 50, 52, 54, 56, 58, 60,
|
|
|
|
62, 64
|
2013-04-03 08:05:07 +00:00
|
|
|
};
|
|
|
|
|
2014-12-11 14:38:43 +00:00
|
|
|
const int8_t g_luma_filter[4][8] =
|
2013-09-23 15:07:16 +00:00
|
|
|
{
|
|
|
|
{ 0, 0, 0, 64, 0, 0, 0, 0 },
|
|
|
|
{ -1, 4, -10, 58, 17, -5, 1, 0 },
|
|
|
|
{ -1, 4, -11, 40, 40, -11, 4, -1 },
|
|
|
|
{ 0, 1, -5, 17, 58, -10, 4, -1 }
|
|
|
|
};
|
|
|
|
|
2014-12-11 14:38:43 +00:00
|
|
|
const int8_t g_chroma_filter[8][4] =
|
2013-09-23 15:07:16 +00:00
|
|
|
{
|
|
|
|
{ 0, 64, 0, 0 },
|
|
|
|
{ -2, 58, 10, -2 },
|
|
|
|
{ -4, 54, 16, -2 },
|
|
|
|
{ -6, 46, 28, -4 },
|
|
|
|
{ -4, 36, 36, -4 },
|
|
|
|
{ -4, 28, 46, -6 },
|
|
|
|
{ -2, 16, 54, -4 },
|
|
|
|
{ -2, 10, 58, -2 }
|
|
|
|
};
|
|
|
|
|
2013-09-19 12:29:39 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
// FUNCTIONS
|
2013-04-03 08:05:07 +00:00
|
|
|
|
2013-09-19 12:29:39 +00:00
|
|
|
/**
|
|
|
|
* \brief
|
|
|
|
*/
|
2014-04-17 08:28:20 +00:00
|
|
|
INLINE void filter_deblock_luma(const encoder_control * const encoder, pixel *src, int32_t offset,
|
2013-09-19 12:29:39 +00:00
|
|
|
int32_t tc, int8_t sw,
|
|
|
|
int8_t part_P_nofilter, int8_t part_Q_nofilter,
|
|
|
|
int32_t thr_cut,
|
|
|
|
int8_t filter_second_P, int8_t filter_second_Q)
|
2013-04-03 08:05:07 +00:00
|
|
|
{
|
|
|
|
int32_t delta;
|
2014-02-21 13:00:20 +00:00
|
|
|
|
2013-09-19 12:29:39 +00:00
|
|
|
int16_t m0 = src[-offset * 4];
|
|
|
|
int16_t m1 = src[-offset * 3];
|
|
|
|
int16_t m2 = src[-offset * 2];
|
|
|
|
int16_t m3 = src[-offset];
|
|
|
|
int16_t m4 = src[0];
|
|
|
|
int16_t m5 = src[offset];
|
|
|
|
int16_t m6 = src[offset * 2];
|
|
|
|
int16_t m7 = src[offset * 3];
|
|
|
|
|
|
|
|
if (sw) {
|
|
|
|
src[-offset * 3] = CLIP(m1 - 2*tc, m1 + 2*tc, (2*m0 + 3*m1 + m2 + m3 + m4 + 4) >> 3);
|
|
|
|
src[-offset * 2] = CLIP(m2 - 2*tc, m2 + 2*tc, ( m1 + m2 + m3 + m4 + 2) >> 2);
|
|
|
|
src[-offset] = CLIP(m3 - 2*tc, m3 + 2*tc, ( m1 + 2*m2 + 2*m3 + 2*m4 + m5 + 4) >> 3);
|
|
|
|
src[0] = CLIP(m4 - 2*tc, m4 + 2*tc, ( m2 + 2*m3 + 2*m4 + 2*m5 + m6 + 4) >> 3);
|
|
|
|
src[offset] = CLIP(m5 - 2*tc, m5 + 2*tc, ( m3 + m4 + m5 + m6 + 2) >> 2);
|
|
|
|
src[offset * 2] = CLIP(m6 - 2*tc, m6 + 2*tc, ( m3 + m4 + m5 + 3*m6 + 2*m7 + 4) >> 3);
|
|
|
|
} else {
|
2013-04-03 08:05:07 +00:00
|
|
|
// Weak filter
|
2013-09-19 12:29:39 +00:00
|
|
|
delta = (9*(m4 - m3) - 3*(m5 - m2) + 8) >> 4;
|
2013-04-03 08:05:07 +00:00
|
|
|
|
2013-09-19 12:29:39 +00:00
|
|
|
if (abs(delta) < thr_cut) {
|
|
|
|
int32_t tc2 = tc >> 1;
|
|
|
|
delta = CLIP(-tc, tc, delta);
|
2014-04-17 08:28:20 +00:00
|
|
|
src[-offset] = CLIP(0, (1 << encoder->bitdepth) - 1, (m3 + delta));
|
|
|
|
src[0] = CLIP(0, (1 << encoder->bitdepth) - 1, (m4 - delta));
|
2013-09-19 12:29:39 +00:00
|
|
|
|
|
|
|
if(filter_second_P) {
|
|
|
|
int32_t delta1 = CLIP(-tc2, tc2, (((m1 + m3 + 1) >> 1) - m2 + delta) >> 1);
|
2014-04-17 08:28:20 +00:00
|
|
|
src[-offset * 2] = CLIP(0, (1 << encoder->bitdepth) - 1, m2 + delta1);
|
2013-04-03 08:05:07 +00:00
|
|
|
}
|
2013-09-19 12:29:39 +00:00
|
|
|
if(filter_second_Q) {
|
|
|
|
int32_t delta2 = CLIP(-tc2, tc2, (((m6 + m4 + 1) >> 1) - m5 - delta) >> 1);
|
2014-04-17 08:28:20 +00:00
|
|
|
src[offset] = CLIP(0, (1 << encoder->bitdepth) - 1, m5 + delta2);
|
2013-04-03 08:05:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-19 12:29:39 +00:00
|
|
|
if(part_P_nofilter) {
|
2013-05-31 06:57:10 +00:00
|
|
|
src[-offset] = (uint8_t)m3;
|
|
|
|
src[-offset*2] = (uint8_t)m2;
|
|
|
|
src[-offset*3] = (uint8_t)m1;
|
2013-04-03 08:05:07 +00:00
|
|
|
}
|
2013-09-19 12:29:39 +00:00
|
|
|
if(part_Q_nofilter) {
|
|
|
|
src[0] = (uint8_t)m4;
|
|
|
|
src[offset] = (uint8_t)m5;
|
|
|
|
src[offset*2] = (uint8_t)m6;
|
2013-04-03 08:05:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-19 12:29:39 +00:00
|
|
|
/**
|
|
|
|
* \brief
|
|
|
|
*/
|
2014-04-17 08:28:20 +00:00
|
|
|
INLINE void filter_deblock_chroma(const encoder_control * const encoder, 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)
|
2013-05-29 11:50:03 +00:00
|
|
|
{
|
|
|
|
int32_t delta;
|
2013-09-19 12:29:39 +00:00
|
|
|
int16_t m2 = src[-offset * 2];
|
|
|
|
int16_t m3 = src[-offset];
|
|
|
|
int16_t m4 = src[0];
|
2014-02-21 13:00:20 +00:00
|
|
|
int16_t m5 = src[offset];
|
|
|
|
|
2013-09-19 12:29:39 +00:00
|
|
|
delta = CLIP(-tc,tc, (((m4 - m3) << 2) + m2 - m5 + 4 ) >> 3);
|
|
|
|
if(!part_P_nofilter) {
|
2014-04-17 08:28:20 +00:00
|
|
|
src[-offset] = CLIP(0, (1 << encoder->bitdepth) - 1, m3 + delta);
|
2013-05-29 11:50:03 +00:00
|
|
|
}
|
2013-09-19 12:29:39 +00:00
|
|
|
if(!part_Q_nofilter) {
|
2014-04-17 08:28:20 +00:00
|
|
|
src[0] = CLIP(0, (1 << encoder->bitdepth) - 1, m4 - delta);
|
2013-05-29 11:50:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-19 12:29:39 +00:00
|
|
|
/**
|
|
|
|
* \brief
|
|
|
|
*/
|
2014-04-17 12:42:20 +00:00
|
|
|
void filter_deblock_edge_luma(encoder_state * const encoder_state,
|
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)
|
2013-04-03 08:05:07 +00:00
|
|
|
{
|
2014-06-05 12:54:58 +00:00
|
|
|
const videoframe * const frame = encoder_state->tile->frame;
|
2014-04-17 12:42:20 +00:00
|
|
|
const encoder_control * const encoder = encoder_state->encoder_control;
|
|
|
|
|
2014-06-05 12:54:58 +00:00
|
|
|
const cu_info *cu_q = videoframe_get_cu_const(frame, xpos>>MIN_SIZE, ypos>>MIN_SIZE);
|
2014-02-21 13:00:20 +00:00
|
|
|
|
2014-03-20 15:30:20 +00:00
|
|
|
{
|
2014-03-21 08:42:41 +00:00
|
|
|
// Return if called with a coordinate which is not at CU or TU boundary.
|
|
|
|
// TODO: Add handling for asymmetric inter CU boundaries which do not coincide
|
|
|
|
// with transform boundaries.
|
|
|
|
const int tu_width = LCU_WIDTH >> cu_q->tr_depth;
|
|
|
|
if (dir == EDGE_HOR && (ypos & (tu_width - 1))) return;
|
|
|
|
if (dir == EDGE_VER && (xpos & (tu_width - 1))) return;
|
2014-03-20 15:30:20 +00:00
|
|
|
}
|
|
|
|
|
2013-04-03 08:05:07 +00:00
|
|
|
{
|
2014-06-12 05:50:24 +00:00
|
|
|
int32_t stride = frame->rec->stride;
|
2014-03-21 08:50:47 +00:00
|
|
|
int32_t offset = stride;
|
|
|
|
int32_t beta_offset_div2 = encoder->beta_offset_div2;
|
|
|
|
int32_t tc_offset_div2 = encoder->tc_offset_div2;
|
|
|
|
// TODO: support 10+bits
|
2014-06-05 12:54:58 +00:00
|
|
|
pixel *orig_src = &frame->rec->y[xpos + ypos*stride];
|
2014-03-21 08:50:47 +00:00
|
|
|
pixel *src = orig_src;
|
|
|
|
int32_t step = 1;
|
2014-06-05 08:41:58 +00:00
|
|
|
const cu_info *cu_p = NULL;
|
2014-03-21 08:50:47 +00:00
|
|
|
int16_t x_cu = xpos>>MIN_SIZE,y_cu = ypos>>MIN_SIZE;
|
|
|
|
int8_t strength = 0;
|
|
|
|
|
2014-05-06 08:13:18 +00:00
|
|
|
int32_t qp = encoder_state->global->QP;
|
2014-04-17 08:28:20 +00:00
|
|
|
int32_t bitdepth_scale = 1 << (encoder->bitdepth - 8);
|
2013-09-19 12:29:39 +00:00
|
|
|
int32_t b_index = CLIP(0, 51, qp + (beta_offset_div2 << 1));
|
|
|
|
int32_t beta = g_beta_table_8x8[b_index] * bitdepth_scale;
|
|
|
|
int32_t side_threshold = (beta + (beta >>1 )) >> 3;
|
|
|
|
uint32_t blocks_in_part = (LCU_WIDTH >> depth) / 4;
|
2013-05-30 07:37:47 +00:00
|
|
|
uint32_t block_idx;
|
2013-10-08 09:12:04 +00:00
|
|
|
int32_t tc_index,tc,thr_cut;
|
2014-03-21 08:50:47 +00:00
|
|
|
|
|
|
|
if (dir == EDGE_VER) {
|
|
|
|
offset = 1;
|
|
|
|
step = stride;
|
|
|
|
}
|
|
|
|
|
2014-02-21 13:00:20 +00:00
|
|
|
// TODO: add CU based QP calculation
|
2013-05-29 09:13:47 +00:00
|
|
|
|
2013-09-19 12:29:39 +00:00
|
|
|
// For each 4-pixel part in the edge
|
2014-02-21 13:00:20 +00:00
|
|
|
for (block_idx = 0; block_idx < blocks_in_part; ++block_idx) {
|
2013-09-19 12:29:39 +00:00
|
|
|
int32_t dp0, dq0, dp3, dq3, d0, d3, dp, dq, d;
|
2014-03-20 15:30:20 +00:00
|
|
|
|
2013-10-08 09:12:04 +00:00
|
|
|
{
|
2014-03-20 15:30:20 +00:00
|
|
|
vector2d px = {
|
|
|
|
(dir == EDGE_HOR ? xpos + block_idx * 4 : xpos),
|
|
|
|
(dir == EDGE_VER ? ypos + block_idx * 4 : ypos)
|
|
|
|
};
|
|
|
|
|
|
|
|
// Don't deblock the last 4x4 block of the LCU. This will be deblocked
|
|
|
|
// when processing the next LCU.
|
2014-06-05 12:54:58 +00:00
|
|
|
if (block_idx > 0 && dir == EDGE_HOR && (px.x + 4) % 64 == 0 && (px.x + 4 != frame->width)) {
|
2014-03-20 15:30:20 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2013-10-08 09:12:04 +00:00
|
|
|
// CU in the side we are filtering, update every 8-pixels
|
2014-06-05 12:54:58 +00:00
|
|
|
cu_p = videoframe_get_cu_const(frame, x_cu - (dir == EDGE_VER) + (dir == EDGE_HOR ? block_idx>>1 : 0), y_cu - (dir == EDGE_HOR) + (dir == EDGE_VER ? block_idx>>1 : 0));
|
2013-10-08 09:12:04 +00:00
|
|
|
// Filter strength
|
2014-02-21 13:00:20 +00:00
|
|
|
strength = 0;
|
2013-10-09 13:59:55 +00:00
|
|
|
if(cu_q->type == CU_INTRA || cu_p->type == CU_INTRA) {
|
2014-02-21 13:00:20 +00:00
|
|
|
strength = 2;
|
2014-05-06 11:43:12 +00:00
|
|
|
} else if(cbf_is_set(cu_q->cbf.y, cu_q->tr_depth) || cbf_is_set(cu_p->cbf.y, cu_p->tr_depth)) {
|
2013-10-17 12:14:22 +00:00
|
|
|
// Non-zero residual/coeffs and transform boundary
|
2014-05-06 11:43:12 +00:00
|
|
|
// Neither CU is intra so tr_depth <= MAX_DEPTH.
|
2013-10-09 13:59:55 +00:00
|
|
|
strength = 1;
|
|
|
|
} else if((abs(cu_q->inter.mv[0] - cu_p->inter.mv[0]) >= 4) || (abs(cu_q->inter.mv[1] - cu_p->inter.mv[1]) >= 4)) {
|
2014-05-06 11:43:12 +00:00
|
|
|
// Absolute motion vector diff between blocks >= 1 (Integer pixel)
|
2014-02-21 13:00:20 +00:00
|
|
|
strength = 1;
|
2014-02-18 13:22:20 +00:00
|
|
|
} else if(cu_q->inter.mv_ref != cu_p->inter.mv_ref) {
|
2014-02-21 13:00:20 +00:00
|
|
|
strength = 1;
|
2013-10-09 13:59:55 +00:00
|
|
|
}
|
2013-10-08 09:12:04 +00:00
|
|
|
tc_index = CLIP(0, 51 + 2, (int32_t)(qp + 2*(strength - 1) + (tc_offset_div2 << 1)));
|
|
|
|
tc = g_tc_table_8x8[tc_index] * bitdepth_scale;
|
|
|
|
thr_cut = tc * 10;
|
|
|
|
}
|
|
|
|
if(!strength) continue;
|
2013-09-19 12:29:39 +00:00
|
|
|
// Check conditions for filtering
|
|
|
|
// TODO: Get rid of these inline defines.
|
2013-05-31 06:57:10 +00:00
|
|
|
#define calc_DP(s,o) abs( (int16_t)s[-o*3] - (int16_t)2*s[-o*2] + (int16_t)s[-o] )
|
|
|
|
#define calc_DQ(s,o) abs( (int16_t)s[0] - (int16_t)2*s[o] + (int16_t)s[o*2] )
|
2013-05-29 09:13:47 +00:00
|
|
|
|
2014-02-21 13:00:20 +00:00
|
|
|
dp0 = calc_DP((src+step*(block_idx*4+0)), offset);
|
2013-09-19 12:29:39 +00:00
|
|
|
dq0 = calc_DQ((src+step*(block_idx*4+0)), offset);
|
2014-02-21 13:00:20 +00:00
|
|
|
dp3 = calc_DP((src+step*(block_idx*4+3)), offset);
|
2013-09-19 12:29:39 +00:00
|
|
|
dq3 = calc_DQ((src+step*(block_idx*4+3)), offset);
|
2013-04-03 08:05:07 +00:00
|
|
|
d0 = dp0 + dq0;
|
2013-05-30 07:37:47 +00:00
|
|
|
d3 = dp3 + dq3;
|
2013-04-03 08:05:07 +00:00
|
|
|
dp = dp0 + dp3;
|
|
|
|
dq = dq0 + dq3;
|
|
|
|
d = d0 + d3;
|
|
|
|
|
2013-09-19 12:29:39 +00:00
|
|
|
#if ENABLE_PCM
|
|
|
|
// TODO: add PCM deblocking
|
2013-04-03 08:05:07 +00:00
|
|
|
#endif
|
2013-09-19 12:29:39 +00:00
|
|
|
|
2014-02-21 13:00:20 +00:00
|
|
|
if (d < beta) {
|
2013-09-19 12:29:39 +00:00
|
|
|
int8_t filter_P = (dp < side_threshold) ? 1 : 0;
|
|
|
|
int8_t filter_Q = (dq < side_threshold) ? 1 : 0;
|
|
|
|
|
|
|
|
// Strong filtering flag checking
|
2014-02-21 13:00:20 +00:00
|
|
|
#define useStrongFiltering(o,d,s) ( ((abs(s[-o*4]-s[-o]) + abs(s[o*3]-s[0])) < (beta>>3)) && (d<(beta>>2)) && ( abs(s[-o]-s[0]) < ((tc*5+1)>>1)) )
|
2013-09-19 12:29:39 +00:00
|
|
|
int8_t sw = useStrongFiltering(offset, 2*d0, (src+step*(block_idx*4+0))) &&
|
|
|
|
useStrongFiltering(offset, 2*d3, (src+step*(block_idx*4+3)));
|
|
|
|
|
|
|
|
// Filter four rows/columns
|
2014-04-17 08:28:20 +00:00
|
|
|
filter_deblock_luma(encoder, src + step * (4*block_idx + 0), offset, tc, sw, 0, 0, thr_cut, filter_P, filter_Q);
|
|
|
|
filter_deblock_luma(encoder, src + step * (4*block_idx + 1), offset, tc, sw, 0, 0, thr_cut, filter_P, filter_Q);
|
|
|
|
filter_deblock_luma(encoder, src + step * (4*block_idx + 2), offset, tc, sw, 0, 0, thr_cut, filter_P, filter_Q);
|
|
|
|
filter_deblock_luma(encoder, src + step * (4*block_idx + 3), offset, tc, sw, 0, 0, thr_cut, filter_P, filter_Q);
|
2013-04-03 08:05:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-04-04 12:08:28 +00:00
|
|
|
}
|
|
|
|
|
2013-09-19 12:29:39 +00:00
|
|
|
/**
|
|
|
|
* \brief
|
|
|
|
*/
|
2014-04-17 12:42:20 +00:00
|
|
|
void filter_deblock_edge_chroma(encoder_state * const encoder_state,
|
2014-02-21 13:00:20 +00:00
|
|
|
int32_t x, int32_t y,
|
2013-09-19 12:29:39 +00:00
|
|
|
int8_t depth, int8_t dir)
|
2013-04-04 12:08:28 +00:00
|
|
|
{
|
2014-04-17 12:42:20 +00:00
|
|
|
const encoder_control * const encoder = encoder_state->encoder_control;
|
2014-06-05 12:54:58 +00:00
|
|
|
const videoframe * const frame = encoder_state->tile->frame;
|
|
|
|
const cu_info *cu_q = videoframe_get_cu_const(frame, x>>(MIN_SIZE-1), y>>(MIN_SIZE-1));
|
2014-06-05 08:41:58 +00:00
|
|
|
|
2014-03-21 08:50:47 +00:00
|
|
|
// Chroma edges that do not lay on a 8x8 grid are not deblocked.
|
|
|
|
if (depth >= MAX_DEPTH) {
|
|
|
|
if (dir == EDGE_HOR && (y & (8 - 1))) return;
|
|
|
|
if (dir == EDGE_VER && (x & (8 - 1))) return;
|
2013-04-04 12:08:28 +00:00
|
|
|
}
|
2013-05-30 07:37:47 +00:00
|
|
|
|
2014-03-20 15:30:20 +00:00
|
|
|
{
|
2014-03-21 08:50:47 +00:00
|
|
|
// Return if called with a coordinate which is not at CU or TU boundary.
|
|
|
|
// TODO: Add handling for asymmetric inter CU boundaries which do not coincide
|
|
|
|
// with transform boundaries.
|
|
|
|
const int tu_width = (LCU_WIDTH / 2) >> cu_q->tr_depth;
|
|
|
|
if (dir == EDGE_HOR && (y & (tu_width - 1))) return;
|
|
|
|
if (dir == EDGE_VER && (x & (tu_width - 1))) return;
|
2013-04-04 12:08:28 +00:00
|
|
|
}
|
2013-05-30 07:37:47 +00:00
|
|
|
|
2013-04-04 12:08:28 +00:00
|
|
|
// For each subpart
|
|
|
|
{
|
2014-06-12 05:50:24 +00:00
|
|
|
int32_t stride = frame->rec->stride >> 1;
|
2014-03-21 08:50:47 +00:00
|
|
|
int32_t tc_offset_div2 = encoder->tc_offset_div2;
|
|
|
|
// TODO: support 10+bits
|
2014-06-05 12:54:58 +00:00
|
|
|
pixel *src_u = &frame->rec->u[x + y*stride];
|
|
|
|
pixel *src_v = &frame->rec->v[x + y*stride];
|
2014-03-21 08:50:47 +00:00
|
|
|
// Init offset and step to EDGE_HOR
|
|
|
|
int32_t offset = stride;
|
|
|
|
int32_t step = 1;
|
2014-06-05 08:41:58 +00:00
|
|
|
const cu_info *cu_p = NULL;
|
2014-03-21 08:50:47 +00:00
|
|
|
int16_t x_cu = x>>(MIN_SIZE-1),y_cu = y>>(MIN_SIZE-1);
|
|
|
|
int8_t strength = 2;
|
|
|
|
|
2014-05-06 08:13:18 +00:00
|
|
|
int32_t QP = g_chroma_scale[encoder_state->global->QP];
|
2014-04-17 08:28:20 +00:00
|
|
|
int32_t bitdepth_scale = 1 << (encoder->bitdepth-8);
|
2014-02-21 13:00:20 +00:00
|
|
|
int32_t TC_index = CLIP(0, 51+2, (int32_t)(QP + 2*(strength-1) + (tc_offset_div2 << 1)));
|
2013-09-19 12:29:39 +00:00
|
|
|
int32_t Tc = g_tc_table_8x8[TC_index]*bitdepth_scale;
|
2014-03-21 08:50:47 +00:00
|
|
|
|
|
|
|
// Special handling for depth 4. It's meaning is that we want to bypass
|
|
|
|
// last block in LCU check in order to deblock just that block.
|
2014-03-20 15:30:20 +00:00
|
|
|
uint32_t blocks_in_part= (LCU_WIDTH>>(depth == 4 ? depth : depth + 1)) / 4;
|
2013-05-30 07:37:47 +00:00
|
|
|
uint32_t blk_idx;
|
|
|
|
|
2014-03-21 08:50:47 +00:00
|
|
|
if(dir == EDGE_VER) {
|
|
|
|
offset = 1;
|
|
|
|
step = stride;
|
|
|
|
}
|
|
|
|
|
2013-09-19 12:29:39 +00:00
|
|
|
for (blk_idx = 0; blk_idx < blocks_in_part; ++blk_idx)
|
2014-02-21 13:00:20 +00:00
|
|
|
{
|
2014-03-20 15:30:20 +00:00
|
|
|
vector2d px = {
|
|
|
|
(dir == EDGE_HOR ? x + blk_idx * 4 : x),
|
|
|
|
(dir == EDGE_VER ? y + blk_idx * 4 : y)
|
|
|
|
};
|
2014-06-05 12:54:58 +00:00
|
|
|
cu_p = videoframe_get_cu_const(frame, x_cu - (dir == EDGE_VER) + (dir == EDGE_HOR ? blk_idx : 0), y_cu - (dir == EDGE_HOR) + (dir == EDGE_VER ? blk_idx : 0));
|
2014-03-20 15:30:20 +00:00
|
|
|
|
|
|
|
// Don't deblock the last 4x4 block of the LCU. This will be deblocked
|
|
|
|
// when processing the next LCU.
|
2014-06-05 12:54:58 +00:00
|
|
|
if (depth != 4 && dir == EDGE_HOR && (px.x + 4) % 32 == 0 && (px.x + 4 != frame->width / 2)) {
|
2014-03-20 15:30:20 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2013-11-12 10:00:30 +00:00
|
|
|
// Only filter when strenght == 2 (one of the blocks is intra coded)
|
|
|
|
if (cu_q->type == CU_INTRA || cu_p->type == CU_INTRA) {
|
|
|
|
// Chroma U
|
2014-04-17 08:28:20 +00:00
|
|
|
filter_deblock_chroma(encoder, src_u + step * (4*blk_idx + 0), offset, Tc, 0, 0);
|
|
|
|
filter_deblock_chroma(encoder, src_u + step * (4*blk_idx + 1), offset, Tc, 0, 0);
|
|
|
|
filter_deblock_chroma(encoder, src_u + step * (4*blk_idx + 2), offset, Tc, 0, 0);
|
|
|
|
filter_deblock_chroma(encoder, src_u + step * (4*blk_idx + 3), offset, Tc, 0, 0);
|
2013-11-12 10:00:30 +00:00
|
|
|
// Chroma V
|
2014-04-17 08:28:20 +00:00
|
|
|
filter_deblock_chroma(encoder, src_v + step * (4*blk_idx + 0), offset, Tc, 0, 0);
|
|
|
|
filter_deblock_chroma(encoder, src_v + step * (4*blk_idx + 1), offset, Tc, 0, 0);
|
|
|
|
filter_deblock_chroma(encoder, src_v + step * (4*blk_idx + 2), offset, Tc, 0, 0);
|
|
|
|
filter_deblock_chroma(encoder, src_v + step * (4*blk_idx + 3), offset, Tc, 0, 0);
|
2013-11-12 10:00:30 +00:00
|
|
|
}
|
2013-04-04 12:08:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-21 13:00:20 +00:00
|
|
|
/**
|
2013-09-19 12:29:39 +00:00
|
|
|
* \brief function to split LCU into smaller CU blocks
|
|
|
|
* \param encoder the encoder info structure
|
|
|
|
* \param xCtb block x-position (as SCU)
|
|
|
|
* \param yCtb block y-position (as SCU)
|
|
|
|
* \param depth block depth
|
|
|
|
* \param edge which edge we are filtering
|
|
|
|
*
|
|
|
|
* This function takes (SCU) block position as input and splits the block
|
|
|
|
* until the coded block size has been achived. Calls luma and chroma filtering
|
|
|
|
* functions for each coded CU size.
|
|
|
|
*/
|
2014-04-17 12:42:20 +00:00
|
|
|
void filter_deblock_cu(encoder_state * const encoder_state, int32_t x, int32_t y, int8_t depth, int32_t edge)
|
2013-04-04 12:08:28 +00:00
|
|
|
{
|
2014-06-05 12:54:58 +00:00
|
|
|
const videoframe * const frame = encoder_state->tile->frame;
|
|
|
|
const cu_info *cur_cu = videoframe_get_cu_const(frame, x, y);
|
2013-09-19 12:29:39 +00:00
|
|
|
uint8_t split_flag = (cur_cu->depth > depth) ? 1 : 0;
|
2014-05-16 00:49:29 +00:00
|
|
|
uint8_t tr_split = (cur_cu->tr_depth > depth) ? 1 : 0;
|
2014-06-05 12:54:58 +00:00
|
|
|
uint8_t border_x = (frame->width < x*(LCU_WIDTH >> MAX_DEPTH) + (LCU_WIDTH >> depth)) ? 1 : 0;
|
|
|
|
uint8_t border_y = (frame->height < y*(LCU_WIDTH >> MAX_DEPTH) + (LCU_WIDTH >> depth)) ? 1 : 0;
|
|
|
|
uint8_t border_split_x = (frame->width < ((x + 1) * (LCU_WIDTH >> MAX_DEPTH)) + (LCU_WIDTH >> (depth + 1))) ? 0 : 1;
|
|
|
|
uint8_t border_split_y = (frame->height < ((y + 1) * (LCU_WIDTH >> MAX_DEPTH)) + (LCU_WIDTH >> (depth + 1))) ? 0 : 1;
|
2013-09-19 12:29:39 +00:00
|
|
|
|
|
|
|
uint8_t border = border_x | border_y; // are we in any border CU?
|
|
|
|
|
|
|
|
// split 64x64, on split flag and on border
|
2014-05-16 02:17:53 +00:00
|
|
|
if (depth < MAX_DEPTH && (depth == 0 || split_flag || border || tr_split)) {
|
2014-04-17 16:12:39 +00:00
|
|
|
// Split the four sub-blocks of this block recursively.
|
2014-04-22 08:29:28 +00:00
|
|
|
uint8_t change;
|
2014-05-16 02:17:53 +00:00
|
|
|
assert(depth >= 0); // for clang-analyzer
|
2014-04-22 08:29:28 +00:00
|
|
|
change = 1 << (MAX_DEPTH - 1 - depth);
|
2014-04-17 11:39:12 +00:00
|
|
|
|
2014-04-17 12:42:20 +00:00
|
|
|
filter_deblock_cu(encoder_state, x, y, depth + 1, edge);
|
2013-09-19 12:29:39 +00:00
|
|
|
if(!border_x || border_split_x) {
|
2014-04-17 12:42:20 +00:00
|
|
|
filter_deblock_cu(encoder_state, x + change, y, depth + 1, edge);
|
2013-05-22 14:27:15 +00:00
|
|
|
}
|
2013-09-19 12:29:39 +00:00
|
|
|
if(!border_y || border_split_y) {
|
2014-04-17 12:42:20 +00:00
|
|
|
filter_deblock_cu(encoder_state, x , y + change, depth + 1, edge);
|
2013-05-22 14:27:15 +00:00
|
|
|
}
|
2013-09-19 12:29:39 +00:00
|
|
|
if((!border_x && !border_y) || (border_split_x && border_split_y)) {
|
2014-04-17 12:42:20 +00:00
|
|
|
filter_deblock_cu(encoder_state, x + change, y + change, depth + 1, edge);
|
2013-04-04 12:08:28 +00:00
|
|
|
}
|
|
|
|
return;
|
2013-06-03 11:22:50 +00:00
|
|
|
}
|
2013-05-31 06:57:10 +00:00
|
|
|
|
2013-09-19 12:29:39 +00:00
|
|
|
// no filtering on borders (where filter would use pixels outside the picture)
|
|
|
|
if ((x == 0 && edge == EDGE_VER) || (y == 0 && edge == EDGE_HOR)) return;
|
2013-06-03 11:22:50 +00:00
|
|
|
|
2013-09-19 12:29:39 +00:00
|
|
|
// do the filtering for block edge
|
2014-04-17 12:42:20 +00:00
|
|
|
filter_deblock_edge_luma(encoder_state, x*(LCU_WIDTH >> MAX_DEPTH), y*(LCU_WIDTH >> MAX_DEPTH), depth, edge);
|
|
|
|
filter_deblock_edge_chroma(encoder_state, x*(LCU_WIDTH >> (MAX_DEPTH + 1)), y*(LCU_WIDTH >> (MAX_DEPTH + 1)), depth, edge);
|
2013-09-19 12:29:39 +00:00
|
|
|
}
|
2013-06-03 11:22:50 +00:00
|
|
|
|
2013-09-23 15:07:16 +00:00
|
|
|
|
2014-03-21 09:11:40 +00:00
|
|
|
/**
|
|
|
|
* \brief Deblock a single LCU without using data from right or down.
|
|
|
|
*
|
|
|
|
* Filter all the following edges:
|
|
|
|
* - All edges within the LCU, except for the last 4 pixels on the right when
|
|
|
|
* using horizontal filtering.
|
|
|
|
* - Left edge and top edge.
|
|
|
|
* - After vertical filtering the left edge, filter the last 4 pixels of
|
|
|
|
* horizontal edges in the LCU to the left.
|
|
|
|
*/
|
2014-04-17 12:42:20 +00:00
|
|
|
void filter_deblock_lcu(encoder_state * const encoder_state, int x_px, int y_px)
|
2014-03-21 09:11:40 +00:00
|
|
|
{
|
|
|
|
const vector2d lcu = { x_px / LCU_WIDTH, y_px / LCU_WIDTH };
|
|
|
|
|
2014-04-17 12:42:20 +00:00
|
|
|
filter_deblock_cu(encoder_state, lcu.x << MAX_DEPTH, lcu.y << MAX_DEPTH, 0, EDGE_VER);
|
2014-03-21 09:11:40 +00:00
|
|
|
|
|
|
|
// Filter rightmost 4 pixels from last LCU now that they have been
|
|
|
|
// finally deblocked vertically.
|
|
|
|
if (lcu.x > 0) {
|
|
|
|
int y;
|
|
|
|
for (y = 0; y < 64; y += 8) {
|
|
|
|
if (lcu.y + y == 0) continue;
|
2014-04-17 12:42:20 +00:00
|
|
|
filter_deblock_edge_luma(encoder_state, lcu.x * 64 - 4, lcu.y * 64 + y, 4, EDGE_HOR);
|
2014-03-21 09:11:40 +00:00
|
|
|
}
|
|
|
|
for (y = 0; y < 32; y += 8) {
|
|
|
|
if (lcu.y + y == 0) continue;
|
2014-04-17 12:42:20 +00:00
|
|
|
filter_deblock_edge_chroma(encoder_state, lcu.x * 32 - 4, lcu.y * 32 + y, 4, EDGE_HOR);
|
2014-03-21 09:11:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-17 12:42:20 +00:00
|
|
|
filter_deblock_cu(encoder_state, lcu.x << MAX_DEPTH, lcu.y << MAX_DEPTH, 0, EDGE_HOR);
|
2014-03-21 09:11:40 +00:00
|
|
|
}
|
|
|
|
|