2013-09-19 07:35:34 +00:00
|
|
|
#ifndef INTER_H_
|
|
|
|
#define INTER_H_
|
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
|
|
|
****************************************************************************/
|
|
|
|
|
2015-12-17 11:42:57 +00:00
|
|
|
/**
|
|
|
|
* \ingroup Reconstruction
|
2013-09-18 14:29:30 +00:00
|
|
|
* \file
|
2015-12-17 11:42:57 +00:00
|
|
|
* Inter prediction.
|
2013-04-24 07:35:27 +00:00
|
|
|
*/
|
|
|
|
|
2016-03-30 09:41:37 +00:00
|
|
|
#include "global.h" // IWYU pragma: keep
|
2013-09-18 09:16:03 +00:00
|
|
|
|
2014-06-05 12:54:58 +00:00
|
|
|
#include "image.h"
|
2013-09-18 09:16:03 +00:00
|
|
|
#include "encoder.h"
|
2014-06-03 11:51:30 +00:00
|
|
|
#include "encoderstate.h"
|
2013-09-18 09:16:03 +00:00
|
|
|
|
2015-03-18 08:03:06 +00:00
|
|
|
typedef struct {
|
|
|
|
uint8_t dir;
|
2015-03-30 11:40:29 +00:00
|
|
|
uint8_t ref[2];
|
2015-03-18 08:03:06 +00:00
|
|
|
int16_t mv[2][2];
|
|
|
|
|
|
|
|
} inter_merge_cand_t;
|
|
|
|
|
2013-09-18 09:16:03 +00:00
|
|
|
|
2015-09-16 07:37:45 +00:00
|
|
|
void kvz_inter_recon_lcu(const encoder_state_t * const state,
|
|
|
|
const kvz_picture * 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);
|
|
|
|
|
|
|
|
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],
|
|
|
|
lcu_t* lcu);
|
2015-10-12 11:44:03 +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);
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
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);
|
2013-04-24 07:35:27 +00:00
|
|
|
#endif
|