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-11-04 17:27:47 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "sao.h"
|
|
|
|
|
|
|
|
#include <string.h>
|
2014-02-21 14:07:56 +00:00
|
|
|
#include <stdlib.h>
|
2014-05-09 08:27:06 +00:00
|
|
|
#include <assert.h>
|
2013-11-04 17:27:47 +00:00
|
|
|
|
|
|
|
#include "picture.h"
|
|
|
|
|
2013-11-12 10:44:58 +00:00
|
|
|
// Offsets of a and b in relation to c.
|
|
|
|
// dir_offset[dir][a or b]
|
|
|
|
// | | a | a | a |
|
|
|
|
// | a c b | c | c | c |
|
|
|
|
// | | b | b | b |
|
2014-02-21 13:00:20 +00:00
|
|
|
static const vector2d g_sao_edge_offsets[SAO_NUM_EO][2] = {
|
2013-11-12 10:44:58 +00:00
|
|
|
{ { -1, 0 }, { 1, 0 } },
|
|
|
|
{ { 0, -1 }, { 0, 1 } },
|
|
|
|
{ { -1, -1 }, { 1, 1 } },
|
|
|
|
{ { 1, -1 }, { -1, 1 } }
|
|
|
|
};
|
|
|
|
|
2014-04-15 11:28:53 +00:00
|
|
|
// Mapping of edge_idx values to eo-classes.
|
|
|
|
|
|
|
|
|
2014-04-16 11:49:45 +00:00
|
|
|
static int sao_calc_eo_cat(pixel a, pixel b, pixel c)
|
|
|
|
{
|
|
|
|
// Mapping relationships between a, b and c to eo_idx.
|
|
|
|
static const int sao_eo_idx_to_eo_category[] = { 1, 2, 0, 3, 4 };
|
|
|
|
|
|
|
|
int eo_idx = 2 + SIGN3((int)c - (int)a) + SIGN3((int)c - (int)b);
|
|
|
|
|
|
|
|
return sao_eo_idx_to_eo_category[eo_idx];
|
|
|
|
}
|
|
|
|
|
2014-04-15 11:28:53 +00:00
|
|
|
|
2014-04-17 12:42:20 +00:00
|
|
|
int sao_band_ddistortion(const encoder_state * const encoder_state, const pixel *orig_data, const pixel *rec_data,
|
2014-04-15 11:28:53 +00:00
|
|
|
int block_width, int block_height,
|
|
|
|
int band_pos, int sao_bands[4])
|
|
|
|
{
|
|
|
|
int y, x;
|
2014-04-17 12:42:20 +00:00
|
|
|
int shift = encoder_state->encoder_control->bitdepth-5;
|
2014-04-15 11:28:53 +00:00
|
|
|
int sum = 0;
|
|
|
|
|
|
|
|
for (y = 0; y < block_height; ++y) {
|
|
|
|
for (x = 0; x < block_width; ++x) {
|
|
|
|
int band = (rec_data[y * block_width + x] >> shift) - band_pos;
|
|
|
|
int offset = 0;
|
|
|
|
if (band >= 0 && band < 4) {
|
|
|
|
offset = sao_bands[band];
|
|
|
|
}
|
|
|
|
if (offset != 0) {
|
|
|
|
int diff = orig_data[y * block_width + x] - rec_data[y * block_width + x];
|
|
|
|
// Offset is applied to reconstruction, so it is subtracted from diff.
|
|
|
|
sum += (diff - offset) * (diff - offset) - diff * diff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return sum;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int sao_edge_ddistortion(const pixel *orig_data, const pixel *rec_data,
|
|
|
|
int block_width, int block_height,
|
|
|
|
int eo_class, int offsets[NUM_SAO_EDGE_CATEGORIES])
|
|
|
|
{
|
|
|
|
int y, x;
|
|
|
|
int sum = 0;
|
|
|
|
vector2d a_ofs = g_sao_edge_offsets[eo_class][0];
|
|
|
|
vector2d b_ofs = g_sao_edge_offsets[eo_class][1];
|
|
|
|
|
|
|
|
for (y = 1; y < block_height - 1; ++y) {
|
|
|
|
for (x = 1; x < block_width - 1; ++x) {
|
|
|
|
const pixel *c_data = &rec_data[y * block_width + x];
|
|
|
|
pixel a = c_data[a_ofs.y * block_width + a_ofs.x];
|
|
|
|
pixel c = c_data[0];
|
|
|
|
pixel b = c_data[b_ofs.y * block_width + b_ofs.x];
|
|
|
|
|
2014-04-16 11:49:45 +00:00
|
|
|
int offset = offsets[sao_calc_eo_cat(a, b, c)];
|
2014-04-15 11:28:53 +00:00
|
|
|
|
|
|
|
if (offset != 0) {
|
|
|
|
int diff = orig_data[y * block_width + x] - c;
|
|
|
|
// Offset is applied to reconstruction, so it is subtracted from diff.
|
|
|
|
sum += (diff - offset) * (diff - offset) - diff * diff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return sum;
|
|
|
|
}
|
2013-11-04 17:27:47 +00:00
|
|
|
|
|
|
|
|
|
|
|
void init_sao_info(sao_info *sao) {
|
|
|
|
sao->type = SAO_TYPE_NONE;
|
|
|
|
sao->merge_left_flag = 0;
|
|
|
|
sao->merge_up_flag = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-02-21 13:54:56 +00:00
|
|
|
/**
|
|
|
|
* \brief Check merge conditions
|
|
|
|
*/
|
2014-02-21 13:16:50 +00:00
|
|
|
static int sao_check_merge(const sao_info *sao_candidate, int type,
|
|
|
|
int offsets[NUM_SAO_EDGE_CATEGORIES],
|
|
|
|
int band_position, int eo_class)
|
2014-02-21 13:54:56 +00:00
|
|
|
{
|
2014-04-15 10:17:47 +00:00
|
|
|
if (sao_candidate && sao_candidate->type == type) {
|
2014-04-15 13:39:51 +00:00
|
|
|
if (type == SAO_TYPE_NONE) {
|
|
|
|
return 1;
|
|
|
|
}
|
2014-02-21 13:54:56 +00:00
|
|
|
if (offsets[1] == sao_candidate->offsets[1] &&
|
|
|
|
offsets[2] == sao_candidate->offsets[2] &&
|
|
|
|
offsets[3] == sao_candidate->offsets[3] &&
|
|
|
|
offsets[4] == sao_candidate->offsets[4]) {
|
|
|
|
// Type must be BAND or EDGE
|
|
|
|
if ((type == SAO_TYPE_BAND && band_position == sao_candidate->band_position) ||
|
2014-04-15 13:39:51 +00:00
|
|
|
(type == SAO_TYPE_EDGE && eo_class == sao_candidate->eo_class))
|
|
|
|
{
|
2014-02-21 13:54:56 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2014-02-21 09:52:41 +00:00
|
|
|
|
2014-04-15 11:28:53 +00:00
|
|
|
|
2014-04-15 13:39:51 +00:00
|
|
|
static int sao_mode_bits_none(sao_info *sao_top, sao_info *sao_left)
|
|
|
|
{
|
|
|
|
int mode_bits = 0;
|
|
|
|
|
|
|
|
// FL coded merges.
|
|
|
|
if (sao_left != NULL) {
|
|
|
|
mode_bits += 1;
|
|
|
|
if (sao_check_merge(sao_left, SAO_TYPE_NONE, 0, 0, 0)) {
|
|
|
|
return mode_bits;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (sao_top != NULL) {
|
|
|
|
mode_bits += 1;
|
|
|
|
if (sao_check_merge(sao_top, SAO_TYPE_NONE, 0, 0, 0)) {
|
|
|
|
return mode_bits;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TR coded type_idx_, none = 0
|
|
|
|
mode_bits += 1;
|
|
|
|
|
|
|
|
return mode_bits;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-15 11:28:53 +00:00
|
|
|
static int sao_mode_bits_edge(int edge_class, int offsets[NUM_SAO_EDGE_CATEGORIES],
|
|
|
|
sao_info *sao_top, sao_info *sao_left)
|
|
|
|
{
|
|
|
|
int mode_bits = 0;
|
|
|
|
|
2014-04-15 12:09:42 +00:00
|
|
|
// FL coded merges.
|
|
|
|
if (sao_left != NULL) {
|
2014-04-15 11:28:53 +00:00
|
|
|
mode_bits += 1;
|
2014-04-15 12:09:42 +00:00
|
|
|
if (sao_check_merge(sao_left, SAO_TYPE_EDGE, offsets, 0, edge_class)) {
|
|
|
|
return mode_bits;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (sao_top != NULL) {
|
|
|
|
mode_bits += 1;
|
|
|
|
if (sao_check_merge(sao_top, SAO_TYPE_EDGE, offsets, 0, edge_class)) {
|
|
|
|
return mode_bits;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-15 13:34:59 +00:00
|
|
|
// TR coded type_idx_, edge = 2 = cMax
|
|
|
|
mode_bits += 1;
|
|
|
|
|
2014-04-15 12:09:42 +00:00
|
|
|
// TR coded offsets.
|
|
|
|
{
|
2014-04-15 11:28:53 +00:00
|
|
|
sao_eo_cat edge_cat;
|
|
|
|
for (edge_cat = SAO_EO_CAT1; edge_cat <= SAO_EO_CAT4; ++edge_cat) {
|
|
|
|
int abs_offset = abs(offsets[edge_cat]);
|
2014-04-15 11:40:33 +00:00
|
|
|
if (abs_offset == 0 || abs_offset == SAO_ABS_OFFSET_MAX) {
|
|
|
|
mode_bits += abs_offset + 1;
|
|
|
|
} else {
|
|
|
|
mode_bits += abs_offset + 2;
|
2014-04-15 11:28:53 +00:00
|
|
|
}
|
2014-04-15 12:09:42 +00:00
|
|
|
}
|
|
|
|
}
|
2014-04-15 11:55:13 +00:00
|
|
|
|
2014-04-15 12:09:42 +00:00
|
|
|
// TR coded sao_eo_class_
|
|
|
|
if (edge_class == SAO_EO0 || edge_class == SAO_EO3) {
|
|
|
|
mode_bits += 1;
|
|
|
|
} else {
|
|
|
|
mode_bits += 2;
|
2014-04-15 11:28:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return mode_bits;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-15 12:09:42 +00:00
|
|
|
static int sao_mode_bits_band(int band_position, int offsets[4],
|
2014-04-15 11:28:53 +00:00
|
|
|
sao_info *sao_top, sao_info *sao_left)
|
|
|
|
{
|
|
|
|
int mode_bits = 0;
|
|
|
|
|
2014-04-15 12:09:42 +00:00
|
|
|
// FL coded merges.
|
|
|
|
if (sao_left != NULL) {
|
2014-04-15 11:28:53 +00:00
|
|
|
mode_bits += 1;
|
2014-04-15 12:09:42 +00:00
|
|
|
if (sao_check_merge(sao_left, SAO_TYPE_BAND, offsets, band_position, 0)) {
|
|
|
|
return mode_bits;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (sao_top != NULL) {
|
|
|
|
mode_bits += 1;
|
|
|
|
if (sao_check_merge(sao_top, SAO_TYPE_BAND, offsets, band_position, 0)) {
|
|
|
|
return mode_bits;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-15 13:34:59 +00:00
|
|
|
// TR coded sao_type_idx_, band = 1
|
|
|
|
mode_bits += 2;
|
|
|
|
|
2014-04-15 12:09:42 +00:00
|
|
|
// TR coded offsets and possible FL coded offset signs.
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < 4; ++i) {
|
|
|
|
int abs_offset = abs(offsets[i]);
|
2014-04-15 11:55:13 +00:00
|
|
|
if (abs_offset == 0) {
|
2014-04-15 11:40:33 +00:00
|
|
|
mode_bits += abs_offset + 1;
|
2014-04-15 11:55:13 +00:00
|
|
|
} else if (abs_offset == SAO_ABS_OFFSET_MAX) {
|
|
|
|
mode_bits += abs_offset + 1 + 1;
|
2014-04-15 11:40:33 +00:00
|
|
|
} else {
|
2014-04-15 11:55:13 +00:00
|
|
|
mode_bits += abs_offset + 2 + 1;
|
2014-04-15 11:28:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-15 12:09:42 +00:00
|
|
|
// FL coded band position.
|
|
|
|
mode_bits += 5;
|
|
|
|
|
2014-04-15 11:28:53 +00:00
|
|
|
return mode_bits;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-02-21 09:52:41 +00:00
|
|
|
/**
|
|
|
|
* \brief calculate an array of intensity correlations for each intensity value
|
|
|
|
*/
|
2014-04-17 08:28:20 +00:00
|
|
|
static void calc_sao_offset_array(const encoder_control * const encoder, const sao_info *sao, int *offset)
|
2014-02-21 09:52:41 +00:00
|
|
|
{
|
|
|
|
int val;
|
2014-04-17 08:28:20 +00:00
|
|
|
int values = (1<<encoder->bitdepth);
|
|
|
|
int shift = encoder->bitdepth-5;
|
2014-02-21 09:52:41 +00:00
|
|
|
|
|
|
|
// Loop through all intensity values and construct an offset array
|
|
|
|
for (val = 0; val < values; val++) {
|
|
|
|
int cur_band = val>>shift;
|
|
|
|
if(cur_band >= sao->band_position && cur_band < sao->band_position+4) {
|
|
|
|
offset[val] = CLIP(0, values-1,val+sao->offsets[cur_band-sao->band_position+1]);
|
|
|
|
} else {
|
|
|
|
offset[val] = val;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-02-20 14:08:09 +00:00
|
|
|
/**
|
|
|
|
* \param orig_data Original pixel data. 64x64 for luma, 32x32 for chroma.
|
|
|
|
* \param rec_data Reconstructed pixel data. 64x64 for luma, 32x32 for chroma.
|
2014-02-21 13:00:20 +00:00
|
|
|
* \param sao_bands an array of bands for original and reconstructed block
|
2014-02-20 14:08:09 +00:00
|
|
|
*/
|
2014-02-21 13:16:50 +00:00
|
|
|
static int calc_sao_band_offsets(int sao_bands[2][32], int offsets[4],
|
2014-04-16 08:19:23 +00:00
|
|
|
int *band_position)
|
2014-02-20 14:08:09 +00:00
|
|
|
{
|
|
|
|
int band;
|
|
|
|
int offset;
|
|
|
|
int best_dist;
|
|
|
|
int temp_dist;
|
|
|
|
int dist[32];
|
|
|
|
int temp_offsets[32];
|
2014-02-21 13:54:56 +00:00
|
|
|
int temp_rate[32];
|
2014-02-20 14:08:09 +00:00
|
|
|
int best_dist_pos = 0;
|
|
|
|
|
|
|
|
memset(dist, 0, 32*sizeof(int));
|
2014-02-21 13:54:56 +00:00
|
|
|
memset(temp_rate, 0, 32*sizeof(int));
|
2014-02-20 14:08:09 +00:00
|
|
|
|
|
|
|
// Calculate distortion for each band using N*h^2 - 2*h*E
|
|
|
|
for (band = 0; band < 32; band++) {
|
|
|
|
best_dist = INT_MAX;
|
2014-02-21 09:52:41 +00:00
|
|
|
offset = 0;
|
|
|
|
if (sao_bands[1][band] != 0) {
|
|
|
|
offset = (sao_bands[0][band] + (sao_bands[1][band] >> 1)) / sao_bands[1][band];
|
|
|
|
offset = CLIP(-SAO_ABS_OFFSET_MAX, SAO_ABS_OFFSET_MAX, offset);
|
|
|
|
}
|
2014-02-20 15:22:33 +00:00
|
|
|
dist[band] = offset==0?0:INT_MAX;
|
2014-02-21 13:00:20 +00:00
|
|
|
temp_offsets[band] = 0;
|
2014-02-20 14:08:09 +00:00
|
|
|
while(offset != 0) {
|
2014-02-20 15:22:33 +00:00
|
|
|
temp_dist = sao_bands[1][band]*offset*offset - 2*offset*sao_bands[0][band];
|
2014-02-20 14:08:09 +00:00
|
|
|
|
|
|
|
// Store best distortion and offset
|
|
|
|
if(temp_dist < best_dist) {
|
|
|
|
dist[band] = temp_dist;
|
|
|
|
temp_offsets[band] = offset;
|
|
|
|
}
|
|
|
|
offset += (offset > 0) ? -1:1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
best_dist = INT_MAX;
|
|
|
|
//Find starting pos for best 4 band distortions
|
|
|
|
for (band = 0; band < 28; band++) {
|
|
|
|
temp_dist = dist[band] + dist[band+1] + dist[band+2] + dist[band+3];
|
|
|
|
if(temp_dist < best_dist) {
|
|
|
|
best_dist = temp_dist;
|
|
|
|
best_dist_pos = band;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Copy best offsets to output
|
|
|
|
memcpy(offsets, &temp_offsets[best_dist_pos], 4*sizeof(int));
|
2014-02-21 13:00:20 +00:00
|
|
|
|
2014-02-20 14:08:09 +00:00
|
|
|
*band_position = best_dist_pos;
|
|
|
|
|
|
|
|
return best_dist;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \param orig_data Original pixel data. 64x64 for luma, 32x32 for chroma.
|
|
|
|
* \param rec_data Reconstructed pixel data. 64x64 for luma, 32x32 for chroma.
|
2014-02-21 13:00:20 +00:00
|
|
|
* \param sao_bands an array of bands for original and reconstructed block
|
2014-02-20 14:08:09 +00:00
|
|
|
*/
|
2014-04-17 12:42:20 +00:00
|
|
|
static void calc_sao_bands(const encoder_state * const encoder_state, const pixel *orig_data, const pixel *rec_data,
|
2014-02-21 13:16:50 +00:00
|
|
|
int block_width, int block_height,
|
|
|
|
int sao_bands[2][32])
|
2014-02-20 14:08:09 +00:00
|
|
|
{
|
|
|
|
int y, x;
|
2014-04-17 12:42:20 +00:00
|
|
|
int shift = encoder_state->encoder_control->bitdepth-5;
|
2014-02-20 14:08:09 +00:00
|
|
|
|
|
|
|
//Loop pixels and take top 5 bits to classify different bands
|
|
|
|
for (y = 0; y < block_height; ++y) {
|
2014-02-21 13:00:20 +00:00
|
|
|
for (x = 0; x < block_width; ++x) {
|
2014-02-20 14:08:09 +00:00
|
|
|
sao_bands[0][rec_data[y * block_width + x]>>shift] += orig_data[y * block_width + x] - rec_data[y * block_width + x];
|
|
|
|
sao_bands[1][rec_data[y * block_width + x]>>shift]++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-11-04 17:27:47 +00:00
|
|
|
/**
|
|
|
|
* \param orig_data Original pixel data. 64x64 for luma, 32x32 for chroma.
|
|
|
|
* \param rec_data Reconstructed pixel data. 64x64 for luma, 32x32 for chroma.
|
|
|
|
* \param dir_offsets
|
2014-02-21 13:00:20 +00:00
|
|
|
* \param is_chroma 0 for luma, 1 for chroma. Indicates
|
2013-11-04 17:27:47 +00:00
|
|
|
*/
|
2014-02-21 13:16:50 +00:00
|
|
|
static void calc_sao_edge_dir(const pixel *orig_data, const pixel *rec_data,
|
|
|
|
int eo_class, int block_width, int block_height,
|
|
|
|
int cat_sum_cnt[2][NUM_SAO_EDGE_CATEGORIES])
|
2013-11-04 17:27:47 +00:00
|
|
|
{
|
|
|
|
int y, x;
|
|
|
|
vector2d a_ofs = g_sao_edge_offsets[eo_class][0];
|
|
|
|
vector2d b_ofs = g_sao_edge_offsets[eo_class][1];
|
|
|
|
// Arrays orig_data and rec_data are quarter size for chroma.
|
|
|
|
|
|
|
|
// Don't sample the edge pixels because this function doesn't have access to
|
|
|
|
// their neighbours.
|
2013-11-11 07:30:12 +00:00
|
|
|
for (y = 1; y < block_height - 1; ++y) {
|
2013-11-04 17:27:47 +00:00
|
|
|
for (x = 1; x < block_width - 1; ++x) {
|
|
|
|
const pixel *c_data = &rec_data[y * block_width + x];
|
|
|
|
pixel a = c_data[a_ofs.y * block_width + a_ofs.x];
|
|
|
|
pixel c = c_data[0];
|
|
|
|
pixel b = c_data[b_ofs.y * block_width + b_ofs.x];
|
2014-02-21 13:00:20 +00:00
|
|
|
|
2014-04-16 11:49:45 +00:00
|
|
|
int eo_cat = sao_calc_eo_cat(a, b, c);
|
2013-11-04 17:27:47 +00:00
|
|
|
|
|
|
|
cat_sum_cnt[0][eo_cat] += orig_data[y * block_width + x] - c;
|
|
|
|
cat_sum_cnt[1][eo_cat] += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-17 08:28:20 +00:00
|
|
|
static void sao_reconstruct_color(const encoder_control * const encoder,
|
|
|
|
const pixel *rec_data, pixel *new_rec_data,
|
2014-02-21 13:16:50 +00:00
|
|
|
const sao_info *sao,
|
|
|
|
int stride, int new_stride,
|
|
|
|
int block_width, int block_height)
|
2013-11-04 17:27:47 +00:00
|
|
|
{
|
|
|
|
int y, x;
|
|
|
|
// Arrays orig_data and rec_data are quarter size for chroma.
|
|
|
|
|
2014-02-21 09:52:41 +00:00
|
|
|
|
|
|
|
if(sao->type == SAO_TYPE_BAND) {
|
|
|
|
int offsets[1<<BIT_DEPTH];
|
2014-04-17 08:28:20 +00:00
|
|
|
calc_sao_offset_array(encoder, sao, offsets);
|
2014-02-21 09:52:41 +00:00
|
|
|
for (y = 0; y < block_height; ++y) {
|
|
|
|
for (x = 0; x < block_width; ++x) {
|
2014-02-21 13:00:20 +00:00
|
|
|
new_rec_data[y * new_stride + x] = offsets[rec_data[y * stride + x]];
|
2014-02-21 09:52:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Don't sample the edge pixels because this function doesn't have access to
|
|
|
|
// their neighbours.
|
|
|
|
for (y = 0; y < block_height; ++y) {
|
|
|
|
for (x = 0; x < block_width; ++x) {
|
2014-04-15 10:17:47 +00:00
|
|
|
vector2d a_ofs = g_sao_edge_offsets[sao->eo_class][0];
|
|
|
|
vector2d b_ofs = g_sao_edge_offsets[sao->eo_class][1];
|
2014-02-21 09:52:41 +00:00
|
|
|
const pixel *c_data = &rec_data[y * stride + x];
|
|
|
|
pixel *new_data = &new_rec_data[y * new_stride + x];
|
|
|
|
pixel a = c_data[a_ofs.y * stride + a_ofs.x];
|
|
|
|
pixel c = c_data[0];
|
|
|
|
pixel b = c_data[b_ofs.y * stride + b_ofs.x];
|
2014-02-21 13:00:20 +00:00
|
|
|
|
2014-04-16 11:49:45 +00:00
|
|
|
int eo_cat = sao_calc_eo_cat(a, b, c);
|
2014-02-21 09:52:41 +00:00
|
|
|
|
|
|
|
new_data[0] = (pixel)CLIP(0, (1 << BIT_DEPTH) - 1, c_data[0] + sao->offsets[eo_cat]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-11-04 17:27:47 +00:00
|
|
|
|
2014-02-21 09:52:41 +00:00
|
|
|
/**
|
|
|
|
* \brief Calculate dimensions of the buffer used by sao reconstruction.
|
|
|
|
|
|
|
|
* \param pic Picture.
|
|
|
|
* \param sao Sao parameters.
|
|
|
|
* \param rec Top-left corner of the LCU
|
|
|
|
*/
|
2014-02-21 13:16:50 +00:00
|
|
|
static void sao_calc_band_block_dims(const picture *pic, color_index color_i,
|
2014-04-04 08:32:56 +00:00
|
|
|
vector2d *rec, vector2d *block)
|
2014-02-21 09:52:41 +00:00
|
|
|
{
|
|
|
|
const int is_chroma = (color_i != COLOR_Y ? 1 : 0);
|
|
|
|
int width = pic->width >> is_chroma;
|
|
|
|
int height = pic->height >> is_chroma;
|
|
|
|
int block_width = LCU_WIDTH >> is_chroma;
|
|
|
|
|
|
|
|
|
|
|
|
// Handle right and bottom, taking care of non-LCU sized CUs.
|
|
|
|
if (rec->y + block_width >= height) {
|
|
|
|
if (rec->y + block_width >= height) {
|
|
|
|
block->y = height - rec->y;
|
2013-11-04 17:27:47 +00:00
|
|
|
}
|
|
|
|
}
|
2014-02-21 09:52:41 +00:00
|
|
|
if (rec->x + block_width >= width) {
|
|
|
|
if (rec->x + block_width > width) {
|
|
|
|
block->x = width - rec->x;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
rec->x = 0; rec->y = 0;
|
2013-11-04 17:27:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Calculate dimensions of the buffer used by sao reconstruction.
|
|
|
|
*
|
|
|
|
* This function calculates 4 vectors that can be used to make the temporary
|
|
|
|
* buffers required by sao_reconstruct_color.
|
|
|
|
*
|
|
|
|
* Vector block is the area affected by sao. Vectors tr and br are top-left
|
|
|
|
* margin and bottom-right margin, which contain pixels that are not modified
|
|
|
|
* by the reconstruction of this LCU but are needed by the reconstruction.
|
2013-11-08 13:04:06 +00:00
|
|
|
* Vector rec is the offset from the CU to the required pixel area.
|
2013-11-04 17:27:47 +00:00
|
|
|
*
|
|
|
|
* The margins are always either 0 or 1, depending on the direction of the
|
|
|
|
* edge offset class.
|
|
|
|
*
|
|
|
|
* This also takes into account borders of the picture and non-LCU sized
|
|
|
|
* CU's at the bottom and right of the picture.
|
2014-02-21 13:00:20 +00:00
|
|
|
*
|
2013-11-08 13:04:06 +00:00
|
|
|
* \ CU + rec
|
2013-11-04 17:27:47 +00:00
|
|
|
* +------+
|
|
|
|
* |\ tl |
|
|
|
|
* | +--+ |
|
|
|
|
* | |\ block
|
|
|
|
* | | \| |
|
|
|
|
* | +--+ |
|
|
|
|
* | \ br
|
|
|
|
* +------+
|
|
|
|
*
|
|
|
|
* \param pic Picture.
|
|
|
|
* \param sao Sao parameters.
|
2014-02-21 13:00:20 +00:00
|
|
|
* \param rec Top-left corner of the LCU, modified to be top-left corner of
|
2013-11-04 17:27:47 +00:00
|
|
|
*/
|
2014-02-21 13:16:50 +00:00
|
|
|
static void sao_calc_edge_block_dims(const picture *pic, color_index color_i,
|
|
|
|
const sao_info *sao, vector2d *rec,
|
|
|
|
vector2d *tl, vector2d *br,
|
|
|
|
vector2d *block)
|
2013-11-04 17:27:47 +00:00
|
|
|
{
|
|
|
|
vector2d a_ofs = g_sao_edge_offsets[sao->eo_class][0];
|
|
|
|
vector2d b_ofs = g_sao_edge_offsets[sao->eo_class][1];
|
2013-11-12 09:55:39 +00:00
|
|
|
const int is_chroma = (color_i != COLOR_Y ? 1 : 0);
|
|
|
|
int width = pic->width >> is_chroma;
|
|
|
|
int height = pic->height >> is_chroma;
|
|
|
|
int block_width = LCU_WIDTH >> is_chroma;
|
2013-11-04 17:27:47 +00:00
|
|
|
|
|
|
|
// Handle top and left.
|
|
|
|
if (rec->y == 0) {
|
|
|
|
tl->y = 0;
|
|
|
|
if (a_ofs.y == -1 || b_ofs.y == -1) {
|
|
|
|
block->y -= 1;
|
|
|
|
tl->y += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (rec->x == 0) {
|
|
|
|
tl->x = 0;
|
|
|
|
if (a_ofs.x == -1 || b_ofs.x == -1) {
|
|
|
|
block->x -= 1;
|
|
|
|
tl->x += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Handle right and bottom, taking care of non-LCU sized CUs.
|
2013-11-12 09:55:39 +00:00
|
|
|
if (rec->y + block_width >= height) {
|
2013-11-04 17:27:47 +00:00
|
|
|
br->y = 0;
|
2014-05-09 08:27:06 +00:00
|
|
|
block->y -= block_width + rec->y - height;
|
2013-11-04 17:27:47 +00:00
|
|
|
if (a_ofs.y == 1 || b_ofs.y == 1) {
|
|
|
|
block->y -= 1;
|
|
|
|
br->y += 1;
|
|
|
|
}
|
|
|
|
}
|
2013-11-12 09:55:39 +00:00
|
|
|
if (rec->x + block_width >= width) {
|
2013-11-04 17:27:47 +00:00
|
|
|
br->x = 0;
|
2014-05-09 08:27:06 +00:00
|
|
|
block->x -= block_width + rec->x - width;
|
2013-11-08 13:04:53 +00:00
|
|
|
if (a_ofs.x == 1 || b_ofs.x == 1) {
|
2013-11-04 17:27:47 +00:00
|
|
|
block->x -= 1;
|
|
|
|
br->x += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-08 13:04:06 +00:00
|
|
|
rec->y = (rec->y == 0 ? 0 : -1);
|
|
|
|
rec->x = (rec->x == 0 ? 0 : -1);
|
2013-11-04 17:27:47 +00:00
|
|
|
}
|
|
|
|
|
2014-04-17 08:28:20 +00:00
|
|
|
void sao_reconstruct(const encoder_control * const encoder, picture * pic, const pixel *old_rec,
|
2014-02-21 13:00:20 +00:00
|
|
|
unsigned x_ctb, unsigned y_ctb,
|
2013-11-12 09:55:39 +00:00
|
|
|
const sao_info *sao, color_index color_i)
|
2013-11-04 17:27:47 +00:00
|
|
|
{
|
2013-11-12 09:55:39 +00:00
|
|
|
const int is_chroma = (color_i != COLOR_Y ? 1 : 0);
|
|
|
|
const int pic_stride = pic->width >> is_chroma;
|
|
|
|
const int lcu_stride = LCU_WIDTH >> is_chroma;
|
|
|
|
const int buf_stride = lcu_stride + 2;
|
|
|
|
|
2013-11-14 10:07:15 +00:00
|
|
|
pixel *recdata = pic->recdata[color_i];
|
2013-11-12 09:55:39 +00:00
|
|
|
pixel buf_rec[(LCU_WIDTH + 2) * (LCU_WIDTH + 2)];
|
|
|
|
pixel new_rec[LCU_WIDTH * LCU_WIDTH];
|
|
|
|
// Calling CU_TO_PIXEL with depth 1 is the same as using block size of 32.
|
|
|
|
pixel *lcu_rec = &recdata[CU_TO_PIXEL(x_ctb, y_ctb, is_chroma, pic_stride)];
|
|
|
|
const pixel *old_lcu_rec = &old_rec[CU_TO_PIXEL(x_ctb, y_ctb, is_chroma, pic_stride)];
|
|
|
|
|
|
|
|
vector2d ofs;
|
2013-11-04 17:27:47 +00:00
|
|
|
vector2d tl = { 1, 1 };
|
|
|
|
vector2d br = { 1, 1 };
|
|
|
|
vector2d block = { LCU_WIDTH, LCU_WIDTH };
|
|
|
|
|
2013-11-12 09:55:39 +00:00
|
|
|
if (sao->type == SAO_TYPE_NONE) {
|
2013-11-08 13:39:01 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-11-12 09:55:39 +00:00
|
|
|
ofs.x = x_ctb * lcu_stride;
|
|
|
|
ofs.y = y_ctb * lcu_stride;
|
|
|
|
block.x = lcu_stride;
|
|
|
|
block.y = lcu_stride;
|
2014-02-21 13:00:20 +00:00
|
|
|
if (sao->type == SAO_TYPE_BAND) {
|
2014-02-21 09:52:41 +00:00
|
|
|
tl.x = 0; tl.y = 0;
|
|
|
|
br.x = 0; br.y = 0;
|
2014-04-04 08:32:56 +00:00
|
|
|
sao_calc_band_block_dims(pic, color_i, &ofs, &block);
|
2014-02-21 09:52:41 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
sao_calc_edge_block_dims(pic, color_i, sao, &ofs, &tl, &br, &block);
|
|
|
|
}
|
2014-05-09 08:27:06 +00:00
|
|
|
|
|
|
|
assert(ofs.x + tl.x + block.x + br.x <= pic->width);
|
|
|
|
assert(ofs.y + tl.y + block.y + br.y <= pic->height);
|
|
|
|
|
2013-11-04 17:27:47 +00:00
|
|
|
// Data to tmp buffer.
|
2014-02-21 13:00:20 +00:00
|
|
|
picture_blit_pixels(&old_lcu_rec[ofs.y * pic_stride + ofs.x],
|
2013-11-12 09:55:39 +00:00
|
|
|
buf_rec,
|
2013-11-04 17:27:47 +00:00
|
|
|
tl.x + block.x + br.x,
|
|
|
|
tl.y + block.y + br.y,
|
2013-11-12 09:55:39 +00:00
|
|
|
pic_stride, buf_stride);
|
2013-11-04 17:27:47 +00:00
|
|
|
|
2014-04-17 08:28:20 +00:00
|
|
|
sao_reconstruct_color(encoder, &buf_rec[tl.y * buf_stride + tl.x],
|
2013-11-12 09:55:39 +00:00
|
|
|
&new_rec[(ofs.y + tl.y) * lcu_stride + ofs.x + tl.x],
|
2014-02-21 13:00:20 +00:00
|
|
|
sao,
|
2013-11-12 09:55:39 +00:00
|
|
|
buf_stride, lcu_stride,
|
2013-11-04 17:27:47 +00:00
|
|
|
block.x, block.y);
|
2013-11-12 09:55:39 +00:00
|
|
|
|
2013-11-04 17:27:47 +00:00
|
|
|
// Copy reconstructed block from tmp buffer to rec image.
|
2014-02-21 13:00:20 +00:00
|
|
|
picture_blit_pixels(&new_rec[(tl.y + ofs.y) * lcu_stride + (tl.x + ofs.x)],
|
2013-11-12 09:55:39 +00:00
|
|
|
&lcu_rec[(tl.y + ofs.y) * pic_stride + (tl.x + ofs.x)],
|
|
|
|
block.x, block.y, lcu_stride, pic_stride);
|
2013-11-04 17:27:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-15 09:54:52 +00:00
|
|
|
|
2014-04-17 12:42:20 +00:00
|
|
|
static void sao_search_edge_sao(const encoder_state * const encoder_state,
|
2014-04-17 10:00:21 +00:00
|
|
|
const pixel * data[], const pixel * recdata[],
|
2014-04-15 09:54:52 +00:00
|
|
|
int block_width, int block_height,
|
|
|
|
unsigned buf_cnt,
|
|
|
|
sao_info *sao_out, sao_info *sao_top,
|
|
|
|
sao_info *sao_left)
|
2013-11-04 17:27:47 +00:00
|
|
|
{
|
|
|
|
sao_eo_class edge_class;
|
|
|
|
// This array is used to calculate the mean offset used to minimize distortion.
|
|
|
|
int cat_sum_cnt[2][NUM_SAO_EDGE_CATEGORIES];
|
2014-02-20 14:08:09 +00:00
|
|
|
unsigned i = 0;
|
2013-11-04 17:27:47 +00:00
|
|
|
memset(cat_sum_cnt, 0, sizeof(int) * 2 * NUM_SAO_EDGE_CATEGORIES);
|
|
|
|
|
2014-04-15 10:17:47 +00:00
|
|
|
sao_out->type = SAO_TYPE_EDGE;
|
2013-11-04 17:27:47 +00:00
|
|
|
sao_out->ddistortion = INT_MAX;
|
|
|
|
|
|
|
|
for (edge_class = SAO_EO0; edge_class <= SAO_EO3; ++edge_class) {
|
|
|
|
int edge_offset[NUM_SAO_EDGE_CATEGORIES];
|
|
|
|
int sum_ddistortion = 0;
|
|
|
|
sao_eo_cat edge_cat;
|
|
|
|
|
|
|
|
// Call calc_sao_edge_dir once for luma and twice for chroma.
|
|
|
|
for (i = 0; i < buf_cnt; ++i) {
|
2013-11-12 09:55:39 +00:00
|
|
|
calc_sao_edge_dir(data[i], recdata[i], edge_class,
|
2013-11-11 07:30:12 +00:00
|
|
|
block_width, block_height, cat_sum_cnt);
|
2013-11-04 17:27:47 +00:00
|
|
|
}
|
2014-02-21 13:00:20 +00:00
|
|
|
|
2013-11-04 17:27:47 +00:00
|
|
|
for (edge_cat = SAO_EO_CAT1; edge_cat <= SAO_EO_CAT4; ++edge_cat) {
|
|
|
|
int cat_sum = cat_sum_cnt[0][edge_cat];
|
|
|
|
int cat_cnt = cat_sum_cnt[1][edge_cat];
|
2014-02-21 13:00:20 +00:00
|
|
|
|
2013-11-04 17:27:47 +00:00
|
|
|
// The optimum offset can be calculated by getting the minima of the
|
|
|
|
// fast ddistortion estimation formula. The minima is the mean error
|
|
|
|
// and we round that to the nearest integer.
|
|
|
|
int offset = 0;
|
|
|
|
if (cat_cnt != 0) {
|
|
|
|
offset = (cat_sum + (cat_cnt >> 1)) / cat_cnt;
|
|
|
|
offset = CLIP(-SAO_ABS_OFFSET_MAX, SAO_ABS_OFFSET_MAX, offset);
|
|
|
|
}
|
2013-11-08 14:13:48 +00:00
|
|
|
|
|
|
|
// Sharpening edge offsets can't be encoded, so set them to 0 here.
|
|
|
|
if (edge_cat >= SAO_EO_CAT1 && edge_cat <= SAO_EO_CAT2 && offset < 0) {
|
|
|
|
offset = 0;
|
|
|
|
}
|
|
|
|
if (edge_cat >= SAO_EO_CAT3 && edge_cat <= SAO_EO_CAT4 && offset > 0) {
|
|
|
|
offset = 0;
|
|
|
|
}
|
|
|
|
|
2013-11-04 17:27:47 +00:00
|
|
|
edge_offset[edge_cat] = offset;
|
|
|
|
// The ddistortion is amount by which the SSE of data changes. It should
|
|
|
|
// be negative for all categories, if offset was chosen correctly.
|
2014-02-21 13:00:20 +00:00
|
|
|
// ddistortion = N * h^2 - 2 * h * E, where N is the number of samples
|
2013-11-04 17:27:47 +00:00
|
|
|
// and E is the sum of errors.
|
|
|
|
// It basically says that all pixels that are not improved by offset
|
|
|
|
// increase increase SSE by h^2 and all pixels that are improved by
|
|
|
|
// offset decrease SSE by h*E.
|
|
|
|
sum_ddistortion += cat_cnt * offset * offset - 2 * offset * cat_sum;
|
2014-02-21 13:54:56 +00:00
|
|
|
}
|
2014-04-15 12:13:55 +00:00
|
|
|
|
2014-04-16 08:19:23 +00:00
|
|
|
{
|
|
|
|
int mode_bits = sao_mode_bits_edge(edge_class, edge_offset, sao_top, sao_left);
|
2014-05-06 08:13:18 +00:00
|
|
|
sum_ddistortion += (int)((double)mode_bits*(encoder_state->global->cur_lambda_cost+0.5));
|
2014-04-16 08:19:23 +00:00
|
|
|
}
|
2013-11-04 17:27:47 +00:00
|
|
|
// SAO is not applied for category 0.
|
|
|
|
edge_offset[SAO_EO_CAT0] = 0;
|
|
|
|
|
|
|
|
// Choose the offset class that offers the least error after offset.
|
|
|
|
if (sum_ddistortion < sao_out->ddistortion) {
|
|
|
|
sao_out->eo_class = edge_class;
|
|
|
|
sao_out->ddistortion = sum_ddistortion;
|
|
|
|
memcpy(sao_out->offsets, edge_offset, sizeof(int) * NUM_SAO_EDGE_CATEGORIES);
|
|
|
|
}
|
|
|
|
}
|
2014-04-15 09:54:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-17 12:42:20 +00:00
|
|
|
static void sao_search_band_sao(const encoder_state * const encoder_state, const pixel * data[], const pixel * recdata[],
|
2014-04-15 09:54:52 +00:00
|
|
|
int block_width, int block_height,
|
|
|
|
unsigned buf_cnt,
|
|
|
|
sao_info *sao_out, sao_info *sao_top,
|
|
|
|
sao_info *sao_left)
|
|
|
|
{
|
|
|
|
unsigned i;
|
2014-02-20 14:08:09 +00:00
|
|
|
|
2014-04-15 10:17:47 +00:00
|
|
|
sao_out->type = SAO_TYPE_BAND;
|
|
|
|
sao_out->ddistortion = MAX_INT;
|
|
|
|
|
2014-02-20 14:08:09 +00:00
|
|
|
// Band offset
|
|
|
|
{
|
|
|
|
int sao_bands[2][32];
|
|
|
|
int temp_offsets[4];
|
|
|
|
int ddistortion;
|
2014-02-21 13:54:56 +00:00
|
|
|
int temp_rate = 0;
|
2014-02-20 14:08:09 +00:00
|
|
|
|
2014-02-21 13:54:56 +00:00
|
|
|
memset(sao_bands, 0, 2 * 32 * sizeof(int));
|
2014-02-20 14:08:09 +00:00
|
|
|
for (i = 0; i < buf_cnt; ++i) {
|
2014-04-17 12:42:20 +00:00
|
|
|
calc_sao_bands(encoder_state, data[i], recdata[i],block_width,
|
2014-02-20 14:08:09 +00:00
|
|
|
block_height,sao_bands);
|
|
|
|
}
|
|
|
|
|
2014-04-16 08:19:23 +00:00
|
|
|
ddistortion = calc_sao_band_offsets(sao_bands, temp_offsets, &sao_out->band_position);
|
2014-02-21 13:00:20 +00:00
|
|
|
|
2014-04-15 12:13:55 +00:00
|
|
|
temp_rate = sao_mode_bits_band(sao_out->band_position, temp_offsets, sao_top, sao_left);
|
2014-05-06 08:13:18 +00:00
|
|
|
ddistortion += (int)((double)temp_rate*(encoder_state->global->cur_lambda_cost+0.5));
|
2014-02-21 13:00:20 +00:00
|
|
|
|
2014-02-20 14:08:09 +00:00
|
|
|
// Select band sao over edge sao when distortion is lower
|
|
|
|
if (ddistortion < sao_out->ddistortion) {
|
|
|
|
sao_out->type = SAO_TYPE_BAND;
|
|
|
|
sao_out->ddistortion = ddistortion;
|
|
|
|
memcpy(&sao_out->offsets[1], temp_offsets, sizeof(int) * 4);
|
|
|
|
}
|
|
|
|
}
|
2014-04-15 09:54:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \param data Array of pointers to reference pixels.
|
|
|
|
* \param recdata Array of pointers to reconstructed pixels.
|
|
|
|
* \param block_width Width of the area to be examined.
|
|
|
|
* \param block_height Height of the area to be examined.
|
|
|
|
* \param buf_cnt Number of pointers data and recdata have.
|
|
|
|
* \param sao_out Output parameter for the best sao parameters.
|
|
|
|
*/
|
2014-04-17 12:42:20 +00:00
|
|
|
static void sao_search_best_mode(const encoder_state * const encoder_state, const pixel * data[], const pixel * recdata[],
|
2014-04-15 09:54:52 +00:00
|
|
|
int block_width, int block_height,
|
|
|
|
unsigned buf_cnt,
|
|
|
|
sao_info *sao_out, sao_info *sao_top,
|
|
|
|
sao_info *sao_left)
|
|
|
|
{
|
2014-04-15 10:17:47 +00:00
|
|
|
sao_info edge_sao;
|
|
|
|
sao_info band_sao;
|
|
|
|
|
2014-04-17 12:42:20 +00:00
|
|
|
sao_search_edge_sao(encoder_state, data, recdata, block_width, block_height, buf_cnt, &edge_sao, sao_top, sao_left);
|
|
|
|
sao_search_band_sao(encoder_state, data, recdata, block_width, block_height, buf_cnt, &band_sao, sao_top, sao_left);
|
2014-04-15 10:17:47 +00:00
|
|
|
|
2014-04-15 11:28:53 +00:00
|
|
|
{
|
|
|
|
int mode_bits = sao_mode_bits_edge(edge_sao.eo_class, edge_sao.offsets, sao_top, sao_left);
|
2014-05-06 08:13:18 +00:00
|
|
|
int ddistortion = mode_bits * (int)(encoder_state->global->cur_lambda_cost + 0.5);
|
2014-04-15 11:28:53 +00:00
|
|
|
unsigned buf_i;
|
|
|
|
|
|
|
|
for (buf_i = 0; buf_i < buf_cnt; ++buf_i) {
|
|
|
|
ddistortion += sao_edge_ddistortion(data[buf_i], recdata[buf_i],
|
|
|
|
block_width, block_height,
|
|
|
|
edge_sao.eo_class, edge_sao.offsets);
|
|
|
|
}
|
|
|
|
|
|
|
|
edge_sao.ddistortion = ddistortion;
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2014-04-15 12:09:42 +00:00
|
|
|
int mode_bits = sao_mode_bits_band(band_sao.band_position, &band_sao.offsets[1], sao_top, sao_left);
|
2014-05-06 08:13:18 +00:00
|
|
|
int ddistortion = mode_bits * (int)(encoder_state->global->cur_lambda_cost + 0.5);
|
2014-04-15 11:28:53 +00:00
|
|
|
unsigned buf_i;
|
|
|
|
|
|
|
|
for (buf_i = 0; buf_i < buf_cnt; ++buf_i) {
|
2014-04-17 12:42:20 +00:00
|
|
|
ddistortion += sao_band_ddistortion(encoder_state, data[buf_i], recdata[buf_i],
|
2014-04-15 11:28:53 +00:00
|
|
|
block_width, block_height,
|
|
|
|
band_sao.band_position, &band_sao.offsets[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
band_sao.ddistortion = ddistortion;
|
|
|
|
}
|
|
|
|
|
2014-04-15 10:17:47 +00:00
|
|
|
if (edge_sao.ddistortion <= band_sao.ddistortion) {
|
|
|
|
*sao_out = edge_sao;
|
|
|
|
} else {
|
|
|
|
*sao_out = band_sao;
|
|
|
|
}
|
2014-02-21 11:20:22 +00:00
|
|
|
|
2014-04-15 13:39:51 +00:00
|
|
|
// Choose between SAO and doing nothing, taking into account the
|
|
|
|
// rate-distortion cost of coding do nothing.
|
|
|
|
{
|
2014-05-06 08:13:18 +00:00
|
|
|
int cost_of_nothing = sao_mode_bits_none(sao_top, sao_left) * (int)(encoder_state->global->cur_lambda_cost + 0.5);
|
2014-04-15 13:39:51 +00:00
|
|
|
if (sao_out->ddistortion >= cost_of_nothing) {
|
|
|
|
sao_out->type = SAO_TYPE_NONE;
|
|
|
|
}
|
2014-02-21 13:54:56 +00:00
|
|
|
}
|
|
|
|
|
2014-04-15 10:17:47 +00:00
|
|
|
sao_out->merge_up_flag = sao_check_merge(sao_top, sao_out->type, sao_out->offsets,
|
|
|
|
sao_out->band_position, sao_out->eo_class);
|
|
|
|
sao_out->merge_left_flag = sao_check_merge(sao_left, sao_out->type, sao_out->offsets,
|
|
|
|
sao_out->band_position, sao_out->eo_class);
|
2014-02-21 11:20:22 +00:00
|
|
|
|
2014-04-15 10:17:47 +00:00
|
|
|
return;
|
2013-11-04 17:27:47 +00:00
|
|
|
}
|
|
|
|
|
2014-04-17 12:42:20 +00:00
|
|
|
void sao_search_chroma(const encoder_state * const encoder_state, const picture *pic, unsigned x_ctb, unsigned y_ctb, sao_info *sao, sao_info *sao_top, sao_info *sao_left)
|
2013-11-04 17:27:47 +00:00
|
|
|
{
|
2013-11-12 09:55:39 +00:00
|
|
|
int block_width = (LCU_WIDTH / 2);
|
|
|
|
int block_height = (LCU_WIDTH / 2);
|
2014-02-21 13:21:45 +00:00
|
|
|
const pixel *orig_list[2];
|
|
|
|
const pixel *rec_list[2];
|
2013-11-14 10:07:15 +00:00
|
|
|
pixel orig[2][LCU_CHROMA_SIZE];
|
|
|
|
pixel rec[2][LCU_CHROMA_SIZE];
|
|
|
|
color_index color_i;
|
2013-11-12 09:55:39 +00:00
|
|
|
|
2013-11-14 10:07:15 +00:00
|
|
|
// Check for right and bottom boundaries.
|
2013-11-12 09:55:39 +00:00
|
|
|
if (x_ctb * (LCU_WIDTH / 2) + (LCU_WIDTH / 2) >= (unsigned)pic->width / 2) {
|
|
|
|
block_width = (pic->width - x_ctb * LCU_WIDTH) / 2;
|
|
|
|
}
|
|
|
|
if (y_ctb * (LCU_WIDTH / 2) + (LCU_WIDTH / 2) >= (unsigned)pic->height / 2) {
|
|
|
|
block_height = (pic->height - y_ctb * LCU_WIDTH) / 2;
|
|
|
|
}
|
2013-11-04 17:27:47 +00:00
|
|
|
|
2013-11-12 09:55:39 +00:00
|
|
|
sao->type = SAO_TYPE_EDGE;
|
|
|
|
|
2013-11-14 10:07:15 +00:00
|
|
|
// Copy data to temporary buffers and init orig and rec lists to point to those buffers.
|
|
|
|
for (color_i = COLOR_U; color_i <= COLOR_V; ++color_i) {
|
|
|
|
pixel *data = &pic->data[color_i][CU_TO_PIXEL(x_ctb, y_ctb, 1, pic->width / 2)];
|
|
|
|
pixel *recdata = &pic->recdata[color_i][CU_TO_PIXEL(x_ctb, y_ctb, 1, pic->width / 2)];
|
|
|
|
picture_blit_pixels(data, orig[color_i - 1], block_width, block_height,
|
2014-05-09 04:54:18 +00:00
|
|
|
pic->width / 2, block_width);
|
2013-11-14 10:07:15 +00:00
|
|
|
picture_blit_pixels(recdata, rec[color_i - 1], block_width, block_height,
|
2014-05-09 04:54:18 +00:00
|
|
|
pic->width / 2, block_width);
|
2013-11-14 10:07:15 +00:00
|
|
|
orig_list[color_i - 1] = &orig[color_i - 1][0];
|
|
|
|
rec_list[color_i - 1] = &rec[color_i - 1][0];
|
|
|
|
}
|
|
|
|
|
2014-02-21 13:00:20 +00:00
|
|
|
// Calculate
|
2014-05-09 04:54:18 +00:00
|
|
|
sao_search_best_mode(encoder_state, orig_list, rec_list, block_width, block_height, 2, sao, sao_top, sao_left);
|
2013-11-12 09:55:39 +00:00
|
|
|
}
|
|
|
|
|
2014-04-17 12:42:20 +00:00
|
|
|
void sao_search_luma(const encoder_state * const encoder_state, const picture *pic, unsigned x_ctb, unsigned y_ctb, sao_info *sao, sao_info *sao_top, sao_info *sao_left)
|
2013-11-12 09:55:39 +00:00
|
|
|
{
|
2013-11-14 10:07:15 +00:00
|
|
|
pixel orig[LCU_LUMA_SIZE];
|
|
|
|
pixel rec[LCU_LUMA_SIZE];
|
2014-02-21 13:21:45 +00:00
|
|
|
const pixel * orig_list[1] = { NULL };
|
|
|
|
const pixel * rec_list[1] = { NULL };
|
2013-11-14 10:07:15 +00:00
|
|
|
pixel *data = &pic->y_data[CU_TO_PIXEL(x_ctb, y_ctb, 0, pic->width)];
|
|
|
|
pixel *recdata = &pic->y_recdata[CU_TO_PIXEL(x_ctb, y_ctb, 0, pic->width)];
|
2013-11-11 07:30:12 +00:00
|
|
|
int block_width = LCU_WIDTH;
|
|
|
|
int block_height = LCU_WIDTH;
|
2013-11-08 13:39:01 +00:00
|
|
|
|
2013-11-14 10:07:15 +00:00
|
|
|
// Check for right and bottom boundaries.
|
2013-11-11 07:30:12 +00:00
|
|
|
if (x_ctb * LCU_WIDTH + LCU_WIDTH >= (unsigned)pic->width) {
|
|
|
|
block_width = pic->width - x_ctb * LCU_WIDTH;
|
|
|
|
}
|
|
|
|
if (y_ctb * LCU_WIDTH + LCU_WIDTH >= (unsigned)pic->height) {
|
|
|
|
block_height = pic->height - y_ctb * LCU_WIDTH;
|
2013-11-08 13:39:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sao->type = SAO_TYPE_EDGE;
|
2013-11-04 17:27:47 +00:00
|
|
|
|
|
|
|
// Fill temporary buffers with picture data.
|
2014-04-14 13:36:47 +00:00
|
|
|
picture_blit_pixels(data, orig, block_width, block_height, pic->width, block_width);
|
|
|
|
picture_blit_pixels(recdata, rec, block_width, block_height, pic->width, block_width);
|
2013-11-04 17:27:47 +00:00
|
|
|
|
2014-02-06 12:36:45 +00:00
|
|
|
orig_list[0] = orig;
|
|
|
|
rec_list[0] = rec;
|
2014-04-17 12:42:20 +00:00
|
|
|
sao_search_best_mode(encoder_state, orig_list, rec_list, block_width, block_height, 1, sao, sao_top, sao_left);
|
2013-11-04 17:27:47 +00:00
|
|
|
}
|
2014-03-21 09:48:57 +00:00
|
|
|
|
2014-04-17 12:42:20 +00:00
|
|
|
void sao_reconstruct_frame(encoder_state * const encoder_state)
|
2014-03-21 09:48:57 +00:00
|
|
|
{
|
|
|
|
vector2d lcu;
|
2014-05-06 08:13:18 +00:00
|
|
|
picture * const cur_pic = encoder_state->tile->cur_pic;
|
2014-03-21 09:48:57 +00:00
|
|
|
|
|
|
|
// These are needed because SAO needs the pre-SAO pixels form left and
|
|
|
|
// top LCUs. Single pixel wide buffers, like what search_lcu takes, would
|
|
|
|
// be enough though.
|
2014-04-17 05:30:06 +00:00
|
|
|
pixel *new_y_data = MALLOC(pixel, cur_pic->width * cur_pic->height);
|
|
|
|
pixel *new_u_data = MALLOC(pixel, (cur_pic->width * cur_pic->height) >> 2);
|
|
|
|
pixel *new_v_data = MALLOC(pixel, (cur_pic->width * cur_pic->height) >> 2);
|
|
|
|
memcpy(new_y_data, cur_pic->y_recdata, sizeof(pixel) * cur_pic->width * cur_pic->height);
|
|
|
|
memcpy(new_u_data, cur_pic->u_recdata, sizeof(pixel) * (cur_pic->width * cur_pic->height) >> 2);
|
|
|
|
memcpy(new_v_data, cur_pic->v_recdata, sizeof(pixel) * (cur_pic->width * cur_pic->height) >> 2);
|
2014-03-21 09:48:57 +00:00
|
|
|
|
2014-04-17 07:51:55 +00:00
|
|
|
for (lcu.y = 0; lcu.y < cur_pic->height_in_lcu; lcu.y++) {
|
|
|
|
for (lcu.x = 0; lcu.x < cur_pic->width_in_lcu; lcu.x++) {
|
|
|
|
unsigned stride = cur_pic->width_in_lcu;
|
2014-04-17 05:30:06 +00:00
|
|
|
sao_info *sao_luma = &cur_pic->sao_luma[lcu.y * stride + lcu.x];
|
|
|
|
sao_info *sao_chroma = &cur_pic->sao_chroma[lcu.y * stride + lcu.x];
|
2014-03-21 09:48:57 +00:00
|
|
|
|
|
|
|
// sao_do_rdo(encoder, lcu.x, lcu.y, sao_luma, sao_chroma);
|
2014-04-17 12:42:20 +00:00
|
|
|
sao_reconstruct(encoder_state->encoder_control, cur_pic, new_y_data, lcu.x, lcu.y, sao_luma, COLOR_Y);
|
|
|
|
sao_reconstruct(encoder_state->encoder_control, cur_pic, new_u_data, lcu.x, lcu.y, sao_chroma, COLOR_U);
|
|
|
|
sao_reconstruct(encoder_state->encoder_control, cur_pic, new_v_data, lcu.x, lcu.y, sao_chroma, COLOR_V);
|
2014-03-21 09:48:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
free(new_y_data);
|
|
|
|
free(new_u_data);
|
|
|
|
free(new_v_data);
|
|
|
|
}
|