2014-06-05 12:04:12 +00:00
|
|
|
#ifndef IMAGE_H_
|
|
|
|
#define IMAGE_H_
|
|
|
|
/*****************************************************************************
|
|
|
|
* This file is part of Kvazaar HEVC encoder.
|
|
|
|
*
|
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-06-05 12:04:12 +00:00
|
|
|
****************************************************************************/
|
|
|
|
|
2015-12-17 11:42:57 +00:00
|
|
|
/**
|
|
|
|
* \ingroup DataStructures
|
2014-06-05 12:04:12 +00:00
|
|
|
* \file
|
2015-12-17 11:42:57 +00:00
|
|
|
* A reference counted YUV pixel buffer.
|
2014-06-05 12:04:12 +00:00
|
|
|
*/
|
|
|
|
|
2016-03-30 09:41:37 +00:00
|
|
|
#include "global.h" // IWYU pragma: keep
|
2016-01-22 13:07:49 +00:00
|
|
|
|
2015-05-18 15:21:23 +00:00
|
|
|
#include "kvazaar.h"
|
2019-01-21 15:20:51 +00:00
|
|
|
#include "strategies/optimized_sad_func_ptr_t.h"
|
2014-06-05 12:04:12 +00:00
|
|
|
|
2016-01-22 13:07:49 +00:00
|
|
|
|
2014-06-05 12:54:58 +00:00
|
|
|
typedef struct {
|
2015-06-30 08:43:48 +00:00
|
|
|
kvz_pixel y[LCU_LUMA_SIZE];
|
|
|
|
kvz_pixel u[LCU_CHROMA_SIZE];
|
|
|
|
kvz_pixel v[LCU_CHROMA_SIZE];
|
2021-08-13 12:37:23 +00:00
|
|
|
kvz_pixel joint_u[LCU_CHROMA_SIZE];
|
|
|
|
kvz_pixel joint_v[LCU_CHROMA_SIZE];
|
2016-08-25 13:05:46 +00:00
|
|
|
enum kvz_chroma_format chroma_format;
|
2014-06-05 12:54:58 +00:00
|
|
|
} lcu_yuv_t;
|
|
|
|
|
2015-08-04 12:42:18 +00:00
|
|
|
typedef struct {
|
|
|
|
int size;
|
|
|
|
int16_t *y;
|
|
|
|
int16_t *u;
|
|
|
|
int16_t *v;
|
2021-08-13 12:37:23 +00:00
|
|
|
int16_t *joint_u;
|
|
|
|
int16_t *joint_v;
|
2015-08-04 12:42:18 +00:00
|
|
|
} hi_prec_buf_t;
|
|
|
|
|
2014-06-05 12:54:58 +00:00
|
|
|
typedef struct {
|
|
|
|
int size;
|
2015-06-30 08:43:48 +00:00
|
|
|
kvz_pixel *y;
|
|
|
|
kvz_pixel *u;
|
|
|
|
kvz_pixel *v;
|
2014-06-05 12:54:58 +00:00
|
|
|
} yuv_t;
|
|
|
|
|
2020-04-04 19:14:10 +00:00
|
|
|
typedef struct {
|
|
|
|
int size;
|
2021-11-20 22:32:01 +00:00
|
|
|
kvz_pixel_im *y;
|
|
|
|
kvz_pixel_im *u;
|
|
|
|
kvz_pixel_im *v;
|
|
|
|
} yuv_im_t;
|
2014-06-05 12:54:58 +00:00
|
|
|
|
2016-08-16 16:03:21 +00:00
|
|
|
kvz_picture *kvz_image_alloc_420(const int32_t width, const int32_t height);
|
|
|
|
kvz_picture *kvz_image_alloc(enum kvz_chroma_format chroma_format, const int32_t width, const int32_t height);
|
2015-06-17 08:06:09 +00:00
|
|
|
|
2015-08-26 08:50:27 +00:00
|
|
|
void kvz_image_free(kvz_picture *im);
|
2015-06-17 08:06:09 +00:00
|
|
|
|
2015-08-26 08:50:27 +00:00
|
|
|
kvz_picture *kvz_image_copy_ref(kvz_picture *im);
|
2015-06-17 08:06:09 +00:00
|
|
|
|
2015-08-26 08:50:27 +00:00
|
|
|
kvz_picture *kvz_image_make_subimage(kvz_picture *const orig_image,
|
2015-06-17 08:06:09 +00:00
|
|
|
const unsigned x_offset,
|
|
|
|
const unsigned y_offset,
|
|
|
|
const unsigned width,
|
|
|
|
const unsigned height);
|
2014-06-05 12:04:12 +00:00
|
|
|
|
2016-08-17 13:43:16 +00:00
|
|
|
yuv_t * kvz_yuv_t_alloc(int luma_size, int chroma_size);
|
2015-08-26 08:50:27 +00:00
|
|
|
void kvz_yuv_t_free(yuv_t * yuv);
|
2014-06-05 12:54:58 +00:00
|
|
|
|
2015-08-04 12:42:18 +00:00
|
|
|
|
2014-06-05 12:54:58 +00:00
|
|
|
//Algorithms
|
2017-07-20 07:46:54 +00:00
|
|
|
unsigned kvz_image_calc_sad(const kvz_picture *pic,
|
|
|
|
const kvz_picture *ref,
|
|
|
|
int pic_x,
|
|
|
|
int pic_y,
|
|
|
|
int ref_x,
|
|
|
|
int ref_y,
|
|
|
|
int block_width,
|
2019-01-21 15:20:51 +00:00
|
|
|
int block_height,
|
|
|
|
optimized_sad_func_ptr_t optimized_sad);
|
2014-06-05 12:54:58 +00:00
|
|
|
|
|
|
|
|
2017-05-17 11:31:01 +00:00
|
|
|
unsigned kvz_image_calc_satd(const kvz_picture *pic,
|
|
|
|
const kvz_picture *ref,
|
|
|
|
int pic_x,
|
|
|
|
int pic_y,
|
|
|
|
int ref_x,
|
|
|
|
int ref_y,
|
|
|
|
int block_width,
|
|
|
|
int block_height);
|
|
|
|
|
|
|
|
|
2016-04-06 15:44:04 +00:00
|
|
|
void kvz_pixels_blit(const kvz_pixel* orig, kvz_pixel *dst,
|
|
|
|
unsigned width, unsigned height,
|
|
|
|
unsigned orig_stride, unsigned dst_stride);
|
|
|
|
|
|
|
|
|
2014-06-05 12:04:12 +00:00
|
|
|
#endif
|