2014-01-24 10:37:15 +00:00
|
|
|
/*****************************************************************************
|
|
|
|
* This file is part of Kvazaar HEVC encoder.
|
2014-02-21 13:00:20 +00:00
|
|
|
*
|
2015-02-23 11:18:48 +00:00
|
|
|
* Copyright (C) 2013-2015 Tampere University of Technology and others (see
|
2014-01-24 10:37:15 +00:00
|
|
|
* COPYING file).
|
|
|
|
*
|
2015-02-23 11:18:48 +00:00
|
|
|
* Kvazaar is free software: you can redistribute it and/or modify it under
|
|
|
|
* the terms of the GNU Lesser General Public License as published by the
|
|
|
|
* Free Software Foundation; either version 2.1 of the License, or (at your
|
|
|
|
* option) any later version.
|
2014-01-24 10:37:15 +00:00
|
|
|
*
|
2015-02-23 11:18:48 +00:00
|
|
|
* 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 Lesser General Public License for
|
|
|
|
* more details.
|
2014-01-24 10:37:15 +00:00
|
|
|
*
|
2015-02-23 11:18:48 +00:00
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with Kvazaar. If not, see <http://www.gnu.org/licenses/>.
|
2014-01-24 10:37:15 +00:00
|
|
|
****************************************************************************/
|
|
|
|
|
2013-09-18 09:16:03 +00:00
|
|
|
#include "inter.h"
|
|
|
|
|
2013-04-24 07:35:27 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2013-09-18 09:16:03 +00:00
|
|
|
|
2013-09-23 15:07:16 +00:00
|
|
|
#include "filter.h"
|
2014-11-20 16:38:54 +00:00
|
|
|
#include "strategies/strategies-ipol.h"
|
2015-05-07 12:53:06 +00:00
|
|
|
#include "strategies/generic/ipol-generic.h"
|
2015-04-30 15:50:56 +00:00
|
|
|
#include "strategies/generic/picture-generic.h"
|
2013-04-24 07:35:27 +00:00
|
|
|
|
2015-11-04 08:32:20 +00:00
|
|
|
static void inter_recon_frac_luma(const encoder_state_t * const state,
|
|
|
|
const kvz_picture * const ref,
|
|
|
|
int32_t xpos,
|
|
|
|
int32_t ypos,
|
|
|
|
int32_t block_width,
|
2015-11-04 08:55:50 +00:00
|
|
|
int32_t block_height,
|
2015-11-04 08:32:20 +00:00
|
|
|
const int16_t mv_param[2],
|
|
|
|
lcu_t *lcu)
|
2015-07-28 17:00:16 +00:00
|
|
|
{
|
|
|
|
int mv_frac_x = (mv_param[0] & 3);
|
|
|
|
int mv_frac_y = (mv_param[1] & 3);
|
|
|
|
|
2015-08-11 12:53:40 +00:00
|
|
|
#define FILTER_SIZE_Y 8 //Luma filter size
|
2015-07-28 17:00:16 +00:00
|
|
|
|
|
|
|
// Fractional luma 1/4-pel
|
2015-08-17 08:12:49 +00:00
|
|
|
kvz_extended_block src = {0, 0, 0};
|
2015-07-28 17:00:16 +00:00
|
|
|
|
|
|
|
// Fractional luma
|
2015-11-04 08:55:50 +00:00
|
|
|
kvz_get_extended_block(xpos,
|
|
|
|
ypos,
|
|
|
|
mv_param[0] >> 2,
|
|
|
|
mv_param[1] >> 2,
|
|
|
|
state->tile->lcu_offset_x * LCU_WIDTH,
|
|
|
|
state->tile->lcu_offset_y * LCU_WIDTH,
|
|
|
|
ref->y,
|
|
|
|
ref->width,
|
|
|
|
ref->height,
|
|
|
|
FILTER_SIZE_Y,
|
|
|
|
block_width,
|
|
|
|
block_height,
|
|
|
|
&src);
|
|
|
|
kvz_sample_quarterpel_luma_generic(state->encoder_control,
|
|
|
|
src.orig_topleft,
|
|
|
|
src.stride,
|
|
|
|
block_width,
|
|
|
|
block_height,
|
|
|
|
lcu->rec.y + (ypos%LCU_WIDTH)*LCU_WIDTH + (xpos%LCU_WIDTH),
|
|
|
|
LCU_WIDTH,
|
|
|
|
mv_frac_x,
|
|
|
|
mv_frac_y,
|
|
|
|
mv_param);
|
2015-08-14 15:39:39 +00:00
|
|
|
|
|
|
|
if (src.malloc_used) free(src.buffer);
|
2015-07-28 17:00:16 +00:00
|
|
|
}
|
|
|
|
|
2015-11-04 08:32:20 +00:00
|
|
|
static void inter_recon_14bit_frac_luma(const encoder_state_t * const state,
|
|
|
|
const kvz_picture * const ref,
|
|
|
|
int32_t xpos,
|
|
|
|
int32_t ypos,
|
|
|
|
int32_t block_width,
|
2015-11-04 08:55:50 +00:00
|
|
|
int32_t block_height,
|
2015-11-04 08:32:20 +00:00
|
|
|
const int16_t mv_param[2],
|
|
|
|
hi_prec_buf_t *hi_prec_out)
|
2015-08-04 13:14:40 +00:00
|
|
|
{
|
|
|
|
int mv_frac_x = (mv_param[0] & 3);
|
|
|
|
int mv_frac_y = (mv_param[1] & 3);
|
|
|
|
|
|
|
|
#define FILTER_SIZE_Y 8 //Luma filter size
|
|
|
|
|
|
|
|
// Fractional luma 1/4-pel
|
2015-08-17 08:12:49 +00:00
|
|
|
kvz_extended_block src = { 0, 0, 0 };
|
2015-08-04 13:14:40 +00:00
|
|
|
|
|
|
|
// Fractional luma
|
2015-11-04 08:55:50 +00:00
|
|
|
kvz_get_extended_block(xpos,
|
|
|
|
ypos,
|
|
|
|
mv_param[0] >> 2,
|
|
|
|
mv_param[1] >> 2,
|
|
|
|
state->tile->lcu_offset_x * LCU_WIDTH,
|
|
|
|
state->tile->lcu_offset_y * LCU_WIDTH,
|
|
|
|
ref->y,
|
|
|
|
ref->width,
|
|
|
|
ref->height,
|
|
|
|
FILTER_SIZE_Y,
|
|
|
|
block_width,
|
|
|
|
block_height,
|
|
|
|
&src);
|
|
|
|
kvz_sample_14bit_quarterpel_luma_generic(state->encoder_control,
|
|
|
|
src.orig_topleft,
|
|
|
|
src.stride,
|
|
|
|
block_width,
|
|
|
|
block_height,
|
|
|
|
hi_prec_out->y + (ypos%LCU_WIDTH)*LCU_WIDTH + (xpos%LCU_WIDTH),
|
|
|
|
LCU_WIDTH,
|
|
|
|
mv_frac_x,
|
|
|
|
mv_frac_y,
|
|
|
|
mv_param);
|
2015-08-14 15:39:39 +00:00
|
|
|
|
|
|
|
if (src.malloc_used) free(src.buffer);
|
2015-08-04 13:14:40 +00:00
|
|
|
}
|
|
|
|
|
2015-11-04 08:32:20 +00:00
|
|
|
static void inter_recon_frac_chroma(const encoder_state_t * const state,
|
|
|
|
const kvz_picture * const ref,
|
|
|
|
int32_t xpos,
|
|
|
|
int32_t ypos,
|
|
|
|
int32_t block_width,
|
|
|
|
int32_t block_height,
|
|
|
|
const int16_t mv_param[2],
|
|
|
|
lcu_t *lcu)
|
2015-07-28 17:00:16 +00:00
|
|
|
{
|
|
|
|
int mv_frac_x = (mv_param[0] & 7);
|
|
|
|
int mv_frac_y = (mv_param[1] & 7);
|
|
|
|
|
|
|
|
// Translate to chroma
|
|
|
|
xpos >>= 1;
|
|
|
|
ypos >>= 1;
|
|
|
|
block_width >>= 1;
|
2015-10-05 09:17:00 +00:00
|
|
|
block_height >>= 1;
|
2015-07-28 17:00:16 +00:00
|
|
|
|
|
|
|
#define FILTER_SIZE_C 4 //Chroma filter size
|
|
|
|
|
|
|
|
// Fractional chroma 1/8-pel
|
2015-08-17 08:12:49 +00:00
|
|
|
kvz_extended_block src_u = { 0, 0, 0 };
|
|
|
|
kvz_extended_block src_v = { 0, 0, 0 };
|
2015-07-28 17:00:16 +00:00
|
|
|
|
|
|
|
//Fractional chroma U
|
2015-08-26 08:50:27 +00:00
|
|
|
kvz_get_extended_block(xpos, ypos, (mv_param[0] >> 2) >> 1, (mv_param[1] >> 2) >> 1, state->tile->lcu_offset_x * LCU_WIDTH_C, state->tile->lcu_offset_y * LCU_WIDTH_C,
|
2015-10-05 09:17:00 +00:00
|
|
|
ref->u, ref->width >> 1, ref->height >> 1, FILTER_SIZE_C, block_width, block_height, &src_u);
|
2015-08-26 08:50:27 +00:00
|
|
|
kvz_sample_octpel_chroma_generic(state->encoder_control, src_u.orig_topleft, src_u.stride, block_width,
|
2015-10-05 09:17:00 +00:00
|
|
|
block_height, lcu->rec.u + (ypos % LCU_WIDTH_C)*LCU_WIDTH_C + (xpos % LCU_WIDTH_C), LCU_WIDTH_C, mv_frac_x, mv_frac_y, mv_param);
|
2015-07-28 17:00:16 +00:00
|
|
|
|
|
|
|
//Fractional chroma V
|
2015-08-26 08:50:27 +00:00
|
|
|
kvz_get_extended_block(xpos, ypos, (mv_param[0] >> 2) >> 1, (mv_param[1] >> 2) >> 1, state->tile->lcu_offset_x * LCU_WIDTH_C, state->tile->lcu_offset_y * LCU_WIDTH_C,
|
2015-10-05 09:17:00 +00:00
|
|
|
ref->v, ref->width >> 1, ref->height >> 1, FILTER_SIZE_C, block_width, block_height, &src_v);
|
2015-08-26 08:50:27 +00:00
|
|
|
kvz_sample_octpel_chroma_generic(state->encoder_control, src_v.orig_topleft, src_v.stride, block_width,
|
2015-10-05 09:17:00 +00:00
|
|
|
block_height, lcu->rec.v + (ypos % LCU_WIDTH_C)*LCU_WIDTH_C + (xpos % LCU_WIDTH_C), LCU_WIDTH_C, mv_frac_x, mv_frac_y, mv_param);
|
2015-08-14 15:39:39 +00:00
|
|
|
|
|
|
|
if (src_u.malloc_used) free(src_u.buffer);
|
|
|
|
if (src_v.malloc_used) free(src_v.buffer);
|
2015-07-28 17:00:16 +00:00
|
|
|
}
|
|
|
|
|
2015-11-04 08:32:20 +00:00
|
|
|
static void inter_recon_14bit_frac_chroma(const encoder_state_t * const state,
|
|
|
|
const kvz_picture * const ref,
|
|
|
|
int32_t xpos,
|
|
|
|
int32_t ypos,
|
|
|
|
int32_t block_width,
|
2015-11-04 08:55:50 +00:00
|
|
|
int32_t block_height,
|
2015-11-04 08:32:20 +00:00
|
|
|
const int16_t mv_param[2],
|
|
|
|
hi_prec_buf_t *hi_prec_out)
|
2015-08-04 13:14:40 +00:00
|
|
|
{
|
|
|
|
int mv_frac_x = (mv_param[0] & 7);
|
|
|
|
int mv_frac_y = (mv_param[1] & 7);
|
|
|
|
|
|
|
|
// Translate to chroma
|
|
|
|
xpos >>= 1;
|
|
|
|
ypos >>= 1;
|
|
|
|
block_width >>= 1;
|
2015-11-04 08:55:50 +00:00
|
|
|
block_height >>= 1;
|
2015-08-04 13:14:40 +00:00
|
|
|
|
|
|
|
#define FILTER_SIZE_C 4 //Chroma filter size
|
|
|
|
|
|
|
|
// Fractional chroma 1/8-pel
|
2015-08-17 08:12:49 +00:00
|
|
|
kvz_extended_block src_u = { 0, 0, 0 };
|
|
|
|
kvz_extended_block src_v = { 0, 0, 0 };
|
2015-08-04 13:14:40 +00:00
|
|
|
|
|
|
|
//Fractional chroma U
|
2015-11-04 08:55:50 +00:00
|
|
|
kvz_get_extended_block(xpos,
|
|
|
|
ypos,
|
|
|
|
(mv_param[0] >> 2) >> 1,
|
|
|
|
(mv_param[1] >> 2) >> 1,
|
|
|
|
state->tile->lcu_offset_x * LCU_WIDTH_C,
|
|
|
|
state->tile->lcu_offset_y * LCU_WIDTH_C,
|
|
|
|
ref->u,
|
|
|
|
ref->width >> 1,
|
|
|
|
ref->height >> 1,
|
|
|
|
FILTER_SIZE_C,
|
|
|
|
block_width,
|
|
|
|
block_height,
|
|
|
|
&src_u);
|
|
|
|
kvz_sample_14bit_octpel_chroma_generic(state->encoder_control,
|
|
|
|
src_u.orig_topleft,
|
|
|
|
src_u.stride,
|
|
|
|
block_width,
|
|
|
|
block_height,
|
|
|
|
hi_prec_out->u + (ypos % LCU_WIDTH_C)*LCU_WIDTH_C + (xpos % LCU_WIDTH_C),
|
|
|
|
LCU_WIDTH_C,
|
|
|
|
mv_frac_x,
|
|
|
|
mv_frac_y,
|
|
|
|
mv_param);
|
2015-08-04 13:14:40 +00:00
|
|
|
|
|
|
|
//Fractional chroma V
|
2015-11-04 08:55:50 +00:00
|
|
|
kvz_get_extended_block(xpos,
|
|
|
|
ypos,
|
|
|
|
(mv_param[0] >> 2) >> 1,
|
|
|
|
(mv_param[1] >> 2) >> 1,
|
|
|
|
state->tile->lcu_offset_x * LCU_WIDTH_C,
|
|
|
|
state->tile->lcu_offset_y * LCU_WIDTH_C,
|
|
|
|
ref->v,
|
|
|
|
ref->width >> 1,
|
|
|
|
ref->height >> 1,
|
|
|
|
FILTER_SIZE_C,
|
|
|
|
block_width,
|
|
|
|
block_height,
|
|
|
|
&src_v);
|
|
|
|
kvz_sample_14bit_octpel_chroma_generic(state->encoder_control,
|
|
|
|
src_v.orig_topleft,
|
|
|
|
src_v.stride,
|
|
|
|
block_width,
|
|
|
|
block_height,
|
|
|
|
hi_prec_out->v + (ypos % LCU_WIDTH_C)*LCU_WIDTH_C + (xpos % LCU_WIDTH_C),
|
|
|
|
LCU_WIDTH_C,
|
|
|
|
mv_frac_x,
|
|
|
|
mv_frac_y,
|
|
|
|
mv_param);
|
2015-08-14 15:39:39 +00:00
|
|
|
|
|
|
|
if (src_u.malloc_used) free(src_u.buffer);
|
|
|
|
if (src_v.malloc_used) free(src_v.buffer);
|
2015-08-04 13:14:40 +00:00
|
|
|
}
|
|
|
|
|
2013-09-19 12:08:30 +00:00
|
|
|
/**
|
|
|
|
* \brief Reconstruct inter block
|
|
|
|
* \param ref picture to copy the data from
|
|
|
|
* \param xpos block x position
|
|
|
|
* \param ypos block y position
|
|
|
|
* \param width block width
|
2015-09-16 07:37:45 +00:00
|
|
|
* \param height block height
|
2013-09-19 12:08:30 +00:00
|
|
|
* \param mv[2] motion vector
|
2014-03-03 12:51:36 +00:00
|
|
|
* \param lcu destination lcu
|
2015-08-04 13:14:40 +00:00
|
|
|
* \param hi_prec destination of high precision output (null if not needed)
|
2013-09-19 12:08:30 +00:00
|
|
|
* \returns Void
|
2013-09-12 15:50:11 +00:00
|
|
|
*/
|
2015-09-16 07:37:45 +00:00
|
|
|
void kvz_inter_recon_lcu(const encoder_state_t * const state,
|
|
|
|
const kvz_picture * const ref,
|
|
|
|
int32_t xpos,
|
|
|
|
int32_t ypos,
|
|
|
|
int32_t width,
|
|
|
|
int32_t height,
|
|
|
|
const int16_t mv_param[2],
|
|
|
|
lcu_t *lcu,
|
|
|
|
hi_prec_buf_t *hi_prec_out)
|
2013-09-12 15:50:11 +00:00
|
|
|
{
|
|
|
|
int x,y,coord_x,coord_y;
|
2013-09-30 15:01:21 +00:00
|
|
|
int16_t mv[2] = { mv_param[0], mv_param[1] };
|
2013-09-12 15:50:11 +00:00
|
|
|
|
2014-03-03 12:51:36 +00:00
|
|
|
int32_t dst_width_c = LCU_WIDTH>>1; //!< Destination picture width in chroma pixels
|
2013-09-19 12:08:30 +00:00
|
|
|
int32_t ref_width_c = ref->width>>1; //!< Reference picture width in chroma pixels
|
2013-09-12 15:50:11 +00:00
|
|
|
|
2013-09-19 12:08:30 +00:00
|
|
|
// negative overflow flag
|
2015-03-04 15:00:23 +00:00
|
|
|
int8_t overflow_neg_x = (state->tile->lcu_offset_x * LCU_WIDTH + xpos + (mv[0]>>2) < 0)?1:0;
|
|
|
|
int8_t overflow_neg_y = (state->tile->lcu_offset_y * LCU_WIDTH + ypos + (mv[1]>>2) < 0)?1:0;
|
2013-09-12 15:50:11 +00:00
|
|
|
|
2013-09-19 12:08:30 +00:00
|
|
|
// positive overflow flag
|
2015-03-04 15:00:23 +00:00
|
|
|
int8_t overflow_pos_x = (state->tile->lcu_offset_x * LCU_WIDTH + xpos + (mv[0]>>2) + width > ref->width )?1:0;
|
2015-09-16 07:37:45 +00:00
|
|
|
int8_t overflow_pos_y = (state->tile->lcu_offset_y * LCU_WIDTH + ypos + (mv[1]>>2) + height > ref->height)?1:0;
|
2013-09-19 12:08:30 +00:00
|
|
|
|
2013-09-25 11:28:00 +00:00
|
|
|
int8_t chroma_halfpel = ((mv[0]>>2)&1) || ((mv[1]>>2)&1); //!< (luma integer mv) lsb is set -> chroma is half-pel
|
2014-05-14 01:42:02 +00:00
|
|
|
// Luma quarter-pel
|
2015-07-28 17:00:16 +00:00
|
|
|
int8_t fractional_mv = (mv[0]&1) || (mv[1]&1) || (mv[0]&2) || (mv[1]&2); // either of 2 lowest bits of mv set -> mv is fractional
|
2014-05-14 01:42:02 +00:00
|
|
|
|
2015-07-28 17:00:16 +00:00
|
|
|
if(fractional_mv) {
|
2015-08-04 13:14:40 +00:00
|
|
|
if (state->encoder_control->cfg->bipred && hi_prec_out){
|
2015-11-04 08:55:50 +00:00
|
|
|
inter_recon_14bit_frac_luma(state, ref, xpos, ypos, width, height, mv_param, hi_prec_out);
|
|
|
|
inter_recon_14bit_frac_chroma(state, ref, xpos, ypos, width, height, mv_param, hi_prec_out);
|
2015-08-04 13:14:40 +00:00
|
|
|
} else {
|
2015-11-04 08:55:50 +00:00
|
|
|
inter_recon_frac_luma(state, ref, xpos, ypos, width, height, mv_param, lcu);
|
2015-11-04 08:32:20 +00:00
|
|
|
inter_recon_frac_chroma(state, ref, xpos, ypos, width, height, mv_param, lcu);
|
2015-08-04 13:14:40 +00:00
|
|
|
}
|
2015-07-28 17:00:16 +00:00
|
|
|
}
|
2014-05-14 01:42:02 +00:00
|
|
|
|
|
|
|
mv[0] >>= 2;
|
|
|
|
mv[1] >>= 2;
|
|
|
|
|
|
|
|
// Chroma half-pel
|
|
|
|
// get half-pel interpolated block and push it to output
|
|
|
|
if(!fractional_mv) {
|
|
|
|
if(chroma_halfpel) {
|
2015-08-04 13:14:40 +00:00
|
|
|
if (state->encoder_control->cfg->bipred && hi_prec_out){
|
2015-11-04 08:55:50 +00:00
|
|
|
inter_recon_14bit_frac_chroma(state, ref, xpos, ypos, width, height, mv_param, hi_prec_out);
|
2015-08-04 13:14:40 +00:00
|
|
|
} else {
|
2015-11-04 08:32:20 +00:00
|
|
|
inter_recon_frac_chroma(state, ref, xpos, ypos, width, height, mv_param, lcu);
|
2015-08-04 13:14:40 +00:00
|
|
|
}
|
2014-05-14 01:42:02 +00:00
|
|
|
}
|
2014-03-03 12:51:36 +00:00
|
|
|
|
2014-05-14 01:42:02 +00:00
|
|
|
// With overflow present, more checking
|
|
|
|
if (overflow_neg_x || overflow_neg_y || overflow_pos_x || overflow_pos_y) {
|
|
|
|
// Copy Luma with boundary checking
|
2015-09-16 07:37:45 +00:00
|
|
|
for (y = ypos; y < ypos + height; y++) {
|
2014-05-14 01:42:02 +00:00
|
|
|
for (x = xpos; x < xpos + width; x++) {
|
|
|
|
int x_in_lcu = (x & ((LCU_WIDTH)-1));
|
|
|
|
int y_in_lcu = (y & ((LCU_WIDTH)-1));
|
2013-09-12 15:50:11 +00:00
|
|
|
|
2015-03-04 15:00:23 +00:00
|
|
|
coord_x = (x + state->tile->lcu_offset_x * LCU_WIDTH) + mv[0];
|
|
|
|
coord_y = (y + state->tile->lcu_offset_y * LCU_WIDTH) + mv[1];
|
2013-09-23 15:07:16 +00:00
|
|
|
overflow_neg_x = (coord_x < 0)?1:0;
|
2014-05-14 01:42:02 +00:00
|
|
|
overflow_neg_y = (coord_y < 0)?1:0;
|
2013-09-12 15:50:11 +00:00
|
|
|
|
2014-05-14 01:42:02 +00:00
|
|
|
overflow_pos_x = (coord_x >= ref->width )?1:0;
|
|
|
|
overflow_pos_y = (coord_y >= ref->height)?1:0;
|
2013-09-12 15:50:11 +00:00
|
|
|
|
2013-09-23 15:07:16 +00:00
|
|
|
// On x-overflow set coord_x accordingly
|
2014-05-14 01:42:02 +00:00
|
|
|
if (overflow_neg_x) {
|
2013-09-23 15:07:16 +00:00
|
|
|
coord_x = 0;
|
2014-05-14 01:42:02 +00:00
|
|
|
} else if (overflow_pos_x) {
|
|
|
|
coord_x = ref->width - 1;
|
2013-09-23 15:07:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// On y-overflow set coord_y accordingly
|
2014-05-14 01:42:02 +00:00
|
|
|
if (overflow_neg_y) {
|
2013-09-23 15:07:16 +00:00
|
|
|
coord_y = 0;
|
2014-05-14 01:42:02 +00:00
|
|
|
} else if (overflow_pos_y) {
|
|
|
|
coord_y = ref->height - 1;
|
2013-09-23 15:07:16 +00:00
|
|
|
}
|
|
|
|
|
2014-05-14 01:42:02 +00:00
|
|
|
// set destination to (corrected) pixel value from the reference
|
2014-11-06 13:59:10 +00:00
|
|
|
lcu->rec.y[y_in_lcu * LCU_WIDTH + x_in_lcu] = ref->y[coord_y*ref->width + coord_x];
|
2013-09-23 15:07:16 +00:00
|
|
|
}
|
2013-09-12 15:50:11 +00:00
|
|
|
}
|
2014-05-14 01:42:02 +00:00
|
|
|
|
|
|
|
if(!chroma_halfpel) {
|
|
|
|
// Copy Chroma with boundary checking
|
2015-09-16 07:37:45 +00:00
|
|
|
for (y = ypos>>1; y < (ypos + height)>>1; y++) {
|
2014-05-14 01:42:02 +00:00
|
|
|
for (x = xpos>>1; x < (xpos + width)>>1; x++) {
|
|
|
|
int x_in_lcu = (x & ((LCU_WIDTH>>1)-1));
|
|
|
|
int y_in_lcu = (y & ((LCU_WIDTH>>1)-1));
|
|
|
|
|
2015-03-04 15:00:23 +00:00
|
|
|
coord_x = (x + state->tile->lcu_offset_x * (LCU_WIDTH >> 1)) + (mv[0]>>1);
|
|
|
|
coord_y = (y + state->tile->lcu_offset_y * (LCU_WIDTH >> 1)) + (mv[1]>>1);
|
2014-05-14 01:42:02 +00:00
|
|
|
|
|
|
|
overflow_neg_x = (coord_x < 0)?1:0;
|
2016-02-29 12:29:01 +00:00
|
|
|
overflow_neg_y = (coord_y < 0)?1:0;
|
2014-05-14 01:42:02 +00:00
|
|
|
|
|
|
|
overflow_pos_x = (coord_x >= ref->width>>1 )?1:0;
|
|
|
|
overflow_pos_y = (coord_y >= ref->height>>1)?1:0;
|
|
|
|
|
|
|
|
// On x-overflow set coord_x accordingly
|
|
|
|
if(overflow_neg_x) {
|
|
|
|
coord_x = 0;
|
|
|
|
} else if(overflow_pos_x) {
|
|
|
|
coord_x = (ref->width>>1) - 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// On y-overflow set coord_y accordingly
|
|
|
|
if(overflow_neg_y) {
|
|
|
|
coord_y = 0;
|
|
|
|
} else if(overflow_pos_y) {
|
|
|
|
coord_y = (ref->height>>1) - 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// set destinations to (corrected) pixel value from the reference
|
2014-11-06 13:59:10 +00:00
|
|
|
lcu->rec.u[y_in_lcu*dst_width_c + x_in_lcu] = ref->u[coord_y * ref_width_c + coord_x];
|
|
|
|
lcu->rec.v[y_in_lcu*dst_width_c + x_in_lcu] = ref->v[coord_y * ref_width_c + coord_x];
|
2014-05-14 01:42:02 +00:00
|
|
|
}
|
|
|
|
}
|
2013-09-12 15:50:11 +00:00
|
|
|
}
|
2014-05-14 01:42:02 +00:00
|
|
|
} else { //If no overflow, we can copy without checking boundaries
|
|
|
|
// Copy Luma
|
2015-09-16 07:37:45 +00:00
|
|
|
for (y = ypos; y < ypos + height; y++) {
|
2014-05-14 01:42:02 +00:00
|
|
|
int y_in_lcu = (y & ((LCU_WIDTH)-1));
|
2015-03-04 15:00:23 +00:00
|
|
|
coord_y = ((y + state->tile->lcu_offset_y * LCU_WIDTH) + mv[1]) * ref->width; // pre-calculate
|
2014-05-14 01:42:02 +00:00
|
|
|
for (x = xpos; x < xpos + width; x++) {
|
|
|
|
int x_in_lcu = (x & ((LCU_WIDTH)-1));
|
2013-09-12 15:50:11 +00:00
|
|
|
|
2015-03-04 15:00:23 +00:00
|
|
|
lcu->rec.y[y_in_lcu * LCU_WIDTH + x_in_lcu] = ref->y[coord_y + (x + state->tile->lcu_offset_x * LCU_WIDTH) + mv[0]];
|
2014-05-14 01:42:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!chroma_halfpel) {
|
|
|
|
// Copy Chroma
|
|
|
|
// TODO: chroma fractional pixel interpolation
|
2015-09-16 07:37:45 +00:00
|
|
|
for (y = ypos>>1; y < (ypos + height)>>1; y++) {
|
2014-05-14 01:42:02 +00:00
|
|
|
int y_in_lcu = (y & ((LCU_WIDTH>>1)-1));
|
2015-03-04 15:00:23 +00:00
|
|
|
coord_y = ((y + state->tile->lcu_offset_y * (LCU_WIDTH>>1)) + (mv[1]>>1)) * ref_width_c; // pre-calculate
|
2014-05-14 01:42:02 +00:00
|
|
|
for (x = xpos>>1; x < (xpos + width)>>1; x++) {
|
|
|
|
int x_in_lcu = (x & ((LCU_WIDTH>>1)-1));
|
2015-03-04 15:00:23 +00:00
|
|
|
lcu->rec.u[y_in_lcu*dst_width_c + x_in_lcu] = ref->u[coord_y + (x + state->tile->lcu_offset_x * (LCU_WIDTH>>1)) + (mv[0]>>1)];
|
|
|
|
lcu->rec.v[y_in_lcu*dst_width_c + x_in_lcu] = ref->v[coord_y + (x + state->tile->lcu_offset_x * (LCU_WIDTH>>1)) + (mv[0]>>1)];
|
2014-05-14 01:42:02 +00:00
|
|
|
}
|
2013-09-23 15:07:16 +00:00
|
|
|
}
|
2013-09-12 15:50:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-09-16 13:37:24 +00:00
|
|
|
}
|
|
|
|
|
2015-04-21 09:05:21 +00:00
|
|
|
/**
|
|
|
|
* \brief Reconstruct bi-pred inter block
|
|
|
|
* \param ref1 reference picture to copy the data from
|
|
|
|
* \param ref2 other reference picture to copy the data from
|
|
|
|
* \param xpos block x position
|
|
|
|
* \param ypos block y position
|
|
|
|
* \param width block width
|
2015-09-16 07:37:45 +00:00
|
|
|
* \param height block height
|
2015-04-21 09:05:21 +00:00
|
|
|
* \param mv[2][2] motion vectors
|
|
|
|
* \param lcu destination lcu
|
|
|
|
* \returns Void
|
|
|
|
*/
|
|
|
|
|
2015-09-16 07:37:45 +00:00
|
|
|
void kvz_inter_recon_lcu_bipred(const encoder_state_t * const state,
|
|
|
|
const kvz_picture * ref1,
|
|
|
|
const kvz_picture * ref2,
|
|
|
|
int32_t xpos,
|
|
|
|
int32_t ypos,
|
|
|
|
int32_t width,
|
|
|
|
int32_t height,
|
|
|
|
int16_t mv_param[2][2],
|
2015-11-04 08:32:20 +00:00
|
|
|
lcu_t* lcu)
|
|
|
|
{
|
2015-08-04 13:14:40 +00:00
|
|
|
kvz_pixel temp_lcu_y[LCU_WIDTH*LCU_WIDTH];
|
|
|
|
kvz_pixel temp_lcu_u[LCU_WIDTH_C*LCU_WIDTH_C];
|
|
|
|
kvz_pixel temp_lcu_v[LCU_WIDTH_C*LCU_WIDTH_C];
|
2015-04-21 09:05:21 +00:00
|
|
|
int temp_x, temp_y;
|
2015-07-28 17:00:16 +00:00
|
|
|
int shift = 15 - KVZ_BIT_DEPTH;
|
2015-04-30 15:50:56 +00:00
|
|
|
int offset = 1 << (shift - 1);
|
2015-04-23 11:39:41 +00:00
|
|
|
|
2015-08-04 13:14:40 +00:00
|
|
|
const int hi_prec_luma_rec0 = mv_param[0][0] & 3 || mv_param[0][1] & 3;
|
|
|
|
const int hi_prec_luma_rec1 = mv_param[1][0] & 3 || mv_param[1][1] & 3;
|
|
|
|
|
|
|
|
const int hi_prec_chroma_rec0 = mv_param[0][0] & 7 || mv_param[0][1] & 7;
|
|
|
|
const int hi_prec_chroma_rec1 = mv_param[1][0] & 7 || mv_param[1][1] & 7;
|
|
|
|
|
|
|
|
hi_prec_buf_t* high_precision_rec0 = 0;
|
|
|
|
hi_prec_buf_t* high_precision_rec1 = 0;
|
2015-08-26 08:50:27 +00:00
|
|
|
if (hi_prec_chroma_rec0) high_precision_rec0 = kvz_hi_prec_buf_t_alloc(LCU_WIDTH*LCU_WIDTH);
|
|
|
|
if (hi_prec_chroma_rec1) high_precision_rec1 = kvz_hi_prec_buf_t_alloc(LCU_WIDTH*LCU_WIDTH);
|
2015-04-23 11:39:41 +00:00
|
|
|
//Reconstruct both predictors
|
2015-09-16 07:37:45 +00:00
|
|
|
kvz_inter_recon_lcu(state, ref1, xpos, ypos, width, height, mv_param[0], lcu, high_precision_rec0);
|
2015-08-04 13:14:40 +00:00
|
|
|
if (!hi_prec_luma_rec0){
|
|
|
|
memcpy(temp_lcu_y, lcu->rec.y, sizeof(kvz_pixel) * 64 * 64);
|
|
|
|
}
|
|
|
|
if (!hi_prec_chroma_rec0){
|
|
|
|
memcpy(temp_lcu_u, lcu->rec.u, sizeof(kvz_pixel) * 32 * 32);
|
|
|
|
memcpy(temp_lcu_v, lcu->rec.v, sizeof(kvz_pixel) * 32 * 32);
|
|
|
|
}
|
2015-09-16 07:37:45 +00:00
|
|
|
kvz_inter_recon_lcu(state, ref2, xpos, ypos, width, height, mv_param[1], lcu, high_precision_rec1);
|
2015-04-23 11:39:41 +00:00
|
|
|
|
|
|
|
// After reconstruction, merge the predictors by taking an average of each pixel
|
2015-09-16 07:37:45 +00:00
|
|
|
for (temp_y = 0; temp_y < height; ++temp_y) {
|
2015-04-21 09:05:21 +00:00
|
|
|
int y_in_lcu = ((ypos + temp_y) & ((LCU_WIDTH)-1));
|
|
|
|
for (temp_x = 0; temp_x < width; ++temp_x) {
|
|
|
|
int x_in_lcu = ((xpos + temp_x) & ((LCU_WIDTH)-1));
|
2015-08-04 13:14:40 +00:00
|
|
|
int16_t sample0_y = (hi_prec_luma_rec0 ? high_precision_rec0->y[y_in_lcu * LCU_WIDTH + x_in_lcu] : (temp_lcu_y[y_in_lcu * LCU_WIDTH + x_in_lcu] << (14 - KVZ_BIT_DEPTH)));
|
|
|
|
int16_t sample1_y = (hi_prec_luma_rec1 ? high_precision_rec1->y[y_in_lcu * LCU_WIDTH + x_in_lcu] : (lcu->rec.y[y_in_lcu * LCU_WIDTH + x_in_lcu] << (14 - KVZ_BIT_DEPTH)));
|
2015-08-26 08:50:27 +00:00
|
|
|
lcu->rec.y[y_in_lcu * LCU_WIDTH + x_in_lcu] = (kvz_pixel)kvz_fast_clip_32bit_to_pixel((sample0_y + sample1_y + offset) >> shift);
|
2015-04-21 09:05:21 +00:00
|
|
|
}
|
2015-08-04 13:14:40 +00:00
|
|
|
|
2015-04-21 09:05:21 +00:00
|
|
|
}
|
2015-09-16 07:37:45 +00:00
|
|
|
for (temp_y = 0; temp_y < height >> 1; ++temp_y) {
|
2015-04-21 09:05:21 +00:00
|
|
|
int y_in_lcu = (((ypos >> 1) + temp_y) & (LCU_WIDTH_C - 1));
|
2015-08-04 13:14:40 +00:00
|
|
|
for (temp_x = 0; temp_x < width >> 1; ++temp_x) {
|
2015-04-21 09:05:21 +00:00
|
|
|
int x_in_lcu = (((xpos >> 1) + temp_x) & (LCU_WIDTH_C - 1));
|
2015-08-04 13:14:40 +00:00
|
|
|
int16_t sample0_u = (hi_prec_chroma_rec0 ? high_precision_rec0->u[y_in_lcu * LCU_WIDTH_C + x_in_lcu] : (temp_lcu_u[y_in_lcu * LCU_WIDTH_C + x_in_lcu] << (14 - KVZ_BIT_DEPTH)));
|
|
|
|
int16_t sample1_u = (hi_prec_chroma_rec1 ? high_precision_rec1->u[y_in_lcu * LCU_WIDTH_C + x_in_lcu] : (lcu->rec.u[y_in_lcu * LCU_WIDTH_C + x_in_lcu] << (14 - KVZ_BIT_DEPTH)));
|
2015-08-26 08:50:27 +00:00
|
|
|
lcu->rec.u[y_in_lcu * LCU_WIDTH_C + x_in_lcu] = (kvz_pixel)kvz_fast_clip_32bit_to_pixel((sample0_u + sample1_u + offset) >> shift);
|
2015-04-21 09:05:21 +00:00
|
|
|
|
2015-08-04 13:14:40 +00:00
|
|
|
int16_t sample0_v = (hi_prec_chroma_rec0 ? high_precision_rec0->v[y_in_lcu * LCU_WIDTH_C + x_in_lcu] : (temp_lcu_v[y_in_lcu * LCU_WIDTH_C + x_in_lcu] << (14 - KVZ_BIT_DEPTH)));
|
|
|
|
int16_t sample1_v = (hi_prec_chroma_rec1 ? high_precision_rec1->v[y_in_lcu * LCU_WIDTH_C + x_in_lcu] : (lcu->rec.v[y_in_lcu * LCU_WIDTH_C + x_in_lcu] << (14 - KVZ_BIT_DEPTH)));
|
2015-08-26 08:50:27 +00:00
|
|
|
lcu->rec.v[y_in_lcu * LCU_WIDTH_C + x_in_lcu] = (kvz_pixel)kvz_fast_clip_32bit_to_pixel((sample0_v + sample1_v + offset) >> shift);
|
2015-04-21 09:05:21 +00:00
|
|
|
}
|
|
|
|
}
|
2015-08-26 08:50:27 +00:00
|
|
|
if (high_precision_rec0 != 0) kvz_hi_prec_buf_t_free(high_precision_rec0);
|
|
|
|
if (high_precision_rec1 != 0) kvz_hi_prec_buf_t_free(high_precision_rec1);
|
2015-04-21 09:05:21 +00:00
|
|
|
}
|
|
|
|
|
2015-04-23 11:39:41 +00:00
|
|
|
/**
|
|
|
|
* \brief Set unused L0/L1 motion vectors and reference
|
|
|
|
* \param cu coding unit to clear
|
|
|
|
*/
|
2015-04-23 09:18:33 +00:00
|
|
|
static void inter_clear_cu_unused(cu_info_t* cu) {
|
2015-08-31 10:01:24 +00:00
|
|
|
for (unsigned i = 0; i < 2; ++i) {
|
|
|
|
if (cu->inter.mv_dir & (1 << i)) continue;
|
|
|
|
|
|
|
|
cu->inter.mv[i][0] = 0;
|
|
|
|
cu->inter.mv[i][1] = 0;
|
|
|
|
cu->inter.mv_ref[i] = 255;
|
2015-04-23 09:18:33 +00:00
|
|
|
}
|
|
|
|
}
|
2015-04-21 09:05:21 +00:00
|
|
|
|
2013-09-19 12:08:30 +00:00
|
|
|
/**
|
2013-10-11 08:59:10 +00:00
|
|
|
* \brief Get merge candidates for current block
|
2013-09-19 12:08:30 +00:00
|
|
|
* \param encoder encoder control struct to use
|
2015-10-12 11:44:03 +00:00
|
|
|
* \param x block x position in SCU
|
|
|
|
* \param y block y position in SCU
|
2015-08-31 07:41:35 +00:00
|
|
|
* \param width current block width
|
|
|
|
* \param height current block height
|
2013-10-11 08:59:10 +00:00
|
|
|
* \param b0 candidate b0
|
|
|
|
* \param b1 candidate b1
|
|
|
|
* \param b2 candidate b2
|
|
|
|
* \param a0 candidate a0
|
|
|
|
* \param a1 candidate a1
|
2013-09-19 12:08:30 +00:00
|
|
|
*/
|
2015-08-31 07:41:35 +00:00
|
|
|
void kvz_inter_get_spatial_merge_candidates(int32_t x,
|
|
|
|
int32_t y,
|
|
|
|
int32_t width,
|
|
|
|
int32_t height,
|
|
|
|
cu_info_t **b0,
|
|
|
|
cu_info_t **b1,
|
|
|
|
cu_info_t **b2,
|
|
|
|
cu_info_t **a0,
|
|
|
|
cu_info_t **a1,
|
|
|
|
lcu_t *lcu)
|
2013-09-16 13:37:24 +00:00
|
|
|
{
|
2015-08-31 07:41:35 +00:00
|
|
|
// the width and height of the current block on SCU
|
|
|
|
uint8_t width_in_scu = width / CU_MIN_SIZE_PIXELS;
|
|
|
|
uint8_t height_in_scu = height / CU_MIN_SIZE_PIXELS;
|
|
|
|
|
2013-09-16 13:37:24 +00:00
|
|
|
/*
|
|
|
|
Predictor block locations
|
2013-09-18 07:15:05 +00:00
|
|
|
____ _______
|
2013-09-16 13:37:24 +00:00
|
|
|
|B2|______|B1|B0|
|
|
|
|
| |
|
|
|
|
| Cur CU |
|
|
|
|
__| |
|
|
|
|
|A1|_________|
|
|
|
|
|A0|
|
2014-02-21 13:00:20 +00:00
|
|
|
*/
|
2015-09-02 07:55:19 +00:00
|
|
|
int32_t x_cu = SUB_SCU(x) >> MAX_DEPTH; //!< coordinates from top-left of this LCU
|
|
|
|
int32_t y_cu = SUB_SCU(y) >> MAX_DEPTH;
|
2013-09-19 12:08:30 +00:00
|
|
|
// A0 and A1 availability testing
|
2014-03-03 14:08:35 +00:00
|
|
|
if (x != 0) {
|
2015-08-31 07:41:35 +00:00
|
|
|
*a1 = LCU_GET_CU(lcu, x_cu - 1, y_cu + height_in_scu - 1);
|
2015-11-02 08:26:02 +00:00
|
|
|
// Do not check (*a1)->coded because the block above is always coded before
|
|
|
|
// the current one and the flag is not set when searching an SMP block.
|
|
|
|
if ((*a1)->type == CU_INTER) {
|
|
|
|
inter_clear_cu_unused(*a1);
|
|
|
|
} else {
|
|
|
|
*a1 = NULL;
|
|
|
|
}
|
2013-09-16 13:37:24 +00:00
|
|
|
|
2015-08-31 07:41:35 +00:00
|
|
|
if (y_cu + height_in_scu < LCU_WIDTH>>3) {
|
|
|
|
*a0 = LCU_GET_CU(lcu, x_cu - 1, y_cu + height_in_scu);
|
2015-11-02 08:26:02 +00:00
|
|
|
if ((*a0)->coded && (*a0)->type == CU_INTER) {
|
|
|
|
inter_clear_cu_unused(*a0);
|
|
|
|
} else {
|
|
|
|
*a0 = NULL;
|
|
|
|
}
|
2013-09-16 13:37:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-19 12:08:30 +00:00
|
|
|
// B0, B1 and B2 availability testing
|
2014-03-03 14:08:35 +00:00
|
|
|
if (y != 0) {
|
2015-08-31 07:41:35 +00:00
|
|
|
if (x_cu + width_in_scu < LCU_WIDTH>>3) {
|
|
|
|
*b0 = LCU_GET_CU(lcu, x_cu + width_in_scu, y_cu - 1);
|
2015-11-02 08:26:02 +00:00
|
|
|
} else if (y_cu == 0) {
|
2015-09-02 09:07:58 +00:00
|
|
|
// Special case, top-right CU
|
|
|
|
*b0 = LCU_GET_TOP_RIGHT_CU(lcu);
|
2013-10-02 12:10:40 +00:00
|
|
|
}
|
2015-11-02 08:26:02 +00:00
|
|
|
if ((*b0) && (*b0)->coded && (*b0)->type == CU_INTER) {
|
|
|
|
inter_clear_cu_unused(*b0);
|
|
|
|
} else {
|
|
|
|
*b0 = NULL;
|
|
|
|
}
|
2014-03-06 16:14:01 +00:00
|
|
|
|
2015-08-31 07:41:35 +00:00
|
|
|
*b1 = LCU_GET_CU(lcu, x_cu + width_in_scu - 1, y_cu - 1);
|
2015-11-02 08:26:02 +00:00
|
|
|
// Do not check (*b1)->coded because the block to the left is always coded
|
|
|
|
// before the current one and the flag is not set when searching an SMP
|
|
|
|
// block.
|
|
|
|
if ((*b1)->type == CU_INTER) {
|
|
|
|
inter_clear_cu_unused(*b1);
|
|
|
|
} else {
|
|
|
|
*b1 = NULL;
|
|
|
|
}
|
2013-09-16 13:37:24 +00:00
|
|
|
|
2014-03-04 13:32:15 +00:00
|
|
|
if (x != 0) {
|
2015-09-02 09:07:58 +00:00
|
|
|
*b2 = LCU_GET_CU(lcu, x_cu - 1, y_cu - 1);
|
2015-11-02 08:26:02 +00:00
|
|
|
// Do not check (*b2)->coded because the block above and to the left is
|
|
|
|
// always coded before the current one.
|
|
|
|
if ((*b2)->type == CU_INTER) {
|
|
|
|
inter_clear_cu_unused(*b2);
|
|
|
|
} else {
|
|
|
|
*b2 = NULL;
|
|
|
|
}
|
2013-09-16 13:37:24 +00:00
|
|
|
}
|
|
|
|
}
|
2013-10-11 08:59:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Get MV prediction for current block
|
|
|
|
* \param encoder encoder control struct to use
|
|
|
|
* \param x_cu block x position in SCU
|
|
|
|
* \param y_cu block y position in SCU
|
2015-08-31 07:41:35 +00:00
|
|
|
* \param width current block width
|
|
|
|
* \param height current block height
|
|
|
|
* \param mv_cand[2][2] return the motion vector candidates
|
2013-10-11 08:59:10 +00:00
|
|
|
*/
|
2015-08-31 07:41:35 +00:00
|
|
|
void kvz_inter_get_mv_cand(const encoder_state_t * const state,
|
|
|
|
int32_t x,
|
|
|
|
int32_t y,
|
|
|
|
int32_t width,
|
|
|
|
int32_t height,
|
|
|
|
int16_t mv_cand[2][2],
|
|
|
|
cu_info_t* cur_cu,
|
|
|
|
lcu_t *lcu,
|
|
|
|
int8_t reflist)
|
2014-02-21 13:00:20 +00:00
|
|
|
{
|
2013-10-11 08:59:10 +00:00
|
|
|
uint8_t candidates = 0;
|
2014-02-14 13:50:30 +00:00
|
|
|
uint8_t b_candidates = 0;
|
2015-04-02 11:05:24 +00:00
|
|
|
int8_t reflist2nd = !reflist;
|
2013-10-11 08:59:10 +00:00
|
|
|
|
2015-03-04 11:15:45 +00:00
|
|
|
cu_info_t *b0, *b1, *b2, *a0, *a1;
|
2013-10-11 08:59:10 +00:00
|
|
|
b0 = b1 = b2 = a0 = a1 = NULL;
|
2015-08-31 07:41:35 +00:00
|
|
|
kvz_inter_get_spatial_merge_candidates(x, y, width, height, &b0, &b1, &b2, &a0, &a1, lcu);
|
2013-09-16 13:37:24 +00:00
|
|
|
|
2014-02-14 15:13:18 +00:00
|
|
|
#define CALCULATE_SCALE(cu,tb,td) ((tb * ((0x4000 + (abs(td)>>1))/td) + 32) >> 6)
|
2015-06-17 06:56:53 +00:00
|
|
|
#define APPLY_MV_SCALING(cu, cand, list) {int td = state->global->poc - state->global->ref->pocs[(cu)->inter.mv_ref[list]];\
|
|
|
|
int tb = state->global->poc - state->global->ref->pocs[cur_cu->inter.mv_ref[reflist]];\
|
2014-02-14 15:13:18 +00:00
|
|
|
if (td != tb) { \
|
|
|
|
int scale = CALCULATE_SCALE(cu,tb,td); \
|
2015-03-30 11:40:29 +00:00
|
|
|
mv_cand[cand][0] = ((scale * (cu)->inter.mv[list][0] + 127 + (scale * (cu)->inter.mv[list][0] < 0)) >> 8 ); \
|
|
|
|
mv_cand[cand][1] = ((scale * (cu)->inter.mv[list][1] + 127 + (scale * (cu)->inter.mv[list][1] < 0)) >> 8 ); }}
|
2014-02-14 13:50:30 +00:00
|
|
|
|
2013-09-19 12:08:30 +00:00
|
|
|
// Left predictors
|
2015-11-02 08:26:02 +00:00
|
|
|
if (a0 && (
|
2015-04-02 11:05:24 +00:00
|
|
|
((a0->inter.mv_dir & 1) && a0->inter.mv_ref[0] == cur_cu->inter.mv_ref[reflist]) ||
|
|
|
|
((a0->inter.mv_dir & 2) && a0->inter.mv_ref[1] == cur_cu->inter.mv_ref[reflist]))) {
|
|
|
|
if (a0->inter.mv_dir & (1 << reflist) && a0->inter.mv_ref[reflist] == cur_cu->inter.mv_ref[reflist]) {
|
|
|
|
mv_cand[candidates][0] = a0->inter.mv[reflist][0];
|
|
|
|
mv_cand[candidates][1] = a0->inter.mv[reflist][1];
|
2015-03-30 11:40:29 +00:00
|
|
|
} else {
|
2015-04-02 11:05:24 +00:00
|
|
|
mv_cand[candidates][0] = a0->inter.mv[reflist2nd][0];
|
|
|
|
mv_cand[candidates][1] = a0->inter.mv[reflist2nd][1];
|
2015-03-30 11:40:29 +00:00
|
|
|
}
|
2013-09-16 13:37:24 +00:00
|
|
|
candidates++;
|
2015-11-02 08:26:02 +00:00
|
|
|
} else if (a1 && (
|
2015-04-02 11:05:24 +00:00
|
|
|
((a1->inter.mv_dir & 1) && a1->inter.mv_ref[0] == cur_cu->inter.mv_ref[reflist]) ||
|
|
|
|
((a1->inter.mv_dir & 2) && a1->inter.mv_ref[1] == cur_cu->inter.mv_ref[reflist]))) {
|
|
|
|
if (a1->inter.mv_dir & (1 << reflist) && a1->inter.mv_ref[reflist] == cur_cu->inter.mv_ref[reflist]) {
|
|
|
|
mv_cand[candidates][0] = a1->inter.mv[reflist][0];
|
|
|
|
mv_cand[candidates][1] = a1->inter.mv[reflist][1];
|
2015-03-30 11:40:29 +00:00
|
|
|
} else {
|
2015-04-02 11:05:24 +00:00
|
|
|
mv_cand[candidates][0] = a1->inter.mv[reflist2nd][0];
|
|
|
|
mv_cand[candidates][1] = a1->inter.mv[reflist2nd][1];
|
2015-03-30 11:40:29 +00:00
|
|
|
}
|
2013-09-16 13:37:24 +00:00
|
|
|
candidates++;
|
|
|
|
}
|
|
|
|
|
2014-02-14 13:50:30 +00:00
|
|
|
if(!candidates) {
|
|
|
|
// Left predictors
|
2015-11-02 08:26:02 +00:00
|
|
|
if (a0) {
|
2015-04-02 11:05:24 +00:00
|
|
|
if (a0->inter.mv_dir & (1 << reflist)) {
|
|
|
|
mv_cand[candidates][0] = a0->inter.mv[reflist][0];
|
|
|
|
mv_cand[candidates][1] = a0->inter.mv[reflist][1];
|
|
|
|
APPLY_MV_SCALING(a0, candidates, reflist);
|
2015-03-30 11:40:29 +00:00
|
|
|
} else {
|
2015-04-02 11:05:24 +00:00
|
|
|
mv_cand[candidates][0] = a0->inter.mv[reflist2nd][0];
|
|
|
|
mv_cand[candidates][1] = a0->inter.mv[reflist2nd][1];
|
|
|
|
APPLY_MV_SCALING(a0, candidates, reflist2nd);
|
2015-03-30 11:40:29 +00:00
|
|
|
}
|
2014-02-14 13:50:30 +00:00
|
|
|
candidates++;
|
2015-11-02 08:26:02 +00:00
|
|
|
} else if (a1) {
|
2015-04-02 11:05:24 +00:00
|
|
|
if (a1->inter.mv_dir & (1 << reflist)) {
|
|
|
|
mv_cand[candidates][0] = a1->inter.mv[reflist][0];
|
|
|
|
mv_cand[candidates][1] = a1->inter.mv[reflist][1];
|
|
|
|
APPLY_MV_SCALING(a1, candidates, reflist);
|
2015-03-30 11:40:29 +00:00
|
|
|
} else {
|
2015-04-02 11:05:24 +00:00
|
|
|
mv_cand[candidates][0] = a1->inter.mv[reflist2nd][0];
|
|
|
|
mv_cand[candidates][1] = a1->inter.mv[reflist2nd][1];
|
|
|
|
APPLY_MV_SCALING(a1, candidates, reflist2nd);
|
2015-03-30 11:40:29 +00:00
|
|
|
}
|
2014-02-14 13:50:30 +00:00
|
|
|
candidates++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-19 12:08:30 +00:00
|
|
|
// Top predictors
|
2015-11-02 08:26:02 +00:00
|
|
|
if (b0 && (
|
2015-04-02 11:05:24 +00:00
|
|
|
((b0->inter.mv_dir & 1) && b0->inter.mv_ref[0] == cur_cu->inter.mv_ref[reflist]) ||
|
|
|
|
((b0->inter.mv_dir & 2) && b0->inter.mv_ref[1] == cur_cu->inter.mv_ref[reflist]))) {
|
|
|
|
if (b0->inter.mv_dir & (1 << reflist) && b0->inter.mv_ref[reflist] == cur_cu->inter.mv_ref[reflist]) {
|
|
|
|
mv_cand[candidates][0] = b0->inter.mv[reflist][0];
|
|
|
|
mv_cand[candidates][1] = b0->inter.mv[reflist][1];
|
2015-03-30 11:40:29 +00:00
|
|
|
} else {
|
2015-04-02 11:05:24 +00:00
|
|
|
mv_cand[candidates][0] = b0->inter.mv[reflist2nd][0];
|
|
|
|
mv_cand[candidates][1] = b0->inter.mv[reflist2nd][1];
|
2015-03-30 11:40:29 +00:00
|
|
|
}
|
2014-02-14 13:50:30 +00:00
|
|
|
b_candidates++;
|
2015-11-02 08:26:02 +00:00
|
|
|
} else if (b1 && (
|
2015-04-02 11:05:24 +00:00
|
|
|
((b1->inter.mv_dir & 1) && b1->inter.mv_ref[0] == cur_cu->inter.mv_ref[reflist]) ||
|
|
|
|
((b1->inter.mv_dir & 2) && b1->inter.mv_ref[1] == cur_cu->inter.mv_ref[reflist]))) {
|
|
|
|
if (b1->inter.mv_dir & (1 << reflist) && b1->inter.mv_ref[reflist] == cur_cu->inter.mv_ref[reflist]) {
|
|
|
|
mv_cand[candidates][0] = b1->inter.mv[reflist][0];
|
|
|
|
mv_cand[candidates][1] = b1->inter.mv[reflist][1];
|
2015-03-30 11:40:29 +00:00
|
|
|
} else {
|
2015-04-02 11:05:24 +00:00
|
|
|
mv_cand[candidates][0] = b1->inter.mv[reflist2nd][0];
|
|
|
|
mv_cand[candidates][1] = b1->inter.mv[reflist2nd][1];
|
2015-03-30 11:40:29 +00:00
|
|
|
}
|
2014-02-21 13:00:20 +00:00
|
|
|
b_candidates++;
|
2015-11-02 08:26:02 +00:00
|
|
|
} else if (b2 && (
|
2015-04-02 11:05:24 +00:00
|
|
|
((b2->inter.mv_dir & 1) && b2->inter.mv_ref[0] == cur_cu->inter.mv_ref[reflist]) ||
|
|
|
|
((b2->inter.mv_dir & 2) && b2->inter.mv_ref[1] == cur_cu->inter.mv_ref[reflist]))) {
|
|
|
|
if (b2->inter.mv_dir & (1 << reflist) && b2->inter.mv_ref[reflist] == cur_cu->inter.mv_ref[reflist]) {
|
|
|
|
mv_cand[candidates][0] = b2->inter.mv[reflist][0];
|
|
|
|
mv_cand[candidates][1] = b2->inter.mv[reflist][1];
|
2015-03-30 11:40:29 +00:00
|
|
|
} else {
|
2015-04-02 11:05:24 +00:00
|
|
|
mv_cand[candidates][0] = b2->inter.mv[reflist2nd][0];
|
|
|
|
mv_cand[candidates][1] = b2->inter.mv[reflist2nd][1];
|
2015-03-30 11:40:29 +00:00
|
|
|
}
|
2014-02-17 09:13:12 +00:00
|
|
|
b_candidates++;
|
2014-02-14 13:50:30 +00:00
|
|
|
}
|
|
|
|
candidates += b_candidates;
|
|
|
|
|
2014-02-17 15:39:40 +00:00
|
|
|
// When a1 or a0 is available, we dont check for secondary B candidates
|
2015-11-02 08:26:02 +00:00
|
|
|
if (a1 || a0) {
|
2014-02-18 15:27:45 +00:00
|
|
|
b_candidates = 1;
|
|
|
|
} else if(candidates != 2) {
|
|
|
|
b_candidates = 0;
|
|
|
|
}
|
2014-02-17 15:39:40 +00:00
|
|
|
|
2014-02-14 13:50:30 +00:00
|
|
|
if(!b_candidates) {
|
|
|
|
// Top predictors
|
2015-11-02 08:26:02 +00:00
|
|
|
if (b0) {
|
2015-04-02 11:05:24 +00:00
|
|
|
if (b0->inter.mv_dir & (1 << reflist)) {
|
|
|
|
mv_cand[candidates][0] = b0->inter.mv[reflist][0];
|
|
|
|
mv_cand[candidates][1] = b0->inter.mv[reflist][1];
|
|
|
|
APPLY_MV_SCALING(b0, candidates, reflist);
|
2015-03-30 11:40:29 +00:00
|
|
|
} else {
|
2015-04-02 11:05:24 +00:00
|
|
|
mv_cand[candidates][0] = b0->inter.mv[reflist2nd][0];
|
|
|
|
mv_cand[candidates][1] = b0->inter.mv[reflist2nd][1];
|
|
|
|
APPLY_MV_SCALING(b0, candidates, reflist2nd);
|
2015-03-30 11:40:29 +00:00
|
|
|
}
|
2014-02-14 13:50:30 +00:00
|
|
|
candidates++;
|
2015-11-02 08:26:02 +00:00
|
|
|
} else if (b1) {
|
2015-04-02 11:05:24 +00:00
|
|
|
if (b1->inter.mv_dir & (1 << reflist)) {
|
|
|
|
mv_cand[candidates][0] = b1->inter.mv[reflist][0];
|
|
|
|
mv_cand[candidates][1] = b1->inter.mv[reflist][1];
|
|
|
|
APPLY_MV_SCALING(b1, candidates, reflist);
|
2015-03-30 11:40:29 +00:00
|
|
|
} else {
|
2015-04-02 11:05:24 +00:00
|
|
|
mv_cand[candidates][0] = b1->inter.mv[reflist2nd][0];
|
|
|
|
mv_cand[candidates][1] = b1->inter.mv[reflist2nd][1];
|
|
|
|
APPLY_MV_SCALING(b1, candidates, reflist2nd);
|
2015-03-30 11:40:29 +00:00
|
|
|
}
|
2014-02-14 13:50:30 +00:00
|
|
|
candidates++;
|
2015-11-02 08:26:02 +00:00
|
|
|
} else if (b2) {
|
2015-04-02 11:05:24 +00:00
|
|
|
if (b2->inter.mv_dir & (1 << reflist)) {
|
|
|
|
mv_cand[candidates][0] = b2->inter.mv[reflist][0];
|
|
|
|
mv_cand[candidates][1] = b2->inter.mv[reflist][1];
|
|
|
|
APPLY_MV_SCALING(b2, candidates, reflist);
|
2015-03-30 11:40:29 +00:00
|
|
|
} else {
|
2015-04-02 11:05:24 +00:00
|
|
|
mv_cand[candidates][0] = b2->inter.mv[reflist2nd][0];
|
|
|
|
mv_cand[candidates][1] = b2->inter.mv[reflist2nd][1];
|
|
|
|
APPLY_MV_SCALING(b2, candidates, reflist2nd);
|
2015-03-30 11:40:29 +00:00
|
|
|
}
|
2014-02-17 09:13:12 +00:00
|
|
|
candidates++;
|
2014-02-14 13:50:30 +00:00
|
|
|
}
|
2013-09-16 13:37:24 +00:00
|
|
|
}
|
|
|
|
|
2013-09-19 12:08:30 +00:00
|
|
|
// Remove identical candidate
|
2013-09-18 07:15:05 +00:00
|
|
|
if(candidates == 2 && mv_cand[0][0] == mv_cand[1][0] && mv_cand[0][1] == mv_cand[1][1]) {
|
|
|
|
candidates = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if ENABLE_TEMPORAL_MVP
|
2013-10-11 13:12:04 +00:00
|
|
|
if(candidates < AMVP_MAX_NUM_CANDS) {
|
2013-09-16 13:37:24 +00:00
|
|
|
//TODO: add temporal mv predictor
|
|
|
|
}
|
2013-09-18 07:15:05 +00:00
|
|
|
#endif
|
2013-09-16 13:37:24 +00:00
|
|
|
|
2013-09-19 12:08:30 +00:00
|
|
|
// Fill with (0,0)
|
2013-10-11 13:12:04 +00:00
|
|
|
while (candidates < AMVP_MAX_NUM_CANDS) {
|
2013-09-16 13:37:24 +00:00
|
|
|
mv_cand[candidates][0] = 0;
|
|
|
|
mv_cand[candidates][1] = 0;
|
|
|
|
candidates++;
|
|
|
|
}
|
2014-02-14 13:50:30 +00:00
|
|
|
#undef CALCULATE_SCALE
|
|
|
|
#undef APPLY_MV_SCALING
|
2013-09-19 12:08:30 +00:00
|
|
|
}
|
2013-10-11 13:12:04 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Get merge predictions for current block
|
2015-10-12 11:44:03 +00:00
|
|
|
* \param state the encoder state
|
|
|
|
* \param x block x position in SCU
|
|
|
|
* \param y block y position in SCU
|
|
|
|
* \param width block width
|
|
|
|
* \param height block height
|
|
|
|
* \param use_a1 true, if candidate a1 can be used
|
|
|
|
* \param use_b1 true, if candidate b1 can be used
|
|
|
|
* \param mv_cand Returns the merge candidates.
|
|
|
|
* \param lcu lcu containing the block
|
|
|
|
* \return number of merge candidates
|
2013-10-11 13:12:04 +00:00
|
|
|
*/
|
2015-10-12 11:44:03 +00:00
|
|
|
uint8_t kvz_inter_get_merge_cand(const encoder_state_t * const state,
|
|
|
|
int32_t x, int32_t y,
|
|
|
|
int32_t width, int32_t height,
|
|
|
|
bool use_a1, bool use_b1,
|
|
|
|
inter_merge_cand_t mv_cand[MRG_MAX_NUM_CANDS],
|
|
|
|
lcu_t *lcu)
|
2014-02-21 13:00:20 +00:00
|
|
|
{
|
2013-10-11 13:12:04 +00:00
|
|
|
uint8_t candidates = 0;
|
|
|
|
int8_t duplicate = 0;
|
|
|
|
|
2015-03-04 11:15:45 +00:00
|
|
|
cu_info_t *b0, *b1, *b2, *a0, *a1;
|
2014-02-14 13:50:30 +00:00
|
|
|
int8_t zero_idx = 0;
|
2013-10-11 13:12:04 +00:00
|
|
|
b0 = b1 = b2 = a0 = a1 = NULL;
|
2015-10-12 11:44:03 +00:00
|
|
|
kvz_inter_get_spatial_merge_candidates(x, y, width, height, &b0, &b1, &b2, &a0, &a1, lcu);
|
2014-02-21 13:00:20 +00:00
|
|
|
|
2015-10-12 11:44:03 +00:00
|
|
|
if (!use_a1) a1 = NULL;
|
|
|
|
if (!use_b1) b1 = NULL;
|
2013-10-11 13:12:04 +00:00
|
|
|
|
2015-11-02 08:26:02 +00:00
|
|
|
#define CHECK_DUPLICATE(CU1,CU2) {duplicate = 0; if ((CU2) && \
|
2015-04-23 09:18:33 +00:00
|
|
|
(CU1)->inter.mv_dir == (CU2)->inter.mv_dir && \
|
2015-03-31 09:23:46 +00:00
|
|
|
(!(((CU1)->inter.mv_dir & 1) && ((CU2)->inter.mv_dir & 1)) || \
|
2015-03-30 11:40:29 +00:00
|
|
|
((CU1)->inter.mv[0][0] == (CU2)->inter.mv[0][0] && \
|
2015-04-23 09:18:33 +00:00
|
|
|
(CU1)->inter.mv[0][1] == (CU2)->inter.mv[0][1] && \
|
|
|
|
(CU1)->inter.mv_ref[0] == (CU2)->inter.mv_ref[0]) ) && \
|
|
|
|
(!(((CU1)->inter.mv_dir & 2) && ((CU2)->inter.mv_dir & 2) ) || \
|
2015-03-30 11:40:29 +00:00
|
|
|
((CU1)->inter.mv[1][0] == (CU2)->inter.mv[1][0] && \
|
2015-04-23 09:18:33 +00:00
|
|
|
(CU1)->inter.mv[1][1] == (CU2)->inter.mv[1][1] && \
|
|
|
|
(CU1)->inter.mv_ref[1] == (CU2)->inter.mv_ref[1]) ) \
|
2015-03-30 11:40:29 +00:00
|
|
|
) duplicate = 1; }
|
|
|
|
|
2015-11-02 08:26:02 +00:00
|
|
|
if (a1) {
|
2015-03-30 11:40:29 +00:00
|
|
|
mv_cand[candidates].mv[0][0] = a1->inter.mv[0][0];
|
|
|
|
mv_cand[candidates].mv[0][1] = a1->inter.mv[0][1];
|
|
|
|
mv_cand[candidates].mv[1][0] = a1->inter.mv[1][0];
|
|
|
|
mv_cand[candidates].mv[1][1] = a1->inter.mv[1][1];
|
|
|
|
mv_cand[candidates].ref[0] = a1->inter.mv_ref[0];
|
|
|
|
mv_cand[candidates].ref[1] = a1->inter.mv_ref[1];
|
2015-03-18 08:03:06 +00:00
|
|
|
mv_cand[candidates].dir = a1->inter.mv_dir;
|
|
|
|
candidates++;
|
2013-10-11 13:12:04 +00:00
|
|
|
}
|
|
|
|
|
2015-11-02 08:26:02 +00:00
|
|
|
if (b1) {
|
2014-02-18 14:59:45 +00:00
|
|
|
if(candidates) CHECK_DUPLICATE(b1, a1);
|
2013-10-11 13:12:04 +00:00
|
|
|
if(!duplicate) {
|
2015-03-30 11:40:29 +00:00
|
|
|
mv_cand[candidates].mv[0][0] = b1->inter.mv[0][0];
|
|
|
|
mv_cand[candidates].mv[0][1] = b1->inter.mv[0][1];
|
|
|
|
mv_cand[candidates].mv[1][0] = b1->inter.mv[1][0];
|
|
|
|
mv_cand[candidates].mv[1][1] = b1->inter.mv[1][1];
|
|
|
|
mv_cand[candidates].ref[0] = b1->inter.mv_ref[0];
|
|
|
|
mv_cand[candidates].ref[1] = b1->inter.mv_ref[1];
|
2015-03-18 08:03:06 +00:00
|
|
|
mv_cand[candidates].dir = b1->inter.mv_dir;
|
2013-10-11 13:12:04 +00:00
|
|
|
candidates++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-02 08:26:02 +00:00
|
|
|
if (b0) {
|
2014-02-18 14:59:45 +00:00
|
|
|
if(candidates) CHECK_DUPLICATE(b0,b1);
|
2013-10-11 13:12:04 +00:00
|
|
|
if(!duplicate) {
|
2015-03-30 11:40:29 +00:00
|
|
|
mv_cand[candidates].mv[0][0] = b0->inter.mv[0][0];
|
|
|
|
mv_cand[candidates].mv[0][1] = b0->inter.mv[0][1];
|
|
|
|
mv_cand[candidates].mv[1][0] = b0->inter.mv[1][0];
|
|
|
|
mv_cand[candidates].mv[1][1] = b0->inter.mv[1][1];
|
|
|
|
mv_cand[candidates].ref[0] = b0->inter.mv_ref[0];
|
|
|
|
mv_cand[candidates].ref[1] = b0->inter.mv_ref[1];
|
2015-03-18 08:03:06 +00:00
|
|
|
mv_cand[candidates].dir = b0->inter.mv_dir;
|
2013-10-11 13:12:04 +00:00
|
|
|
candidates++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-02 08:26:02 +00:00
|
|
|
if (a0) {
|
2014-02-18 14:59:45 +00:00
|
|
|
if(candidates) CHECK_DUPLICATE(a0,a1);
|
2013-10-11 13:12:04 +00:00
|
|
|
if(!duplicate) {
|
2015-03-30 11:40:29 +00:00
|
|
|
mv_cand[candidates].mv[0][0] = a0->inter.mv[0][0];
|
|
|
|
mv_cand[candidates].mv[0][1] = a0->inter.mv[0][1];
|
|
|
|
mv_cand[candidates].mv[1][0] = a0->inter.mv[1][0];
|
|
|
|
mv_cand[candidates].mv[1][1] = a0->inter.mv[1][1];
|
|
|
|
mv_cand[candidates].ref[0] = a0->inter.mv_ref[0];
|
|
|
|
mv_cand[candidates].ref[1] = a0->inter.mv_ref[1];
|
2015-03-18 08:03:06 +00:00
|
|
|
mv_cand[candidates].dir = a0->inter.mv_dir;
|
2013-10-11 13:12:04 +00:00
|
|
|
candidates++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-23 13:50:11 +00:00
|
|
|
if (candidates != 4) {
|
2015-11-02 08:26:02 +00:00
|
|
|
if (b2) {
|
2014-02-18 14:59:45 +00:00
|
|
|
CHECK_DUPLICATE(b2,a1);
|
2013-10-23 13:50:11 +00:00
|
|
|
if(!duplicate) {
|
2014-02-18 14:59:45 +00:00
|
|
|
CHECK_DUPLICATE(b2,b1);
|
2013-10-23 13:50:11 +00:00
|
|
|
if(!duplicate) {
|
2015-03-30 11:40:29 +00:00
|
|
|
mv_cand[candidates].mv[0][0] = b2->inter.mv[0][0];
|
|
|
|
mv_cand[candidates].mv[0][1] = b2->inter.mv[0][1];
|
|
|
|
mv_cand[candidates].mv[1][0] = b2->inter.mv[1][0];
|
|
|
|
mv_cand[candidates].mv[1][1] = b2->inter.mv[1][1];
|
|
|
|
mv_cand[candidates].ref[0] = b2->inter.mv_ref[0];
|
|
|
|
mv_cand[candidates].ref[1] = b2->inter.mv_ref[1];
|
2015-03-18 08:03:06 +00:00
|
|
|
mv_cand[candidates].dir = b2->inter.mv_dir;
|
2013-10-23 13:50:11 +00:00
|
|
|
candidates++;
|
|
|
|
}
|
|
|
|
}
|
2013-10-11 13:12:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#if ENABLE_TEMPORAL_MVP
|
|
|
|
if(candidates < AMVP_MAX_NUM_CANDS) {
|
|
|
|
//TODO: add temporal mv predictor
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-09-08 10:57:15 +00:00
|
|
|
if (candidates < MRG_MAX_NUM_CANDS && state->global->slicetype == KVZ_SLICE_B) {
|
2015-03-18 08:03:06 +00:00
|
|
|
#define NUM_PRIORITY_LIST 12;
|
|
|
|
static const uint8_t priorityList0[] = { 0, 1, 0, 2, 1, 2, 0, 3, 1, 3, 2, 3 };
|
|
|
|
static const uint8_t priorityList1[] = { 1, 0, 2, 0, 2, 1, 3, 0, 3, 1, 3, 2 };
|
|
|
|
uint8_t cutoff = candidates;
|
|
|
|
for (int32_t idx = 0; idx<cutoff*(cutoff - 1) && candidates != MRG_MAX_NUM_CANDS; idx++) {
|
|
|
|
uint8_t i = priorityList0[idx];
|
|
|
|
uint8_t j = priorityList1[idx];
|
2015-03-20 08:33:05 +00:00
|
|
|
if (i >= candidates || j >= candidates) break;
|
2015-03-18 08:03:06 +00:00
|
|
|
|
|
|
|
// Find one L0 and L1 candidate according to the priority list
|
|
|
|
if ((mv_cand[i].dir & 0x1) && (mv_cand[j].dir & 0x2)) {
|
|
|
|
mv_cand[candidates].dir = 3;
|
|
|
|
|
|
|
|
// get Mv from cand[i] and cand[j]
|
|
|
|
mv_cand[candidates].mv[0][0] = mv_cand[i].mv[0][0];
|
|
|
|
mv_cand[candidates].mv[0][1] = mv_cand[i].mv[0][1];
|
|
|
|
mv_cand[candidates].mv[1][0] = mv_cand[j].mv[1][0];
|
|
|
|
mv_cand[candidates].mv[1][1] = mv_cand[j].mv[1][1];
|
2015-03-30 11:40:29 +00:00
|
|
|
mv_cand[candidates].ref[0] = mv_cand[i].ref[0];
|
|
|
|
mv_cand[candidates].ref[1] = mv_cand[j].ref[1];
|
2015-03-18 08:03:06 +00:00
|
|
|
|
2015-03-30 11:40:29 +00:00
|
|
|
if (mv_cand[i].ref[0] == mv_cand[j].ref[1] &&
|
2015-03-18 08:03:06 +00:00
|
|
|
mv_cand[i].mv[0][0] == mv_cand[j].mv[1][0] &&
|
|
|
|
mv_cand[i].mv[0][1] == mv_cand[j].mv[1][1]) {
|
|
|
|
// Not a candidate
|
|
|
|
} else {
|
|
|
|
candidates++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-20 08:33:05 +00:00
|
|
|
int num_ref = state->global->ref->used_size;
|
|
|
|
|
2015-09-08 10:57:15 +00:00
|
|
|
if (candidates < MRG_MAX_NUM_CANDS && state->global->slicetype == KVZ_SLICE_B) {
|
2015-03-20 08:33:05 +00:00
|
|
|
int j;
|
|
|
|
int ref_negative = 0;
|
|
|
|
int ref_positive = 0;
|
|
|
|
for (j = 0; j < state->global->ref->used_size; j++) {
|
2015-06-17 06:56:53 +00:00
|
|
|
if (state->global->ref->pocs[j] < state->global->poc) {
|
2015-03-20 08:33:05 +00:00
|
|
|
ref_negative++;
|
|
|
|
} else {
|
|
|
|
ref_positive++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
num_ref = MIN(ref_negative, ref_positive);
|
|
|
|
}
|
2015-04-23 09:18:33 +00:00
|
|
|
|
2013-11-05 10:49:39 +00:00
|
|
|
// Add (0,0) prediction
|
2015-03-20 08:33:05 +00:00
|
|
|
while (candidates != MRG_MAX_NUM_CANDS) {
|
2015-03-18 08:03:06 +00:00
|
|
|
mv_cand[candidates].mv[0][0] = 0;
|
|
|
|
mv_cand[candidates].mv[0][1] = 0;
|
2015-03-30 11:40:29 +00:00
|
|
|
mv_cand[candidates].ref[0] = (zero_idx>=num_ref-1)?0:zero_idx;
|
|
|
|
mv_cand[candidates].ref[1] = mv_cand[candidates].ref[0];
|
2015-03-18 08:03:06 +00:00
|
|
|
mv_cand[candidates].dir = 1;
|
2015-09-08 10:57:15 +00:00
|
|
|
if (state->global->slicetype == KVZ_SLICE_B) {
|
2015-03-18 08:03:06 +00:00
|
|
|
mv_cand[candidates].mv[1][0] = 0;
|
|
|
|
mv_cand[candidates].mv[1][1] = 0;
|
|
|
|
mv_cand[candidates].dir = 3;
|
|
|
|
}
|
2014-02-14 13:50:30 +00:00
|
|
|
zero_idx++;
|
2013-10-11 13:12:04 +00:00
|
|
|
candidates++;
|
|
|
|
}
|
2013-11-05 10:49:39 +00:00
|
|
|
|
2013-10-11 13:12:04 +00:00
|
|
|
return candidates;
|
|
|
|
}
|