2014-04-29 08:14:42 +00:00
|
|
|
#ifndef STRATEGIES_PICTURE_H_
|
|
|
|
#define STRATEGIES_PICTURE_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-04-29 08:14:42 +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-04-29 08:14:42 +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-04-29 08:14:42 +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-04-29 08:14:42 +00:00
|
|
|
****************************************************************************/
|
|
|
|
|
2014-06-05 12:54:58 +00:00
|
|
|
#include "../image.h"
|
2014-04-29 08:14:42 +00:00
|
|
|
|
2015-11-13 12:41:53 +00:00
|
|
|
typedef kvz_pixel (*pred_buffer)[32 * 32];
|
2014-06-16 09:13:41 +00:00
|
|
|
|
2015-11-23 12:20:44 +00:00
|
|
|
|
|
|
|
// Function macro for defining hadamard calculating functions
|
|
|
|
// for fixed size blocks. They calculate hadamard for integer
|
|
|
|
// multiples of 8x8 with the 8x8 hadamard function.
|
|
|
|
#define SATD_NxN(suffix, n) \
|
|
|
|
/* Declare the function in advance, hopefully reducing the probability that the
|
|
|
|
* macro expands to something unexpected and silently breaks things. */ \
|
|
|
|
static cost_pixel_nxn_func satd_ ## n ## x ## n ## _ ## suffix;\
|
|
|
|
static unsigned satd_ ## n ## x ## n ## _ ## suffix ( \
|
|
|
|
const kvz_pixel * const block1, \
|
|
|
|
const kvz_pixel * const block2) \
|
|
|
|
{ \
|
|
|
|
unsigned sum = 0; \
|
|
|
|
for (unsigned y = 0; y < (n); y += 8) { \
|
|
|
|
unsigned row = y * (n); \
|
|
|
|
for (unsigned x = 0; x < (n); x += 8) { \
|
|
|
|
sum += satd_8x8_subblock_ ## suffix(&block1[row + x], (n), &block2[row + x], (n)); \
|
|
|
|
} \
|
|
|
|
} \
|
|
|
|
return sum >> (KVZ_BIT_DEPTH - 8); \
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-12-08 10:21:22 +00:00
|
|
|
// Function macro for defining hadamard calculating functions for dynamic size
|
|
|
|
// blocks. They calculate hadamard for integer multiples of 8x8 with the 8x8
|
|
|
|
// hadamard function.
|
|
|
|
#define SATD_ANY_SIZE(suffix) \
|
2015-12-08 10:43:10 +00:00
|
|
|
static cost_pixel_any_size_func satd_any_size_ ## suffix; \
|
2015-12-08 10:21:22 +00:00
|
|
|
static unsigned satd_any_size_ ## suffix ( \
|
|
|
|
int width, int height, \
|
|
|
|
const kvz_pixel *block1, int stride1, \
|
|
|
|
const kvz_pixel *block2, int stride2) \
|
|
|
|
{ \
|
|
|
|
unsigned sum = 0; \
|
|
|
|
for (int y = 0; y < height; y += 8) { \
|
|
|
|
const kvz_pixel *row1 = &block1[y * stride1]; \
|
|
|
|
const kvz_pixel *row2 = &block2[y * stride2]; \
|
|
|
|
for (int x = 0; x < width; x += 8) { \
|
|
|
|
sum += satd_8x8_subblock_ ## suffix(&row1[x], stride1, &row2[x], stride2); \
|
|
|
|
} \
|
|
|
|
} \
|
|
|
|
return sum >> (KVZ_BIT_DEPTH - 8); \
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-06-30 08:43:48 +00:00
|
|
|
typedef unsigned(reg_sad_func)(const kvz_pixel *const data1, const kvz_pixel *const data2,
|
2014-06-16 09:13:41 +00:00
|
|
|
const int width, const int height,
|
|
|
|
const unsigned stride1, const unsigned stride2);
|
2015-06-30 08:43:48 +00:00
|
|
|
typedef unsigned (cost_pixel_nxn_func)(const kvz_pixel *block1, const kvz_pixel *block2);
|
2015-12-08 10:43:10 +00:00
|
|
|
typedef unsigned (cost_pixel_any_size_func)(
|
|
|
|
int width, int height,
|
|
|
|
const kvz_pixel *block1, int stride1,
|
|
|
|
const kvz_pixel *block2, int stride2
|
|
|
|
);
|
2015-11-13 12:41:53 +00:00
|
|
|
typedef void (cost_pixel_nxn_multi_func)(const pred_buffer preds, const kvz_pixel *orig, unsigned num_modes, unsigned *costs_out);
|
2014-06-16 09:13:41 +00:00
|
|
|
|
2015-10-29 14:41:01 +00:00
|
|
|
typedef void pixels_blit_func(const kvz_pixel* orig, kvz_pixel *dst,
|
|
|
|
unsigned width, unsigned height,
|
|
|
|
unsigned orig_stride, unsigned dst_stride);
|
|
|
|
|
2014-06-16 09:13:41 +00:00
|
|
|
|
|
|
|
// Declare function pointers.
|
2015-08-26 08:50:27 +00:00
|
|
|
extern reg_sad_func * kvz_reg_sad;
|
2014-06-16 09:13:41 +00:00
|
|
|
|
2015-08-26 08:50:27 +00:00
|
|
|
extern cost_pixel_nxn_func * kvz_sad_4x4;
|
|
|
|
extern cost_pixel_nxn_func * kvz_sad_8x8;
|
|
|
|
extern cost_pixel_nxn_func * kvz_sad_16x16;
|
|
|
|
extern cost_pixel_nxn_func * kvz_sad_32x32;
|
|
|
|
extern cost_pixel_nxn_func * kvz_sad_64x64;
|
2014-06-16 09:13:41 +00:00
|
|
|
|
2015-08-26 08:50:27 +00:00
|
|
|
extern cost_pixel_nxn_func * kvz_satd_4x4;
|
|
|
|
extern cost_pixel_nxn_func * kvz_satd_8x8;
|
|
|
|
extern cost_pixel_nxn_func * kvz_satd_16x16;
|
|
|
|
extern cost_pixel_nxn_func * kvz_satd_32x32;
|
|
|
|
extern cost_pixel_nxn_func * kvz_satd_64x64;
|
2015-12-08 10:43:10 +00:00
|
|
|
extern cost_pixel_any_size_func *kvz_satd_any_size;
|
2014-06-13 07:20:02 +00:00
|
|
|
|
2015-11-13 12:41:53 +00:00
|
|
|
extern cost_pixel_nxn_multi_func * kvz_sad_4x4_dual;
|
|
|
|
extern cost_pixel_nxn_multi_func * kvz_sad_8x8_dual;
|
|
|
|
extern cost_pixel_nxn_multi_func * kvz_sad_16x16_dual;
|
|
|
|
extern cost_pixel_nxn_multi_func * kvz_sad_32x32_dual;
|
|
|
|
extern cost_pixel_nxn_multi_func * kvz_sad_64x64_dual;
|
|
|
|
|
|
|
|
extern cost_pixel_nxn_multi_func * kvz_satd_4x4_dual;
|
|
|
|
extern cost_pixel_nxn_multi_func * kvz_satd_8x8_dual;
|
|
|
|
extern cost_pixel_nxn_multi_func * kvz_satd_16x16_dual;
|
|
|
|
extern cost_pixel_nxn_multi_func * kvz_satd_32x32_dual;
|
|
|
|
extern cost_pixel_nxn_multi_func * kvz_satd_64x64_dual;
|
|
|
|
|
2015-10-29 14:41:01 +00:00
|
|
|
extern pixels_blit_func * kvz_pixels_blit;
|
|
|
|
|
2014-06-13 07:20:02 +00:00
|
|
|
|
2015-08-26 08:50:27 +00:00
|
|
|
int kvz_strategy_register_picture(void* opaque, uint8_t bitdepth);
|
|
|
|
cost_pixel_nxn_func * kvz_pixels_get_satd_func(unsigned n);
|
|
|
|
cost_pixel_nxn_func * kvz_pixels_get_sad_func(unsigned n);
|
2015-11-13 12:41:53 +00:00
|
|
|
cost_pixel_nxn_multi_func * kvz_pixels_get_satd_dual_func(unsigned n);
|
|
|
|
cost_pixel_nxn_multi_func * kvz_pixels_get_sad_dual_func(unsigned n);
|
2014-06-16 09:13:41 +00:00
|
|
|
|
|
|
|
#define STRATEGIES_PICTURE_EXPORTS \
|
2015-08-26 08:50:27 +00:00
|
|
|
{"reg_sad", (void**) &kvz_reg_sad}, \
|
|
|
|
{"sad_4x4", (void**) &kvz_sad_4x4}, \
|
|
|
|
{"sad_8x8", (void**) &kvz_sad_8x8}, \
|
|
|
|
{"sad_16x16", (void**) &kvz_sad_16x16}, \
|
|
|
|
{"sad_32x32", (void**) &kvz_sad_32x32}, \
|
|
|
|
{"sad_64x64", (void**) &kvz_sad_64x64}, \
|
|
|
|
{"satd_4x4", (void**) &kvz_satd_4x4}, \
|
|
|
|
{"satd_8x8", (void**) &kvz_satd_8x8}, \
|
|
|
|
{"satd_16x16", (void**) &kvz_satd_16x16}, \
|
|
|
|
{"satd_32x32", (void**) &kvz_satd_32x32}, \
|
|
|
|
{"satd_64x64", (void**) &kvz_satd_64x64}, \
|
2015-12-08 10:21:22 +00:00
|
|
|
{"satd_any_size", (void**) &kvz_satd_any_size}, \
|
2015-11-13 12:41:53 +00:00
|
|
|
{"sad_4x4_dual", (void**) &kvz_sad_4x4_dual}, \
|
|
|
|
{"sad_8x8_dual", (void**) &kvz_sad_8x8_dual}, \
|
|
|
|
{"sad_16x16_dual", (void**) &kvz_sad_16x16_dual}, \
|
|
|
|
{"sad_32x32_dual", (void**) &kvz_sad_32x32_dual}, \
|
|
|
|
{"sad_64x64_dual", (void**) &kvz_sad_64x64_dual}, \
|
|
|
|
{"satd_4x4_dual", (void**) &kvz_satd_4x4_dual}, \
|
|
|
|
{"satd_8x8_dual", (void**) &kvz_satd_8x8_dual}, \
|
|
|
|
{"satd_16x16_dual", (void**) &kvz_satd_16x16_dual}, \
|
|
|
|
{"satd_32x32_dual", (void**) &kvz_satd_32x32_dual}, \
|
|
|
|
{"satd_64x64_dual", (void**) &kvz_satd_64x64_dual}, \
|
2015-10-29 14:41:01 +00:00
|
|
|
{"pixels_blit", (void**) &kvz_pixels_blit}, \
|
2014-06-13 07:20:02 +00:00
|
|
|
|
2014-04-29 08:14:42 +00:00
|
|
|
|
|
|
|
|
|
|
|
#endif //STRATEGIES_PICTURE_H_
|