2014-11-20 16:38:54 +00:00
|
|
|
#ifndef STRATEGIES_IPOL_H_
|
|
|
|
#define STRATEGIES_IPOL_H_
|
|
|
|
/*****************************************************************************
|
2021-11-23 06:46:06 +00:00
|
|
|
* This file is part of uvg266 VVC encoder.
|
2014-11-20 16:38:54 +00:00
|
|
|
*
|
2021-10-07 08:32:59 +00:00
|
|
|
* Copyright (c) 2021, Tampere University, ITU/ISO/IEC, project contributors
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without modification,
|
|
|
|
* are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* * Redistributions of source code must retain the above copyright notice, this
|
|
|
|
* list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* * Redistributions in binary form must reproduce the above copyright notice, this
|
|
|
|
* list of conditions and the following disclaimer in the documentation and/or
|
|
|
|
* other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* * Neither the name of the Tampere University or ITU/ISO/IEC nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived from
|
|
|
|
* this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
|
|
|
|
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
|
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION HOWEVER CAUSED AND ON
|
|
|
|
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
* INCLUDING NEGLIGENCE OR OTHERWISE ARISING IN ANY WAY OUT OF THE USE OF THIS
|
2014-11-20 16:38:54 +00:00
|
|
|
****************************************************************************/
|
2015-12-17 11:42:57 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* \ingroup Optimization
|
|
|
|
* \file
|
|
|
|
* Interface for subpixel interpolation functions.
|
|
|
|
*/
|
|
|
|
|
2016-04-01 14:14:23 +00:00
|
|
|
#include "encoder.h"
|
2016-03-30 09:41:37 +00:00
|
|
|
#include "global.h" // IWYU pragma: keep
|
2022-04-28 11:26:05 +00:00
|
|
|
#include "uvg266.h"
|
2016-07-12 15:03:52 +00:00
|
|
|
#include "search_inter.h"
|
2016-01-22 13:07:49 +00:00
|
|
|
|
2021-11-22 15:44:00 +00:00
|
|
|
// AVX2 implementation of horizontal filter reads and
|
|
|
|
// writes two rows for luma and four for chroma at a time.
|
|
|
|
// Extra vertical padding is added to prevent segfaults.
|
|
|
|
// Needs one extra byte for input buffer to prevent ASAN
|
|
|
|
// error because AVX2 reads one extra byte in the end.
|
2022-04-28 11:18:09 +00:00
|
|
|
#define UVG_IPOL_MAX_INPUT_SIZE_LUMA_SIMD ((UVG_EXT_BLOCK_W_LUMA + 1) * UVG_EXT_BLOCK_W_LUMA + 1)
|
|
|
|
#define UVG_IPOL_MAX_INPUT_SIZE_CHROMA_SIMD ((UVG_EXT_BLOCK_W_CHROMA + 3) * UVG_EXT_BLOCK_W_CHROMA + 1)
|
|
|
|
#define UVG_IPOL_MAX_IM_SIZE_LUMA_SIMD ((UVG_EXT_BLOCK_W_LUMA + 1) * LCU_WIDTH)
|
|
|
|
#define UVG_IPOL_MAX_IM_SIZE_CHROMA_SIMD ((UVG_EXT_BLOCK_W_CHROMA + 3) * LCU_WIDTH_C)
|
2021-03-06 23:27:55 +00:00
|
|
|
|
|
|
|
// On top of basic interpolation, FME needs one extra
|
2021-11-22 15:17:47 +00:00
|
|
|
// column and row for ME (left and up). Needs one extra
|
|
|
|
// byte to prevent ASAN error because AVX2 reads one extra byte.
|
2022-04-28 11:18:09 +00:00
|
|
|
#define UVG_FME_MAX_INPUT_SIZE_SIMD ((UVG_EXT_BLOCK_W_LUMA + 1) * (UVG_EXT_BLOCK_W_LUMA + 1) + 1)
|
2014-11-20 16:38:54 +00:00
|
|
|
|
2022-04-28 11:18:09 +00:00
|
|
|
typedef struct { uvg_pixel *buffer; uvg_pixel *orig_topleft; unsigned stride; unsigned malloc_used; } uvg_extended_block;
|
2014-11-20 16:38:54 +00:00
|
|
|
|
2022-04-28 11:18:09 +00:00
|
|
|
typedef void(ipol_blocks_func)(const encoder_control_t * encoder, uvg_pixel *src, int16_t src_stride, int width, int height,
|
|
|
|
uvg_pixel filtered[4][LCU_LUMA_SIZE], int16_t hor_intermediate[5][UVG_IPOL_MAX_IM_SIZE_LUMA_SIMD], int8_t fme_level, int16_t hor_first_cols[5][UVG_EXT_BLOCK_W_LUMA + 1],
|
2018-11-04 19:04:17 +00:00
|
|
|
int8_t sample_off_x, int8_t sample_off_y);
|
2016-07-12 15:03:52 +00:00
|
|
|
|
2021-03-02 17:48:57 +00:00
|
|
|
typedef struct {
|
|
|
|
// Source samples
|
2022-04-28 11:18:09 +00:00
|
|
|
uvg_pixel *src; // Top-left sample
|
2021-03-02 17:48:57 +00:00
|
|
|
int src_w; // Width
|
|
|
|
int src_h; // Height
|
|
|
|
int src_s; // Stride
|
|
|
|
|
|
|
|
// Requested sampling position, base dimensions, and padding
|
|
|
|
int blk_x;
|
|
|
|
int blk_y;
|
|
|
|
int blk_w; // Width
|
|
|
|
int blk_h; // Height
|
|
|
|
int pad_l; // Left
|
|
|
|
int pad_r; // Right
|
|
|
|
int pad_t; // Top
|
|
|
|
int pad_b; // Bottom
|
2021-03-08 14:05:34 +00:00
|
|
|
int pad_b_simd; // "Don't care" rows in the end. Zeroed out.
|
2021-03-02 17:48:57 +00:00
|
|
|
|
|
|
|
// Buffer for possible extrapolation. Free memory provided by the caller.
|
2022-04-28 11:18:09 +00:00
|
|
|
uvg_pixel *buf;
|
2021-03-02 17:48:57 +00:00
|
|
|
|
|
|
|
// Extended block data. These are set by the function.
|
2022-04-28 11:18:09 +00:00
|
|
|
uvg_pixel **ext; // Top-left sample with padding
|
|
|
|
uvg_pixel **ext_origin; // Top-left sample without padding
|
2021-03-02 17:48:57 +00:00
|
|
|
int *ext_s; // Stride
|
2022-04-28 11:18:09 +00:00
|
|
|
} uvg_epol_args;
|
2021-03-02 17:48:57 +00:00
|
|
|
|
2022-04-28 11:18:09 +00:00
|
|
|
typedef void(epol_func)(uvg_epol_args *args);
|
2021-03-02 17:48:57 +00:00
|
|
|
|
2014-11-20 16:38:54 +00:00
|
|
|
|
2022-04-28 11:18:09 +00:00
|
|
|
typedef void(uvg_sample_quarterpel_luma_func)(const encoder_control_t * const encoder, uvg_pixel *src, int16_t src_stride, int width, int height, uvg_pixel *dst, int16_t dst_stride, int8_t hor_flag, int8_t ver_flag, const mv_t mv[2]);
|
|
|
|
typedef void(uvg_sample_octpel_chroma_func)(const encoder_control_t * const encoder, uvg_pixel *src, int16_t src_stride, int width, int height, uvg_pixel *dst, int16_t dst_stride, int8_t hor_flag, int8_t ver_flag, const mv_t mv[2]);
|
2016-04-06 16:55:42 +00:00
|
|
|
|
2022-04-28 11:18:09 +00:00
|
|
|
typedef void(uvg_sample_quarterpel_luma_hi_func)(const encoder_control_t * const encoder, uvg_pixel *src, int16_t src_stride, int width, int height, int16_t *dst, int16_t dst_stride, int8_t hor_flag, int8_t ver_flag, const mv_t mv[2]);
|
|
|
|
typedef void(uvg_sample_octpel_chroma_hi_func)(const encoder_control_t * const encoder, uvg_pixel *src, int16_t src_stride, int width, int height, int16_t *dst, int16_t dst_stride, int8_t hor_flag, int8_t ver_flag, const mv_t mv[2]);
|
2014-11-20 16:38:54 +00:00
|
|
|
|
2022-04-28 11:18:09 +00:00
|
|
|
typedef void(uvg_sample_14bit_quarterpel_luma_func)(const encoder_control_t * const encoder,
|
|
|
|
uvg_pixel *src,
|
2020-04-04 19:14:10 +00:00
|
|
|
int16_t src_stride,
|
|
|
|
int width,
|
|
|
|
int height,
|
|
|
|
int16_t *dst,
|
|
|
|
int16_t dst_stride,
|
|
|
|
int8_t hor_flag,
|
|
|
|
int8_t ver_flag,
|
|
|
|
const int16_t mv[2]);
|
|
|
|
|
2022-04-28 11:18:09 +00:00
|
|
|
typedef void(uvg_sample_14bit_octpel_chroma_func)(const encoder_control_t *const encoder,
|
|
|
|
uvg_pixel *src,
|
2020-04-04 19:14:10 +00:00
|
|
|
int16_t src_stride,
|
|
|
|
int width,
|
|
|
|
int height,
|
|
|
|
int16_t *dst,
|
|
|
|
int16_t dst_stride,
|
|
|
|
int8_t hor_flag,
|
|
|
|
int8_t ver_flag,
|
|
|
|
const int16_t mv[2]);
|
|
|
|
|
2014-11-20 16:38:54 +00:00
|
|
|
// Declare function pointers.
|
2022-04-28 11:18:09 +00:00
|
|
|
extern ipol_blocks_func * uvg_filter_hpel_blocks_hor_ver_luma;
|
|
|
|
extern ipol_blocks_func * uvg_filter_hpel_blocks_diag_luma;
|
|
|
|
extern ipol_blocks_func * uvg_filter_qpel_blocks_hor_ver_luma;
|
|
|
|
extern ipol_blocks_func * uvg_filter_qpel_blocks_diag_luma;
|
|
|
|
extern epol_func * uvg_get_extended_block;
|
|
|
|
extern uvg_sample_quarterpel_luma_func * uvg_sample_quarterpel_luma;
|
|
|
|
extern uvg_sample_octpel_chroma_func * uvg_sample_octpel_chroma;
|
|
|
|
extern uvg_sample_quarterpel_luma_hi_func * uvg_sample_quarterpel_luma_hi;
|
|
|
|
extern uvg_sample_octpel_chroma_hi_func * uvg_sample_octpel_chroma_hi;
|
2014-11-20 16:38:54 +00:00
|
|
|
|
|
|
|
|
2022-04-28 11:18:09 +00:00
|
|
|
int uvg_strategy_register_ipol(void* opaque, uint8_t bitdepth);
|
2014-11-20 16:38:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
#define STRATEGIES_IPOL_EXPORTS \
|
2022-04-28 11:18:09 +00:00
|
|
|
{"filter_hpel_blocks_hor_ver_luma", (void**) &uvg_filter_hpel_blocks_hor_ver_luma}, \
|
|
|
|
{"filter_hpel_blocks_diag_luma", (void**) &uvg_filter_hpel_blocks_diag_luma}, \
|
|
|
|
{"filter_qpel_blocks_hor_ver_luma", (void**) &uvg_filter_qpel_blocks_hor_ver_luma}, \
|
|
|
|
{"filter_qpel_blocks_diag_luma", (void**) &uvg_filter_qpel_blocks_diag_luma}, \
|
|
|
|
{"sample_quarterpel_luma", (void**) &uvg_sample_quarterpel_luma}, \
|
|
|
|
{"sample_octpel_chroma", (void**) &uvg_sample_octpel_chroma}, \
|
|
|
|
{"sample_quarterpel_luma_hi", (void**) &uvg_sample_quarterpel_luma_hi}, \
|
|
|
|
{"sample_octpel_chroma_hi", (void**) &uvg_sample_octpel_chroma_hi}, \
|
|
|
|
{"get_extended_block", (void**) &uvg_get_extended_block}, \
|
2014-11-20 16:38:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif //STRATEGIES_IPOL_H_
|