mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-24 02:24:07 +00:00
edbe00763e
Drops the parameter max_lcu_below which was always set to -1.
103 lines
3.1 KiB
C
103 lines
3.1 KiB
C
#ifndef IMAGE_H_
|
|
#define IMAGE_H_
|
|
/*****************************************************************************
|
|
* This file is part of Kvazaar HEVC encoder.
|
|
*
|
|
* Copyright (C) 2013-2015 Tampere University of Technology and others (see
|
|
* COPYING file).
|
|
*
|
|
* 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.
|
|
*
|
|
* 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.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with Kvazaar. If not, see <http://www.gnu.org/licenses/>.
|
|
****************************************************************************/
|
|
|
|
/**
|
|
* \ingroup DataStructures
|
|
* \file
|
|
* A reference counted YUV pixel buffer.
|
|
*/
|
|
|
|
#include "global.h" // IWYU pragma: keep
|
|
|
|
#include "kvazaar.h"
|
|
|
|
|
|
typedef struct {
|
|
kvz_pixel y[LCU_LUMA_SIZE];
|
|
kvz_pixel u[LCU_CHROMA_SIZE];
|
|
kvz_pixel v[LCU_CHROMA_SIZE];
|
|
enum kvz_chroma_format chroma_format;
|
|
} lcu_yuv_t;
|
|
|
|
typedef struct {
|
|
int size;
|
|
int16_t *y;
|
|
int16_t *u;
|
|
int16_t *v;
|
|
} hi_prec_buf_t;
|
|
|
|
typedef struct {
|
|
int size;
|
|
kvz_pixel *y;
|
|
kvz_pixel *u;
|
|
kvz_pixel *v;
|
|
} yuv_t;
|
|
|
|
|
|
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);
|
|
|
|
void kvz_image_free(kvz_picture *im);
|
|
|
|
kvz_picture *kvz_image_copy_ref(kvz_picture *im);
|
|
|
|
kvz_picture *kvz_image_make_subimage(kvz_picture *const orig_image,
|
|
const unsigned x_offset,
|
|
const unsigned y_offset,
|
|
const unsigned width,
|
|
const unsigned height);
|
|
|
|
yuv_t * kvz_yuv_t_alloc(int luma_size, int chroma_size);
|
|
void kvz_yuv_t_free(yuv_t * yuv);
|
|
|
|
hi_prec_buf_t * kvz_hi_prec_buf_t_alloc(int luma_size);
|
|
void kvz_hi_prec_buf_t_free(hi_prec_buf_t * yuv);
|
|
|
|
|
|
//Algorithms
|
|
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,
|
|
int block_height);
|
|
|
|
|
|
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);
|
|
|
|
|
|
void kvz_pixels_blit(const kvz_pixel* orig, kvz_pixel *dst,
|
|
unsigned width, unsigned height,
|
|
unsigned orig_stride, unsigned dst_stride);
|
|
|
|
|
|
#endif
|