2014-06-05 12:04:12 +00:00
|
|
|
#ifndef IMAGE_H_
|
|
|
|
#define IMAGE_H_
|
|
|
|
/*****************************************************************************
|
|
|
|
* This file is part of Kvazaar HEVC encoder.
|
|
|
|
*
|
2015-02-23 11:18:48 +00:00
|
|
|
* Copyright (C) 2013-2015 Tampere University of Technology and others (see
|
2014-06-05 12:04:12 +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-06-05 12:04:12 +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-06-05 12:04:12 +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-06-05 12:04:12 +00:00
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* \file
|
2014-06-05 12:54:58 +00:00
|
|
|
* \brief Image and pixel related functions
|
2014-06-05 12:04:12 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "global.h"
|
2015-05-18 15:21:23 +00:00
|
|
|
#include "kvazaar.h"
|
2014-06-05 12:04:12 +00:00
|
|
|
|
2014-06-05 12:54:58 +00:00
|
|
|
typedef struct {
|
2015-03-04 14:35:17 +00:00
|
|
|
pixel_t y[LCU_LUMA_SIZE];
|
|
|
|
pixel_t u[LCU_CHROMA_SIZE];
|
|
|
|
pixel_t v[LCU_CHROMA_SIZE];
|
2014-06-05 12:54:58 +00:00
|
|
|
} lcu_yuv_t;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
int size;
|
2015-03-04 14:35:17 +00:00
|
|
|
pixel_t *y;
|
|
|
|
pixel_t *u;
|
|
|
|
pixel_t *v;
|
2014-06-05 12:54:58 +00:00
|
|
|
} yuv_t;
|
|
|
|
|
|
|
|
|
2015-06-17 06:56:53 +00:00
|
|
|
image_t *image_alloc(const int32_t width, const int32_t height);
|
2015-03-04 11:55:06 +00:00
|
|
|
int image_free(image_t * im);
|
|
|
|
image_t *image_make_subimage(image_t * const orig_image, const unsigned int x_offset, const unsigned int y_offset, const unsigned int width, const unsigned int height);
|
2014-06-05 12:04:12 +00:00
|
|
|
|
2014-06-05 12:54:58 +00:00
|
|
|
yuv_t * yuv_t_alloc(int luma_size);
|
|
|
|
void yuv_t_free(yuv_t * yuv);
|
|
|
|
|
|
|
|
//Algorithms
|
2015-03-04 11:55:06 +00:00
|
|
|
unsigned image_calc_sad(const image_t *pic, const image_t *ref, int pic_x, int pic_y, int ref_x, int ref_y,
|
2014-06-16 12:27:56 +00:00
|
|
|
int block_width, int block_height, int max_lcu_below);
|
2014-06-05 12:54:58 +00:00
|
|
|
|
|
|
|
|
2015-03-04 14:35:17 +00:00
|
|
|
unsigned pixels_calc_ssd(const pixel_t *const ref, const pixel_t *const rec,
|
2014-06-05 12:54:58 +00:00
|
|
|
const int ref_stride, const int rec_stride,
|
|
|
|
const int width);
|
|
|
|
|
|
|
|
|
2015-03-04 14:35:17 +00:00
|
|
|
void pixels_blit(const pixel_t* orig, pixel_t *dst,
|
2014-06-05 12:54:58 +00:00
|
|
|
unsigned width, unsigned height,
|
|
|
|
unsigned orig_stride, unsigned dst_stride);
|
|
|
|
|
2014-06-05 12:04:12 +00:00
|
|
|
#endif
|