2010-05-18 17:58:33 +02:00
|
|
|
/*
|
2010-09-09 14:16:39 +02:00
|
|
|
* Copyright (c) 2010 The WebM project authors. All Rights Reserved.
|
2010-05-18 17:58:33 +02:00
|
|
|
*
|
2010-06-18 18:39:21 +02:00
|
|
|
* Use of this source code is governed by a BSD-style license
|
2010-06-04 22:19:40 +02:00
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
2010-06-18 18:39:21 +02:00
|
|
|
* in the file PATENTS. All contributing project authors may
|
2010-06-04 22:19:40 +02:00
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
2010-05-18 17:58:33 +02:00
|
|
|
*/
|
|
|
|
|
2013-09-26 01:10:43 +02:00
|
|
|
#include "./vp9_rtcd.h"
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2013-05-07 18:45:28 +02:00
|
|
|
#include "vpx_ports/mem.h"
|
2013-09-26 01:10:43 +02:00
|
|
|
#include "vpx/vpx_integer.h"
|
|
|
|
|
|
|
|
#include "vp9/common/vp9_common.h"
|
|
|
|
#include "vp9/common/vp9_filter.h"
|
2013-10-15 06:15:40 +02:00
|
|
|
|
2013-09-26 01:10:43 +02:00
|
|
|
#include "vp9/encoder/vp9_variance.h"
|
|
|
|
|
2014-04-19 02:05:28 +02:00
|
|
|
void variance(const uint8_t *a, int a_stride,
|
|
|
|
const uint8_t *b, int b_stride,
|
|
|
|
int w, int h, unsigned int *sse, int *sum) {
|
2013-09-26 01:10:43 +02:00
|
|
|
int i, j;
|
|
|
|
|
|
|
|
*sum = 0;
|
|
|
|
*sse = 0;
|
|
|
|
|
|
|
|
for (i = 0; i < h; i++) {
|
|
|
|
for (j = 0; j < w; j++) {
|
2014-04-19 02:05:28 +02:00
|
|
|
const int diff = a[j] - b[j];
|
2013-09-26 01:10:43 +02:00
|
|
|
*sum += diff;
|
|
|
|
*sse += diff * diff;
|
|
|
|
}
|
|
|
|
|
2014-04-19 02:05:28 +02:00
|
|
|
a += a_stride;
|
|
|
|
b += b_stride;
|
2013-09-26 01:10:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-19 02:05:28 +02:00
|
|
|
// Applies a 1-D 2-tap bi-linear filter to the source block in either horizontal
|
|
|
|
// or vertical direction to produce the filtered output block. Used to implement
|
|
|
|
// first-pass of 2-D separable filter.
|
|
|
|
//
|
|
|
|
// Produces int32_t output to retain precision for next pass. Two filter taps
|
|
|
|
// should sum to VP9_FILTER_WEIGHT. pixel_step defines whether the filter is
|
|
|
|
// applied horizontally (pixel_step=1) or vertically (pixel_step=stride). It
|
|
|
|
// defines the offset required to move from one input to the next.
|
2013-09-26 01:10:43 +02:00
|
|
|
static void var_filter_block2d_bil_first_pass(const uint8_t *src_ptr,
|
|
|
|
uint16_t *output_ptr,
|
|
|
|
unsigned int src_pixels_per_line,
|
|
|
|
int pixel_step,
|
|
|
|
unsigned int output_height,
|
|
|
|
unsigned int output_width,
|
|
|
|
const int16_t *vp9_filter) {
|
|
|
|
unsigned int i, j;
|
|
|
|
|
|
|
|
for (i = 0; i < output_height; i++) {
|
|
|
|
for (j = 0; j < output_width; j++) {
|
|
|
|
output_ptr[j] = ROUND_POWER_OF_TWO((int)src_ptr[0] * vp9_filter[0] +
|
|
|
|
(int)src_ptr[pixel_step] * vp9_filter[1],
|
|
|
|
FILTER_BITS);
|
|
|
|
|
|
|
|
src_ptr++;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Next row...
|
|
|
|
src_ptr += src_pixels_per_line - output_width;
|
|
|
|
output_ptr += output_width;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-19 02:05:28 +02:00
|
|
|
// Applies a 1-D 2-tap bi-linear filter to the source block in either horizontal
|
|
|
|
// or vertical direction to produce the filtered output block. Used to implement
|
|
|
|
// second-pass of 2-D separable filter.
|
|
|
|
//
|
|
|
|
// Requires 32-bit input as produced by filter_block2d_bil_first_pass. Two
|
|
|
|
// filter taps should sum to VP9_FILTER_WEIGHT. pixel_step defines whether the
|
|
|
|
// filter is applied horizontally (pixel_step=1) or vertically (pixel_step=
|
|
|
|
// stride). It defines the offset required to move from one input to the next.
|
2013-09-26 01:10:43 +02:00
|
|
|
static void var_filter_block2d_bil_second_pass(const uint16_t *src_ptr,
|
|
|
|
uint8_t *output_ptr,
|
|
|
|
unsigned int src_pixels_per_line,
|
|
|
|
unsigned int pixel_step,
|
|
|
|
unsigned int output_height,
|
|
|
|
unsigned int output_width,
|
|
|
|
const int16_t *vp9_filter) {
|
|
|
|
unsigned int i, j;
|
|
|
|
|
|
|
|
for (i = 0; i < output_height; i++) {
|
|
|
|
for (j = 0; j < output_width; j++) {
|
|
|
|
output_ptr[j] = ROUND_POWER_OF_TWO((int)src_ptr[0] * vp9_filter[0] +
|
|
|
|
(int)src_ptr[pixel_step] * vp9_filter[1],
|
|
|
|
FILTER_BITS);
|
|
|
|
src_ptr++;
|
|
|
|
}
|
|
|
|
|
|
|
|
src_ptr += src_pixels_per_line - output_width;
|
|
|
|
output_ptr += output_width;
|
|
|
|
}
|
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-12-19 00:31:19 +01:00
|
|
|
unsigned int vp9_get_mb_ss_c(const int16_t *src_ptr) {
|
2012-10-30 22:25:33 +01:00
|
|
|
unsigned int i, sum = 0;
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2014-04-19 02:05:28 +02:00
|
|
|
for (i = 0; i < 256; i++)
|
|
|
|
sum += src_ptr[i] * src_ptr[i];
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
return sum;
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2013-04-15 19:00:34 +02:00
|
|
|
unsigned int vp9_variance64x32_c(const uint8_t *src_ptr,
|
|
|
|
int source_stride,
|
|
|
|
const uint8_t *ref_ptr,
|
|
|
|
int recon_stride,
|
|
|
|
unsigned int *sse) {
|
|
|
|
unsigned int var;
|
|
|
|
int avg;
|
|
|
|
|
|
|
|
variance(src_ptr, source_stride, ref_ptr, recon_stride, 64, 32, &var, &avg);
|
|
|
|
*sse = var;
|
|
|
|
return (var - (((int64_t)avg * avg) >> 11));
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int vp9_sub_pixel_variance64x32_c(const uint8_t *src_ptr,
|
|
|
|
int src_pixels_per_line,
|
|
|
|
int xoffset,
|
|
|
|
int yoffset,
|
|
|
|
const uint8_t *dst_ptr,
|
|
|
|
int dst_pixels_per_line,
|
|
|
|
unsigned int *sse) {
|
2014-04-19 02:05:28 +02:00
|
|
|
uint16_t fdata3[65 * 64];
|
2013-04-15 19:00:34 +02:00
|
|
|
uint8_t temp2[68 * 64];
|
2014-04-19 02:05:28 +02:00
|
|
|
const int16_t *const hfilter = BILINEAR_FILTERS_2TAP(xoffset);
|
|
|
|
const int16_t *const vfilter = BILINEAR_FILTERS_2TAP(yoffset);
|
2013-04-15 19:00:34 +02:00
|
|
|
|
|
|
|
var_filter_block2d_bil_first_pass(src_ptr, fdata3, src_pixels_per_line,
|
|
|
|
1, 33, 64, hfilter);
|
|
|
|
var_filter_block2d_bil_second_pass(fdata3, temp2, 64, 64, 32, 64, vfilter);
|
|
|
|
|
2013-06-17 23:57:13 +02:00
|
|
|
return vp9_variance64x32(temp2, 64, dst_ptr, dst_pixels_per_line, sse);
|
2013-04-15 19:00:34 +02:00
|
|
|
}
|
|
|
|
|
2013-05-07 18:45:28 +02:00
|
|
|
unsigned int vp9_sub_pixel_avg_variance64x32_c(const uint8_t *src_ptr,
|
|
|
|
int src_pixels_per_line,
|
|
|
|
int xoffset,
|
|
|
|
int yoffset,
|
|
|
|
const uint8_t *dst_ptr,
|
|
|
|
int dst_pixels_per_line,
|
|
|
|
unsigned int *sse,
|
|
|
|
const uint8_t *second_pred) {
|
2014-04-19 02:05:28 +02:00
|
|
|
uint16_t fdata3[65 * 64];
|
2013-05-07 18:45:28 +02:00
|
|
|
uint8_t temp2[68 * 64];
|
2014-04-19 02:05:28 +02:00
|
|
|
DECLARE_ALIGNED_ARRAY(16, uint8_t, temp3, 64 * 64);
|
|
|
|
const int16_t *const hfilter = BILINEAR_FILTERS_2TAP(xoffset);
|
|
|
|
const int16_t *const vfilter = BILINEAR_FILTERS_2TAP(yoffset);
|
2013-05-07 18:45:28 +02:00
|
|
|
|
|
|
|
var_filter_block2d_bil_first_pass(src_ptr, fdata3, src_pixels_per_line,
|
|
|
|
1, 33, 64, hfilter);
|
|
|
|
var_filter_block2d_bil_second_pass(fdata3, temp2, 64, 64, 32, 64, vfilter);
|
2014-03-04 00:32:38 +01:00
|
|
|
vp9_comp_avg_pred(temp3, second_pred, 64, 32, temp2, 64);
|
2013-06-17 23:57:13 +02:00
|
|
|
return vp9_variance64x32(temp3, 64, dst_ptr, dst_pixels_per_line, sse);
|
2013-05-07 18:45:28 +02:00
|
|
|
}
|
|
|
|
|
2013-04-15 19:00:34 +02:00
|
|
|
unsigned int vp9_variance32x64_c(const uint8_t *src_ptr,
|
|
|
|
int source_stride,
|
|
|
|
const uint8_t *ref_ptr,
|
|
|
|
int recon_stride,
|
|
|
|
unsigned int *sse) {
|
|
|
|
unsigned int var;
|
|
|
|
int avg;
|
|
|
|
|
|
|
|
variance(src_ptr, source_stride, ref_ptr, recon_stride, 32, 64, &var, &avg);
|
|
|
|
*sse = var;
|
|
|
|
return (var - (((int64_t)avg * avg) >> 11));
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int vp9_sub_pixel_variance32x64_c(const uint8_t *src_ptr,
|
|
|
|
int src_pixels_per_line,
|
|
|
|
int xoffset,
|
|
|
|
int yoffset,
|
|
|
|
const uint8_t *dst_ptr,
|
|
|
|
int dst_pixels_per_line,
|
|
|
|
unsigned int *sse) {
|
2014-04-19 02:05:28 +02:00
|
|
|
uint16_t fdata3[65 * 64];
|
2013-04-15 19:00:34 +02:00
|
|
|
uint8_t temp2[68 * 64];
|
2014-04-19 02:05:28 +02:00
|
|
|
const int16_t *const hfilter = BILINEAR_FILTERS_2TAP(xoffset);
|
|
|
|
const int16_t *const vfilter = BILINEAR_FILTERS_2TAP(yoffset);
|
2013-04-15 19:00:34 +02:00
|
|
|
|
|
|
|
var_filter_block2d_bil_first_pass(src_ptr, fdata3, src_pixels_per_line,
|
|
|
|
1, 65, 32, hfilter);
|
2013-04-29 21:59:30 +02:00
|
|
|
var_filter_block2d_bil_second_pass(fdata3, temp2, 32, 32, 64, 32, vfilter);
|
2013-04-15 19:00:34 +02:00
|
|
|
|
2013-06-17 23:57:13 +02:00
|
|
|
return vp9_variance32x64(temp2, 32, dst_ptr, dst_pixels_per_line, sse);
|
2013-04-15 19:00:34 +02:00
|
|
|
}
|
|
|
|
|
2013-05-07 18:45:28 +02:00
|
|
|
unsigned int vp9_sub_pixel_avg_variance32x64_c(const uint8_t *src_ptr,
|
|
|
|
int src_pixels_per_line,
|
|
|
|
int xoffset,
|
|
|
|
int yoffset,
|
|
|
|
const uint8_t *dst_ptr,
|
|
|
|
int dst_pixels_per_line,
|
|
|
|
unsigned int *sse,
|
|
|
|
const uint8_t *second_pred) {
|
2014-04-19 02:05:28 +02:00
|
|
|
uint16_t fdata3[65 * 64];
|
2013-05-07 18:45:28 +02:00
|
|
|
uint8_t temp2[68 * 64];
|
2014-04-19 02:05:28 +02:00
|
|
|
DECLARE_ALIGNED_ARRAY(16, uint8_t, temp3, 32 * 64);
|
|
|
|
const int16_t *const hfilter = BILINEAR_FILTERS_2TAP(xoffset);
|
|
|
|
const int16_t *const vfilter = BILINEAR_FILTERS_2TAP(yoffset);
|
2013-05-07 18:45:28 +02:00
|
|
|
|
|
|
|
var_filter_block2d_bil_first_pass(src_ptr, fdata3, src_pixels_per_line,
|
|
|
|
1, 65, 32, hfilter);
|
|
|
|
var_filter_block2d_bil_second_pass(fdata3, temp2, 32, 32, 64, 32, vfilter);
|
2014-03-04 00:32:38 +01:00
|
|
|
vp9_comp_avg_pred(temp3, second_pred, 32, 64, temp2, 32);
|
2013-06-17 23:57:13 +02:00
|
|
|
return vp9_variance32x64(temp3, 32, dst_ptr, dst_pixels_per_line, sse);
|
2013-05-07 18:45:28 +02:00
|
|
|
}
|
|
|
|
|
2013-04-15 19:00:34 +02:00
|
|
|
unsigned int vp9_variance32x16_c(const uint8_t *src_ptr,
|
|
|
|
int source_stride,
|
|
|
|
const uint8_t *ref_ptr,
|
|
|
|
int recon_stride,
|
|
|
|
unsigned int *sse) {
|
|
|
|
unsigned int var;
|
|
|
|
int avg;
|
|
|
|
|
|
|
|
variance(src_ptr, source_stride, ref_ptr, recon_stride, 32, 16, &var, &avg);
|
|
|
|
*sse = var;
|
|
|
|
return (var - (((int64_t)avg * avg) >> 9));
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int vp9_sub_pixel_variance32x16_c(const uint8_t *src_ptr,
|
|
|
|
int src_pixels_per_line,
|
|
|
|
int xoffset,
|
|
|
|
int yoffset,
|
|
|
|
const uint8_t *dst_ptr,
|
|
|
|
int dst_pixels_per_line,
|
|
|
|
unsigned int *sse) {
|
2014-04-19 02:05:28 +02:00
|
|
|
uint16_t fdata3[33 * 32];
|
2013-04-15 19:00:34 +02:00
|
|
|
uint8_t temp2[36 * 32];
|
2014-04-19 02:05:28 +02:00
|
|
|
const int16_t *const hfilter = BILINEAR_FILTERS_2TAP(xoffset);
|
|
|
|
const int16_t *const vfilter = BILINEAR_FILTERS_2TAP(yoffset);
|
2013-04-15 19:00:34 +02:00
|
|
|
|
|
|
|
var_filter_block2d_bil_first_pass(src_ptr, fdata3, src_pixels_per_line,
|
|
|
|
1, 17, 32, hfilter);
|
|
|
|
var_filter_block2d_bil_second_pass(fdata3, temp2, 32, 32, 16, 32, vfilter);
|
|
|
|
|
2013-06-17 23:57:13 +02:00
|
|
|
return vp9_variance32x16(temp2, 32, dst_ptr, dst_pixels_per_line, sse);
|
2013-04-15 19:00:34 +02:00
|
|
|
}
|
|
|
|
|
2013-05-07 18:45:28 +02:00
|
|
|
unsigned int vp9_sub_pixel_avg_variance32x16_c(const uint8_t *src_ptr,
|
|
|
|
int src_pixels_per_line,
|
|
|
|
int xoffset,
|
|
|
|
int yoffset,
|
|
|
|
const uint8_t *dst_ptr,
|
|
|
|
int dst_pixels_per_line,
|
|
|
|
unsigned int *sse,
|
|
|
|
const uint8_t *second_pred) {
|
2014-04-19 02:05:28 +02:00
|
|
|
uint16_t fdata3[33 * 32];
|
2013-05-07 18:45:28 +02:00
|
|
|
uint8_t temp2[36 * 32];
|
2014-04-19 02:05:28 +02:00
|
|
|
DECLARE_ALIGNED_ARRAY(16, uint8_t, temp3, 32 * 16);
|
|
|
|
const int16_t *const hfilter = BILINEAR_FILTERS_2TAP(xoffset);
|
|
|
|
const int16_t *const vfilter = BILINEAR_FILTERS_2TAP(yoffset);
|
2013-05-07 18:45:28 +02:00
|
|
|
|
|
|
|
var_filter_block2d_bil_first_pass(src_ptr, fdata3, src_pixels_per_line,
|
|
|
|
1, 17, 32, hfilter);
|
|
|
|
var_filter_block2d_bil_second_pass(fdata3, temp2, 32, 32, 16, 32, vfilter);
|
2014-03-04 00:32:38 +01:00
|
|
|
vp9_comp_avg_pred(temp3, second_pred, 32, 16, temp2, 32);
|
2013-06-17 23:57:13 +02:00
|
|
|
return vp9_variance32x16(temp3, 32, dst_ptr, dst_pixels_per_line, sse);
|
2013-05-07 18:45:28 +02:00
|
|
|
}
|
|
|
|
|
2013-04-15 19:00:34 +02:00
|
|
|
unsigned int vp9_variance16x32_c(const uint8_t *src_ptr,
|
|
|
|
int source_stride,
|
|
|
|
const uint8_t *ref_ptr,
|
|
|
|
int recon_stride,
|
|
|
|
unsigned int *sse) {
|
|
|
|
unsigned int var;
|
|
|
|
int avg;
|
|
|
|
|
|
|
|
variance(src_ptr, source_stride, ref_ptr, recon_stride, 16, 32, &var, &avg);
|
|
|
|
*sse = var;
|
|
|
|
return (var - (((int64_t)avg * avg) >> 9));
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int vp9_sub_pixel_variance16x32_c(const uint8_t *src_ptr,
|
|
|
|
int src_pixels_per_line,
|
|
|
|
int xoffset,
|
|
|
|
int yoffset,
|
|
|
|
const uint8_t *dst_ptr,
|
|
|
|
int dst_pixels_per_line,
|
|
|
|
unsigned int *sse) {
|
2014-04-19 02:05:28 +02:00
|
|
|
uint16_t fdata3[33 * 32];
|
2013-04-15 19:00:34 +02:00
|
|
|
uint8_t temp2[36 * 32];
|
2014-04-19 02:05:28 +02:00
|
|
|
const int16_t *const hfilter = BILINEAR_FILTERS_2TAP(xoffset);
|
|
|
|
const int16_t *const vfilter = BILINEAR_FILTERS_2TAP(yoffset);
|
2013-04-15 19:00:34 +02:00
|
|
|
|
|
|
|
var_filter_block2d_bil_first_pass(src_ptr, fdata3, src_pixels_per_line,
|
|
|
|
1, 33, 16, hfilter);
|
2013-04-29 21:59:30 +02:00
|
|
|
var_filter_block2d_bil_second_pass(fdata3, temp2, 16, 16, 32, 16, vfilter);
|
2013-04-15 19:00:34 +02:00
|
|
|
|
2013-06-17 23:57:13 +02:00
|
|
|
return vp9_variance16x32(temp2, 16, dst_ptr, dst_pixels_per_line, sse);
|
2013-04-15 19:00:34 +02:00
|
|
|
}
|
|
|
|
|
2013-05-07 18:45:28 +02:00
|
|
|
unsigned int vp9_sub_pixel_avg_variance16x32_c(const uint8_t *src_ptr,
|
|
|
|
int src_pixels_per_line,
|
|
|
|
int xoffset,
|
|
|
|
int yoffset,
|
|
|
|
const uint8_t *dst_ptr,
|
|
|
|
int dst_pixels_per_line,
|
|
|
|
unsigned int *sse,
|
|
|
|
const uint8_t *second_pred) {
|
2014-04-19 02:05:28 +02:00
|
|
|
uint16_t fdata3[33 * 32];
|
2013-05-07 18:45:28 +02:00
|
|
|
uint8_t temp2[36 * 32];
|
2014-04-19 02:05:28 +02:00
|
|
|
DECLARE_ALIGNED_ARRAY(16, uint8_t, temp3, 16 * 32);
|
|
|
|
const int16_t *const hfilter = BILINEAR_FILTERS_2TAP(xoffset);
|
|
|
|
const int16_t *const vfilter = BILINEAR_FILTERS_2TAP(yoffset);
|
2013-05-07 18:45:28 +02:00
|
|
|
|
|
|
|
var_filter_block2d_bil_first_pass(src_ptr, fdata3, src_pixels_per_line,
|
|
|
|
1, 33, 16, hfilter);
|
|
|
|
var_filter_block2d_bil_second_pass(fdata3, temp2, 16, 16, 32, 16, vfilter);
|
2014-03-04 00:32:38 +01:00
|
|
|
vp9_comp_avg_pred(temp3, second_pred, 16, 32, temp2, 16);
|
2013-06-17 23:57:13 +02:00
|
|
|
return vp9_variance16x32(temp3, 16, dst_ptr, dst_pixels_per_line, sse);
|
2013-05-07 18:45:28 +02:00
|
|
|
}
|
|
|
|
|
2013-01-06 03:20:25 +01:00
|
|
|
unsigned int vp9_variance64x64_c(const uint8_t *src_ptr,
|
|
|
|
int source_stride,
|
|
|
|
const uint8_t *ref_ptr,
|
|
|
|
int recon_stride,
|
|
|
|
unsigned int *sse) {
|
|
|
|
unsigned int var;
|
|
|
|
int avg;
|
|
|
|
|
|
|
|
variance(src_ptr, source_stride, ref_ptr, recon_stride, 64, 64, &var, &avg);
|
|
|
|
*sse = var;
|
|
|
|
return (var - (((int64_t)avg * avg) >> 12));
|
|
|
|
}
|
|
|
|
|
2012-12-19 00:31:19 +01:00
|
|
|
unsigned int vp9_variance32x32_c(const uint8_t *src_ptr,
|
2012-08-20 23:43:34 +02:00
|
|
|
int source_stride,
|
2012-12-19 00:31:19 +01:00
|
|
|
const uint8_t *ref_ptr,
|
2012-08-20 23:43:34 +02:00
|
|
|
int recon_stride,
|
|
|
|
unsigned int *sse) {
|
|
|
|
unsigned int var;
|
|
|
|
int avg;
|
|
|
|
|
|
|
|
variance(src_ptr, source_stride, ref_ptr, recon_stride, 32, 32, &var, &avg);
|
|
|
|
*sse = var;
|
2012-11-15 00:02:43 +01:00
|
|
|
return (var - (((int64_t)avg * avg) >> 10));
|
2012-08-20 23:43:34 +02:00
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-04-02 02:32:20 +02:00
|
|
|
void vp9_get_sse_sum_16x16_c(const uint8_t *src_ptr, int source_stride,
|
|
|
|
const uint8_t *ref_ptr, int ref_stride,
|
|
|
|
unsigned int *sse, int *sum) {
|
|
|
|
variance(src_ptr, source_stride, ref_ptr, ref_stride, 16, 16, sse, sum);
|
|
|
|
}
|
|
|
|
|
2012-12-19 00:31:19 +01:00
|
|
|
unsigned int vp9_variance16x16_c(const uint8_t *src_ptr,
|
2012-10-30 22:25:33 +01:00
|
|
|
int source_stride,
|
2012-12-19 00:31:19 +01:00
|
|
|
const uint8_t *ref_ptr,
|
2012-10-30 22:25:33 +01:00
|
|
|
int recon_stride,
|
|
|
|
unsigned int *sse) {
|
2012-07-14 00:21:29 +02:00
|
|
|
unsigned int var;
|
|
|
|
int avg;
|
|
|
|
|
|
|
|
variance(src_ptr, source_stride, ref_ptr, recon_stride, 16, 16, &var, &avg);
|
|
|
|
*sse = var;
|
2012-11-07 01:58:11 +01:00
|
|
|
return (var - (((unsigned int)avg * avg) >> 8));
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2012-12-19 00:31:19 +01:00
|
|
|
unsigned int vp9_variance8x16_c(const uint8_t *src_ptr,
|
2012-10-30 22:25:33 +01:00
|
|
|
int source_stride,
|
2012-12-19 00:31:19 +01:00
|
|
|
const uint8_t *ref_ptr,
|
2012-10-30 22:25:33 +01:00
|
|
|
int recon_stride,
|
|
|
|
unsigned int *sse) {
|
2012-07-14 00:21:29 +02:00
|
|
|
unsigned int var;
|
|
|
|
int avg;
|
|
|
|
|
|
|
|
variance(src_ptr, source_stride, ref_ptr, recon_stride, 8, 16, &var, &avg);
|
|
|
|
*sse = var;
|
2012-11-07 01:58:11 +01:00
|
|
|
return (var - (((unsigned int)avg * avg) >> 7));
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2012-12-19 00:31:19 +01:00
|
|
|
unsigned int vp9_variance16x8_c(const uint8_t *src_ptr,
|
2012-10-30 22:25:33 +01:00
|
|
|
int source_stride,
|
2012-12-19 00:31:19 +01:00
|
|
|
const uint8_t *ref_ptr,
|
2012-10-30 22:25:33 +01:00
|
|
|
int recon_stride,
|
|
|
|
unsigned int *sse) {
|
2012-07-14 00:21:29 +02:00
|
|
|
unsigned int var;
|
|
|
|
int avg;
|
|
|
|
|
|
|
|
variance(src_ptr, source_stride, ref_ptr, recon_stride, 16, 8, &var, &avg);
|
|
|
|
*sse = var;
|
2012-11-07 01:58:11 +01:00
|
|
|
return (var - (((unsigned int)avg * avg) >> 7));
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2013-05-31 00:13:08 +02:00
|
|
|
void vp9_get_sse_sum_8x8_c(const uint8_t *src_ptr, int source_stride,
|
|
|
|
const uint8_t *ref_ptr, int ref_stride,
|
|
|
|
unsigned int *sse, int *sum) {
|
|
|
|
variance(src_ptr, source_stride, ref_ptr, ref_stride, 8, 8, sse, sum);
|
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-12-19 00:31:19 +01:00
|
|
|
unsigned int vp9_variance8x8_c(const uint8_t *src_ptr,
|
2012-10-30 22:25:33 +01:00
|
|
|
int source_stride,
|
2012-12-19 00:31:19 +01:00
|
|
|
const uint8_t *ref_ptr,
|
2012-10-30 22:25:33 +01:00
|
|
|
int recon_stride,
|
|
|
|
unsigned int *sse) {
|
2012-07-14 00:21:29 +02:00
|
|
|
unsigned int var;
|
|
|
|
int avg;
|
|
|
|
|
|
|
|
variance(src_ptr, source_stride, ref_ptr, recon_stride, 8, 8, &var, &avg);
|
|
|
|
*sse = var;
|
2012-11-07 01:58:11 +01:00
|
|
|
return (var - (((unsigned int)avg * avg) >> 6));
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2013-05-01 23:45:27 +02:00
|
|
|
unsigned int vp9_variance8x4_c(const uint8_t *src_ptr,
|
|
|
|
int source_stride,
|
|
|
|
const uint8_t *ref_ptr,
|
|
|
|
int recon_stride,
|
|
|
|
unsigned int *sse) {
|
|
|
|
unsigned int var;
|
|
|
|
int avg;
|
|
|
|
|
|
|
|
variance(src_ptr, source_stride, ref_ptr, recon_stride, 8, 4, &var, &avg);
|
|
|
|
*sse = var;
|
|
|
|
return (var - (((unsigned int)avg * avg) >> 5));
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int vp9_variance4x8_c(const uint8_t *src_ptr,
|
|
|
|
int source_stride,
|
|
|
|
const uint8_t *ref_ptr,
|
|
|
|
int recon_stride,
|
|
|
|
unsigned int *sse) {
|
|
|
|
unsigned int var;
|
|
|
|
int avg;
|
|
|
|
|
|
|
|
variance(src_ptr, source_stride, ref_ptr, recon_stride, 4, 8, &var, &avg);
|
|
|
|
*sse = var;
|
|
|
|
return (var - (((unsigned int)avg * avg) >> 5));
|
|
|
|
}
|
|
|
|
|
2012-12-19 00:31:19 +01:00
|
|
|
unsigned int vp9_variance4x4_c(const uint8_t *src_ptr,
|
2012-10-30 22:25:33 +01:00
|
|
|
int source_stride,
|
2012-12-19 00:31:19 +01:00
|
|
|
const uint8_t *ref_ptr,
|
2012-10-30 22:25:33 +01:00
|
|
|
int recon_stride,
|
|
|
|
unsigned int *sse) {
|
2012-07-14 00:21:29 +02:00
|
|
|
unsigned int var;
|
|
|
|
int avg;
|
|
|
|
|
|
|
|
variance(src_ptr, source_stride, ref_ptr, recon_stride, 4, 4, &var, &avg);
|
|
|
|
*sse = var;
|
2012-11-07 01:58:11 +01:00
|
|
|
return (var - (((unsigned int)avg * avg) >> 4));
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-12-19 00:31:19 +01:00
|
|
|
unsigned int vp9_mse16x16_c(const uint8_t *src_ptr,
|
2012-10-30 22:25:33 +01:00
|
|
|
int source_stride,
|
2012-12-19 00:31:19 +01:00
|
|
|
const uint8_t *ref_ptr,
|
2012-10-30 22:25:33 +01:00
|
|
|
int recon_stride,
|
|
|
|
unsigned int *sse) {
|
2012-07-14 00:21:29 +02:00
|
|
|
unsigned int var;
|
|
|
|
int avg;
|
|
|
|
|
|
|
|
variance(src_ptr, source_stride, ref_ptr, recon_stride, 16, 16, &var, &avg);
|
|
|
|
*sse = var;
|
|
|
|
return var;
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2013-06-08 21:04:12 +02:00
|
|
|
unsigned int vp9_mse16x8_c(const uint8_t *src_ptr,
|
|
|
|
int source_stride,
|
|
|
|
const uint8_t *ref_ptr,
|
|
|
|
int recon_stride,
|
|
|
|
unsigned int *sse) {
|
|
|
|
unsigned int var;
|
|
|
|
int avg;
|
|
|
|
|
|
|
|
variance(src_ptr, source_stride, ref_ptr, recon_stride, 16, 8, &var, &avg);
|
|
|
|
*sse = var;
|
|
|
|
return var;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int vp9_mse8x16_c(const uint8_t *src_ptr,
|
|
|
|
int source_stride,
|
|
|
|
const uint8_t *ref_ptr,
|
|
|
|
int recon_stride,
|
|
|
|
unsigned int *sse) {
|
|
|
|
unsigned int var;
|
|
|
|
int avg;
|
|
|
|
|
|
|
|
variance(src_ptr, source_stride, ref_ptr, recon_stride, 8, 16, &var, &avg);
|
|
|
|
*sse = var;
|
|
|
|
return var;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int vp9_mse8x8_c(const uint8_t *src_ptr,
|
|
|
|
int source_stride,
|
|
|
|
const uint8_t *ref_ptr,
|
|
|
|
int recon_stride,
|
|
|
|
unsigned int *sse) {
|
|
|
|
unsigned int var;
|
|
|
|
int avg;
|
|
|
|
|
|
|
|
variance(src_ptr, source_stride, ref_ptr, recon_stride, 8, 8, &var, &avg);
|
|
|
|
*sse = var;
|
|
|
|
return var;
|
|
|
|
}
|
|
|
|
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-12-19 00:31:19 +01:00
|
|
|
unsigned int vp9_sub_pixel_variance4x4_c(const uint8_t *src_ptr,
|
2012-10-30 22:25:33 +01:00
|
|
|
int src_pixels_per_line,
|
|
|
|
int xoffset,
|
|
|
|
int yoffset,
|
2012-12-19 00:31:19 +01:00
|
|
|
const uint8_t *dst_ptr,
|
2012-10-30 22:25:33 +01:00
|
|
|
int dst_pixels_per_line,
|
|
|
|
unsigned int *sse) {
|
2012-12-19 00:31:19 +01:00
|
|
|
uint8_t temp2[20 * 16];
|
2014-04-19 02:05:28 +02:00
|
|
|
uint16_t fdata3[5 * 4];
|
|
|
|
const int16_t *const hfilter = BILINEAR_FILTERS_2TAP(xoffset);
|
|
|
|
const int16_t *const vfilter = BILINEAR_FILTERS_2TAP(yoffset);
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2013-04-15 19:00:34 +02:00
|
|
|
var_filter_block2d_bil_first_pass(src_ptr, fdata3, src_pixels_per_line,
|
|
|
|
1, 5, 4, hfilter);
|
|
|
|
var_filter_block2d_bil_second_pass(fdata3, temp2, 4, 4, 4, 4, vfilter);
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2013-06-17 23:57:13 +02:00
|
|
|
return vp9_variance4x4(temp2, 4, dst_ptr, dst_pixels_per_line, sse);
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2013-05-07 18:45:28 +02:00
|
|
|
unsigned int vp9_sub_pixel_avg_variance4x4_c(const uint8_t *src_ptr,
|
|
|
|
int src_pixels_per_line,
|
|
|
|
int xoffset,
|
|
|
|
int yoffset,
|
|
|
|
const uint8_t *dst_ptr,
|
|
|
|
int dst_pixels_per_line,
|
|
|
|
unsigned int *sse,
|
|
|
|
const uint8_t *second_pred) {
|
|
|
|
uint8_t temp2[20 * 16];
|
2014-04-19 02:05:28 +02:00
|
|
|
DECLARE_ALIGNED_ARRAY(16, uint8_t, temp3, 4 * 4);
|
|
|
|
uint16_t fdata3[5 * 4];
|
|
|
|
const int16_t *const hfilter = BILINEAR_FILTERS_2TAP(xoffset);
|
|
|
|
const int16_t *const vfilter = BILINEAR_FILTERS_2TAP(yoffset);
|
2013-05-07 18:45:28 +02:00
|
|
|
|
|
|
|
var_filter_block2d_bil_first_pass(src_ptr, fdata3, src_pixels_per_line,
|
|
|
|
1, 5, 4, hfilter);
|
|
|
|
var_filter_block2d_bil_second_pass(fdata3, temp2, 4, 4, 4, 4, vfilter);
|
2014-03-04 00:32:38 +01:00
|
|
|
vp9_comp_avg_pred(temp3, second_pred, 4, 4, temp2, 4);
|
2013-06-17 23:57:13 +02:00
|
|
|
return vp9_variance4x4(temp3, 4, dst_ptr, dst_pixels_per_line, sse);
|
2013-05-07 18:45:28 +02:00
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-12-19 00:31:19 +01:00
|
|
|
unsigned int vp9_sub_pixel_variance8x8_c(const uint8_t *src_ptr,
|
2012-10-30 22:25:33 +01:00
|
|
|
int src_pixels_per_line,
|
|
|
|
int xoffset,
|
|
|
|
int yoffset,
|
2012-12-19 00:31:19 +01:00
|
|
|
const uint8_t *dst_ptr,
|
2012-10-30 22:25:33 +01:00
|
|
|
int dst_pixels_per_line,
|
|
|
|
unsigned int *sse) {
|
2014-04-19 02:05:28 +02:00
|
|
|
uint16_t fdata3[9 * 8];
|
2012-12-19 00:31:19 +01:00
|
|
|
uint8_t temp2[20 * 16];
|
2014-04-19 02:05:28 +02:00
|
|
|
const int16_t *const hfilter = BILINEAR_FILTERS_2TAP(xoffset);
|
|
|
|
const int16_t *const vfilter = BILINEAR_FILTERS_2TAP(yoffset);
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2013-04-15 19:00:34 +02:00
|
|
|
var_filter_block2d_bil_first_pass(src_ptr, fdata3, src_pixels_per_line,
|
|
|
|
1, 9, 8, hfilter);
|
|
|
|
var_filter_block2d_bil_second_pass(fdata3, temp2, 8, 8, 8, 8, vfilter);
|
2013-06-17 23:57:13 +02:00
|
|
|
return vp9_variance8x8(temp2, 8, dst_ptr, dst_pixels_per_line, sse);
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2013-05-07 18:45:28 +02:00
|
|
|
unsigned int vp9_sub_pixel_avg_variance8x8_c(const uint8_t *src_ptr,
|
|
|
|
int src_pixels_per_line,
|
|
|
|
int xoffset,
|
|
|
|
int yoffset,
|
|
|
|
const uint8_t *dst_ptr,
|
|
|
|
int dst_pixels_per_line,
|
|
|
|
unsigned int *sse,
|
|
|
|
const uint8_t *second_pred) {
|
2014-04-19 02:05:28 +02:00
|
|
|
uint16_t fdata3[9 * 8];
|
2013-05-07 18:45:28 +02:00
|
|
|
uint8_t temp2[20 * 16];
|
2014-04-19 02:05:28 +02:00
|
|
|
DECLARE_ALIGNED_ARRAY(16, uint8_t, temp3, 8 * 8);
|
|
|
|
const int16_t *const hfilter = BILINEAR_FILTERS_2TAP(xoffset);
|
|
|
|
const int16_t *const vfilter = BILINEAR_FILTERS_2TAP(yoffset);
|
2013-05-07 18:45:28 +02:00
|
|
|
|
|
|
|
var_filter_block2d_bil_first_pass(src_ptr, fdata3, src_pixels_per_line,
|
|
|
|
1, 9, 8, hfilter);
|
|
|
|
var_filter_block2d_bil_second_pass(fdata3, temp2, 8, 8, 8, 8, vfilter);
|
2014-03-04 00:32:38 +01:00
|
|
|
vp9_comp_avg_pred(temp3, second_pred, 8, 8, temp2, 8);
|
2014-04-19 02:05:28 +02:00
|
|
|
|
2013-06-17 23:57:13 +02:00
|
|
|
return vp9_variance8x8(temp3, 8, dst_ptr, dst_pixels_per_line, sse);
|
2013-05-07 18:45:28 +02:00
|
|
|
}
|
|
|
|
|
2012-12-19 00:31:19 +01:00
|
|
|
unsigned int vp9_sub_pixel_variance16x16_c(const uint8_t *src_ptr,
|
2012-10-30 22:25:33 +01:00
|
|
|
int src_pixels_per_line,
|
|
|
|
int xoffset,
|
|
|
|
int yoffset,
|
2012-12-19 00:31:19 +01:00
|
|
|
const uint8_t *dst_ptr,
|
2012-10-30 22:25:33 +01:00
|
|
|
int dst_pixels_per_line,
|
|
|
|
unsigned int *sse) {
|
2014-04-19 02:05:28 +02:00
|
|
|
uint16_t fdata3[17 * 16];
|
2012-12-19 00:31:19 +01:00
|
|
|
uint8_t temp2[20 * 16];
|
2014-04-19 02:05:28 +02:00
|
|
|
const int16_t *const hfilter = BILINEAR_FILTERS_2TAP(xoffset);
|
|
|
|
const int16_t *const vfilter = BILINEAR_FILTERS_2TAP(yoffset);
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2013-04-15 19:00:34 +02:00
|
|
|
var_filter_block2d_bil_first_pass(src_ptr, fdata3, src_pixels_per_line,
|
|
|
|
1, 17, 16, hfilter);
|
|
|
|
var_filter_block2d_bil_second_pass(fdata3, temp2, 16, 16, 16, 16, vfilter);
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2013-06-17 23:57:13 +02:00
|
|
|
return vp9_variance16x16(temp2, 16, dst_ptr, dst_pixels_per_line, sse);
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2013-05-07 18:45:28 +02:00
|
|
|
unsigned int vp9_sub_pixel_avg_variance16x16_c(const uint8_t *src_ptr,
|
|
|
|
int src_pixels_per_line,
|
|
|
|
int xoffset,
|
|
|
|
int yoffset,
|
|
|
|
const uint8_t *dst_ptr,
|
|
|
|
int dst_pixels_per_line,
|
|
|
|
unsigned int *sse,
|
|
|
|
const uint8_t *second_pred) {
|
|
|
|
uint16_t fdata3[17 * 16];
|
|
|
|
uint8_t temp2[20 * 16];
|
2014-04-19 02:05:28 +02:00
|
|
|
DECLARE_ALIGNED_ARRAY(16, uint8_t, temp3, 16 * 16);
|
|
|
|
const int16_t *const hfilter = BILINEAR_FILTERS_2TAP(xoffset);
|
|
|
|
const int16_t *const vfilter = BILINEAR_FILTERS_2TAP(yoffset);
|
2013-05-07 18:45:28 +02:00
|
|
|
|
|
|
|
var_filter_block2d_bil_first_pass(src_ptr, fdata3, src_pixels_per_line,
|
|
|
|
1, 17, 16, hfilter);
|
|
|
|
var_filter_block2d_bil_second_pass(fdata3, temp2, 16, 16, 16, 16, vfilter);
|
|
|
|
|
2014-03-04 00:32:38 +01:00
|
|
|
vp9_comp_avg_pred(temp3, second_pred, 16, 16, temp2, 16);
|
2013-06-17 23:57:13 +02:00
|
|
|
return vp9_variance16x16(temp3, 16, dst_ptr, dst_pixels_per_line, sse);
|
2013-05-07 18:45:28 +02:00
|
|
|
}
|
|
|
|
|
2013-01-06 03:20:25 +01:00
|
|
|
unsigned int vp9_sub_pixel_variance64x64_c(const uint8_t *src_ptr,
|
|
|
|
int src_pixels_per_line,
|
|
|
|
int xoffset,
|
|
|
|
int yoffset,
|
|
|
|
const uint8_t *dst_ptr,
|
|
|
|
int dst_pixels_per_line,
|
|
|
|
unsigned int *sse) {
|
2013-08-20 21:55:41 +02:00
|
|
|
uint16_t fdata3[65 * 64]; // Temp data buffer used in filtering
|
2013-01-06 03:20:25 +01:00
|
|
|
uint8_t temp2[68 * 64];
|
2014-04-19 02:05:28 +02:00
|
|
|
const int16_t *const hfilter = BILINEAR_FILTERS_2TAP(xoffset);
|
|
|
|
const int16_t *const vfilter = BILINEAR_FILTERS_2TAP(yoffset);
|
2013-01-06 03:20:25 +01:00
|
|
|
|
2013-04-15 19:00:34 +02:00
|
|
|
var_filter_block2d_bil_first_pass(src_ptr, fdata3, src_pixels_per_line,
|
|
|
|
1, 65, 64, hfilter);
|
|
|
|
var_filter_block2d_bil_second_pass(fdata3, temp2, 64, 64, 64, 64, vfilter);
|
2013-01-06 03:20:25 +01:00
|
|
|
|
2013-06-17 23:57:13 +02:00
|
|
|
return vp9_variance64x64(temp2, 64, dst_ptr, dst_pixels_per_line, sse);
|
2013-01-06 03:20:25 +01:00
|
|
|
}
|
|
|
|
|
2013-05-07 18:45:28 +02:00
|
|
|
unsigned int vp9_sub_pixel_avg_variance64x64_c(const uint8_t *src_ptr,
|
|
|
|
int src_pixels_per_line,
|
|
|
|
int xoffset,
|
|
|
|
int yoffset,
|
|
|
|
const uint8_t *dst_ptr,
|
|
|
|
int dst_pixels_per_line,
|
|
|
|
unsigned int *sse,
|
|
|
|
const uint8_t *second_pred) {
|
2014-04-19 02:05:28 +02:00
|
|
|
uint16_t fdata3[65 * 64];
|
2013-05-07 18:45:28 +02:00
|
|
|
uint8_t temp2[68 * 64];
|
2014-04-19 02:05:28 +02:00
|
|
|
DECLARE_ALIGNED_ARRAY(16, uint8_t, temp3, 64 * 64);
|
|
|
|
const int16_t *const hfilter = BILINEAR_FILTERS_2TAP(xoffset);
|
|
|
|
const int16_t *const vfilter = BILINEAR_FILTERS_2TAP(yoffset);
|
2013-05-07 18:45:28 +02:00
|
|
|
|
|
|
|
var_filter_block2d_bil_first_pass(src_ptr, fdata3, src_pixels_per_line,
|
|
|
|
1, 65, 64, hfilter);
|
|
|
|
var_filter_block2d_bil_second_pass(fdata3, temp2, 64, 64, 64, 64, vfilter);
|
2014-03-04 00:32:38 +01:00
|
|
|
vp9_comp_avg_pred(temp3, second_pred, 64, 64, temp2, 64);
|
2013-06-17 23:57:13 +02:00
|
|
|
return vp9_variance64x64(temp3, 64, dst_ptr, dst_pixels_per_line, sse);
|
2013-05-07 18:45:28 +02:00
|
|
|
}
|
|
|
|
|
2012-12-19 00:31:19 +01:00
|
|
|
unsigned int vp9_sub_pixel_variance32x32_c(const uint8_t *src_ptr,
|
2012-08-20 23:43:34 +02:00
|
|
|
int src_pixels_per_line,
|
|
|
|
int xoffset,
|
|
|
|
int yoffset,
|
2012-12-19 00:31:19 +01:00
|
|
|
const uint8_t *dst_ptr,
|
2012-08-20 23:43:34 +02:00
|
|
|
int dst_pixels_per_line,
|
|
|
|
unsigned int *sse) {
|
2014-04-19 02:05:28 +02:00
|
|
|
uint16_t fdata3[33 * 32];
|
2012-12-19 00:31:19 +01:00
|
|
|
uint8_t temp2[36 * 32];
|
2014-04-19 02:05:28 +02:00
|
|
|
const int16_t *const hfilter = BILINEAR_FILTERS_2TAP(xoffset);
|
|
|
|
const int16_t *const vfilter = BILINEAR_FILTERS_2TAP(yoffset);
|
2012-08-20 23:43:34 +02:00
|
|
|
|
2013-04-15 19:00:34 +02:00
|
|
|
var_filter_block2d_bil_first_pass(src_ptr, fdata3, src_pixels_per_line,
|
|
|
|
1, 33, 32, hfilter);
|
|
|
|
var_filter_block2d_bil_second_pass(fdata3, temp2, 32, 32, 32, 32, vfilter);
|
2012-08-20 23:43:34 +02:00
|
|
|
|
2013-06-17 23:57:13 +02:00
|
|
|
return vp9_variance32x32(temp2, 32, dst_ptr, dst_pixels_per_line, sse);
|
2012-08-20 23:43:34 +02:00
|
|
|
}
|
2010-10-26 21:34:16 +02:00
|
|
|
|
2013-05-07 18:45:28 +02:00
|
|
|
unsigned int vp9_sub_pixel_avg_variance32x32_c(const uint8_t *src_ptr,
|
|
|
|
int src_pixels_per_line,
|
|
|
|
int xoffset,
|
|
|
|
int yoffset,
|
|
|
|
const uint8_t *dst_ptr,
|
|
|
|
int dst_pixels_per_line,
|
|
|
|
unsigned int *sse,
|
|
|
|
const uint8_t *second_pred) {
|
2014-04-19 02:05:28 +02:00
|
|
|
uint16_t fdata3[33 * 32];
|
2013-05-07 18:45:28 +02:00
|
|
|
uint8_t temp2[36 * 32];
|
2014-04-19 02:05:28 +02:00
|
|
|
DECLARE_ALIGNED_ARRAY(16, uint8_t, temp3, 32 * 32);
|
|
|
|
const int16_t *const hfilter = BILINEAR_FILTERS_2TAP(xoffset);
|
|
|
|
const int16_t *const vfilter = BILINEAR_FILTERS_2TAP(yoffset);
|
2013-05-07 18:45:28 +02:00
|
|
|
|
|
|
|
var_filter_block2d_bil_first_pass(src_ptr, fdata3, src_pixels_per_line,
|
|
|
|
1, 33, 32, hfilter);
|
|
|
|
var_filter_block2d_bil_second_pass(fdata3, temp2, 32, 32, 32, 32, vfilter);
|
2014-03-04 00:32:38 +01:00
|
|
|
vp9_comp_avg_pred(temp3, second_pred, 32, 32, temp2, 32);
|
2013-06-17 23:57:13 +02:00
|
|
|
return vp9_variance32x32(temp3, 32, dst_ptr, dst_pixels_per_line, sse);
|
2013-05-07 18:45:28 +02:00
|
|
|
}
|
|
|
|
|
2012-12-19 00:31:19 +01:00
|
|
|
unsigned int vp9_variance_halfpixvar16x16_h_c(const uint8_t *src_ptr,
|
2012-10-30 22:25:33 +01:00
|
|
|
int source_stride,
|
2012-12-19 00:31:19 +01:00
|
|
|
const uint8_t *ref_ptr,
|
2012-10-30 22:25:33 +01:00
|
|
|
int recon_stride,
|
|
|
|
unsigned int *sse) {
|
2012-10-30 20:58:42 +01:00
|
|
|
return vp9_sub_pixel_variance16x16_c(src_ptr, source_stride, 8, 0,
|
2012-07-14 00:21:29 +02:00
|
|
|
ref_ptr, recon_stride, sse);
|
2010-10-27 17:28:43 +02:00
|
|
|
}
|
|
|
|
|
2012-12-19 00:31:19 +01:00
|
|
|
unsigned int vp9_variance_halfpixvar32x32_h_c(const uint8_t *src_ptr,
|
2012-08-20 23:43:34 +02:00
|
|
|
int source_stride,
|
2012-12-19 00:31:19 +01:00
|
|
|
const uint8_t *ref_ptr,
|
2012-08-20 23:43:34 +02:00
|
|
|
int recon_stride,
|
|
|
|
unsigned int *sse) {
|
2012-10-30 20:58:42 +01:00
|
|
|
return vp9_sub_pixel_variance32x32_c(src_ptr, source_stride, 8, 0,
|
2012-08-20 23:43:34 +02:00
|
|
|
ref_ptr, recon_stride, sse);
|
|
|
|
}
|
2013-01-06 03:20:25 +01:00
|
|
|
|
|
|
|
unsigned int vp9_variance_halfpixvar64x64_h_c(const uint8_t *src_ptr,
|
|
|
|
int source_stride,
|
|
|
|
const uint8_t *ref_ptr,
|
|
|
|
int recon_stride,
|
|
|
|
unsigned int *sse) {
|
|
|
|
return vp9_sub_pixel_variance64x64_c(src_ptr, source_stride, 8, 0,
|
|
|
|
ref_ptr, recon_stride, sse);
|
|
|
|
}
|
2010-10-27 17:28:43 +02:00
|
|
|
|
2012-12-19 00:31:19 +01:00
|
|
|
unsigned int vp9_variance_halfpixvar16x16_v_c(const uint8_t *src_ptr,
|
2012-08-20 23:43:34 +02:00
|
|
|
int source_stride,
|
2012-12-19 00:31:19 +01:00
|
|
|
const uint8_t *ref_ptr,
|
2012-08-20 23:43:34 +02:00
|
|
|
int recon_stride,
|
|
|
|
unsigned int *sse) {
|
2012-10-30 20:58:42 +01:00
|
|
|
return vp9_sub_pixel_variance16x16_c(src_ptr, source_stride, 0, 8,
|
2012-08-20 23:43:34 +02:00
|
|
|
ref_ptr, recon_stride, sse);
|
|
|
|
}
|
|
|
|
|
2012-12-19 00:31:19 +01:00
|
|
|
unsigned int vp9_variance_halfpixvar32x32_v_c(const uint8_t *src_ptr,
|
2012-10-30 22:25:33 +01:00
|
|
|
int source_stride,
|
2012-12-19 00:31:19 +01:00
|
|
|
const uint8_t *ref_ptr,
|
2012-10-30 22:25:33 +01:00
|
|
|
int recon_stride,
|
|
|
|
unsigned int *sse) {
|
2012-10-30 20:58:42 +01:00
|
|
|
return vp9_sub_pixel_variance32x32_c(src_ptr, source_stride, 0, 8,
|
2012-07-14 00:21:29 +02:00
|
|
|
ref_ptr, recon_stride, sse);
|
2010-10-27 17:28:43 +02:00
|
|
|
}
|
2013-01-06 03:20:25 +01:00
|
|
|
|
|
|
|
unsigned int vp9_variance_halfpixvar64x64_v_c(const uint8_t *src_ptr,
|
|
|
|
int source_stride,
|
|
|
|
const uint8_t *ref_ptr,
|
|
|
|
int recon_stride,
|
|
|
|
unsigned int *sse) {
|
|
|
|
return vp9_sub_pixel_variance64x64_c(src_ptr, source_stride, 0, 8,
|
|
|
|
ref_ptr, recon_stride, sse);
|
|
|
|
}
|
2010-10-27 17:28:43 +02:00
|
|
|
|
2012-12-19 00:31:19 +01:00
|
|
|
unsigned int vp9_variance_halfpixvar16x16_hv_c(const uint8_t *src_ptr,
|
2012-10-30 22:25:33 +01:00
|
|
|
int source_stride,
|
2012-12-19 00:31:19 +01:00
|
|
|
const uint8_t *ref_ptr,
|
2012-10-30 22:25:33 +01:00
|
|
|
int recon_stride,
|
|
|
|
unsigned int *sse) {
|
2012-10-30 20:58:42 +01:00
|
|
|
return vp9_sub_pixel_variance16x16_c(src_ptr, source_stride, 8, 8,
|
2012-07-14 00:21:29 +02:00
|
|
|
ref_ptr, recon_stride, sse);
|
2010-10-26 21:34:16 +02:00
|
|
|
}
|
|
|
|
|
2012-12-19 00:31:19 +01:00
|
|
|
unsigned int vp9_variance_halfpixvar32x32_hv_c(const uint8_t *src_ptr,
|
2012-08-20 23:43:34 +02:00
|
|
|
int source_stride,
|
2012-12-19 00:31:19 +01:00
|
|
|
const uint8_t *ref_ptr,
|
2012-08-20 23:43:34 +02:00
|
|
|
int recon_stride,
|
|
|
|
unsigned int *sse) {
|
2012-10-30 20:58:42 +01:00
|
|
|
return vp9_sub_pixel_variance32x32_c(src_ptr, source_stride, 8, 8,
|
2012-08-20 23:43:34 +02:00
|
|
|
ref_ptr, recon_stride, sse);
|
|
|
|
}
|
2013-01-06 03:20:25 +01:00
|
|
|
|
|
|
|
unsigned int vp9_variance_halfpixvar64x64_hv_c(const uint8_t *src_ptr,
|
|
|
|
int source_stride,
|
|
|
|
const uint8_t *ref_ptr,
|
|
|
|
int recon_stride,
|
|
|
|
unsigned int *sse) {
|
|
|
|
return vp9_sub_pixel_variance64x64_c(src_ptr, source_stride, 8, 8,
|
|
|
|
ref_ptr, recon_stride, sse);
|
|
|
|
}
|
2010-10-26 21:34:16 +02:00
|
|
|
|
2012-12-19 00:31:19 +01:00
|
|
|
unsigned int vp9_sub_pixel_mse16x16_c(const uint8_t *src_ptr,
|
2012-10-30 22:25:33 +01:00
|
|
|
int src_pixels_per_line,
|
|
|
|
int xoffset,
|
|
|
|
int yoffset,
|
2012-12-19 00:31:19 +01:00
|
|
|
const uint8_t *dst_ptr,
|
2012-10-30 22:25:33 +01:00
|
|
|
int dst_pixels_per_line,
|
|
|
|
unsigned int *sse) {
|
|
|
|
vp9_sub_pixel_variance16x16_c(src_ptr, src_pixels_per_line,
|
|
|
|
xoffset, yoffset, dst_ptr,
|
|
|
|
dst_pixels_per_line, sse);
|
2012-07-14 00:21:29 +02:00
|
|
|
return *sse;
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2012-12-19 00:31:19 +01:00
|
|
|
unsigned int vp9_sub_pixel_mse32x32_c(const uint8_t *src_ptr,
|
2012-08-20 23:43:34 +02:00
|
|
|
int src_pixels_per_line,
|
|
|
|
int xoffset,
|
|
|
|
int yoffset,
|
2012-12-19 00:31:19 +01:00
|
|
|
const uint8_t *dst_ptr,
|
2012-08-20 23:43:34 +02:00
|
|
|
int dst_pixels_per_line,
|
|
|
|
unsigned int *sse) {
|
2012-10-30 22:25:33 +01:00
|
|
|
vp9_sub_pixel_variance32x32_c(src_ptr, src_pixels_per_line,
|
|
|
|
xoffset, yoffset, dst_ptr,
|
|
|
|
dst_pixels_per_line, sse);
|
2012-08-20 23:43:34 +02:00
|
|
|
return *sse;
|
|
|
|
}
|
2013-01-06 03:20:25 +01:00
|
|
|
|
|
|
|
unsigned int vp9_sub_pixel_mse64x64_c(const uint8_t *src_ptr,
|
|
|
|
int src_pixels_per_line,
|
|
|
|
int xoffset,
|
|
|
|
int yoffset,
|
|
|
|
const uint8_t *dst_ptr,
|
|
|
|
int dst_pixels_per_line,
|
|
|
|
unsigned int *sse) {
|
|
|
|
vp9_sub_pixel_variance64x64_c(src_ptr, src_pixels_per_line,
|
|
|
|
xoffset, yoffset, dst_ptr,
|
|
|
|
dst_pixels_per_line, sse);
|
|
|
|
return *sse;
|
|
|
|
}
|
2012-08-20 23:43:34 +02:00
|
|
|
|
2012-12-19 00:31:19 +01:00
|
|
|
unsigned int vp9_sub_pixel_variance16x8_c(const uint8_t *src_ptr,
|
2012-10-30 22:25:33 +01:00
|
|
|
int src_pixels_per_line,
|
|
|
|
int xoffset,
|
|
|
|
int yoffset,
|
2012-12-19 00:31:19 +01:00
|
|
|
const uint8_t *dst_ptr,
|
2012-10-30 22:25:33 +01:00
|
|
|
int dst_pixels_per_line,
|
|
|
|
unsigned int *sse) {
|
2014-04-19 02:05:28 +02:00
|
|
|
uint16_t fdata3[16 * 9];
|
2012-12-19 00:31:19 +01:00
|
|
|
uint8_t temp2[20 * 16];
|
2014-04-19 02:05:28 +02:00
|
|
|
const int16_t *const hfilter = BILINEAR_FILTERS_2TAP(xoffset);
|
|
|
|
const int16_t *const vfilter = BILINEAR_FILTERS_2TAP(yoffset);
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2013-04-15 19:00:34 +02:00
|
|
|
var_filter_block2d_bil_first_pass(src_ptr, fdata3, src_pixels_per_line,
|
|
|
|
1, 9, 16, hfilter);
|
|
|
|
var_filter_block2d_bil_second_pass(fdata3, temp2, 16, 16, 8, 16, vfilter);
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2013-06-17 23:57:13 +02:00
|
|
|
return vp9_variance16x8(temp2, 16, dst_ptr, dst_pixels_per_line, sse);
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2013-05-07 18:45:28 +02:00
|
|
|
unsigned int vp9_sub_pixel_avg_variance16x8_c(const uint8_t *src_ptr,
|
|
|
|
int src_pixels_per_line,
|
|
|
|
int xoffset,
|
|
|
|
int yoffset,
|
|
|
|
const uint8_t *dst_ptr,
|
|
|
|
int dst_pixels_per_line,
|
|
|
|
unsigned int *sse,
|
|
|
|
const uint8_t *second_pred) {
|
2014-04-19 02:05:28 +02:00
|
|
|
uint16_t fdata3[16 * 9];
|
2013-05-07 18:45:28 +02:00
|
|
|
uint8_t temp2[20 * 16];
|
2014-04-19 02:05:28 +02:00
|
|
|
DECLARE_ALIGNED_ARRAY(16, uint8_t, temp3, 16 * 8);
|
|
|
|
const int16_t *const hfilter = BILINEAR_FILTERS_2TAP(xoffset);
|
|
|
|
const int16_t *const vfilter = BILINEAR_FILTERS_2TAP(yoffset);
|
2013-05-07 18:45:28 +02:00
|
|
|
|
|
|
|
var_filter_block2d_bil_first_pass(src_ptr, fdata3, src_pixels_per_line,
|
|
|
|
1, 9, 16, hfilter);
|
|
|
|
var_filter_block2d_bil_second_pass(fdata3, temp2, 16, 16, 8, 16, vfilter);
|
2014-03-04 00:32:38 +01:00
|
|
|
vp9_comp_avg_pred(temp3, second_pred, 16, 8, temp2, 16);
|
2013-06-17 23:57:13 +02:00
|
|
|
return vp9_variance16x8(temp3, 16, dst_ptr, dst_pixels_per_line, sse);
|
2013-05-07 18:45:28 +02:00
|
|
|
}
|
|
|
|
|
2012-12-19 00:31:19 +01:00
|
|
|
unsigned int vp9_sub_pixel_variance8x16_c(const uint8_t *src_ptr,
|
2012-10-30 22:25:33 +01:00
|
|
|
int src_pixels_per_line,
|
|
|
|
int xoffset,
|
|
|
|
int yoffset,
|
2012-12-19 00:31:19 +01:00
|
|
|
const uint8_t *dst_ptr,
|
2012-10-30 22:25:33 +01:00
|
|
|
int dst_pixels_per_line,
|
|
|
|
unsigned int *sse) {
|
2013-08-20 21:55:41 +02:00
|
|
|
uint16_t fdata3[9 * 16]; // Temp data buffer used in filtering
|
2012-12-19 00:31:19 +01:00
|
|
|
uint8_t temp2[20 * 16];
|
2014-04-19 02:05:28 +02:00
|
|
|
const int16_t *const hfilter = BILINEAR_FILTERS_2TAP(xoffset);
|
|
|
|
const int16_t *const vfilter = BILINEAR_FILTERS_2TAP(yoffset);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2013-04-15 19:00:34 +02:00
|
|
|
var_filter_block2d_bil_first_pass(src_ptr, fdata3, src_pixels_per_line,
|
|
|
|
1, 17, 8, hfilter);
|
|
|
|
var_filter_block2d_bil_second_pass(fdata3, temp2, 8, 8, 16, 8, vfilter);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2013-06-17 23:57:13 +02:00
|
|
|
return vp9_variance8x16(temp2, 8, dst_ptr, dst_pixels_per_line, sse);
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
2012-10-30 22:25:33 +01:00
|
|
|
|
2013-05-07 18:45:28 +02:00
|
|
|
unsigned int vp9_sub_pixel_avg_variance8x16_c(const uint8_t *src_ptr,
|
|
|
|
int src_pixels_per_line,
|
|
|
|
int xoffset,
|
|
|
|
int yoffset,
|
|
|
|
const uint8_t *dst_ptr,
|
|
|
|
int dst_pixels_per_line,
|
|
|
|
unsigned int *sse,
|
|
|
|
const uint8_t *second_pred) {
|
2014-04-19 02:05:28 +02:00
|
|
|
uint16_t fdata3[9 * 16];
|
2013-05-07 18:45:28 +02:00
|
|
|
uint8_t temp2[20 * 16];
|
2014-04-19 02:05:28 +02:00
|
|
|
DECLARE_ALIGNED_ARRAY(16, uint8_t, temp3, 8 * 16);
|
|
|
|
const int16_t *const hfilter = BILINEAR_FILTERS_2TAP(xoffset);
|
|
|
|
const int16_t *const vfilter = BILINEAR_FILTERS_2TAP(yoffset);
|
2013-05-07 18:45:28 +02:00
|
|
|
|
|
|
|
var_filter_block2d_bil_first_pass(src_ptr, fdata3, src_pixels_per_line,
|
|
|
|
1, 17, 8, hfilter);
|
|
|
|
var_filter_block2d_bil_second_pass(fdata3, temp2, 8, 8, 16, 8, vfilter);
|
2014-03-04 00:32:38 +01:00
|
|
|
vp9_comp_avg_pred(temp3, second_pred, 8, 16, temp2, 8);
|
2013-06-17 23:57:13 +02:00
|
|
|
return vp9_variance8x16(temp3, 8, dst_ptr, dst_pixels_per_line, sse);
|
2013-05-07 18:45:28 +02:00
|
|
|
}
|
2013-05-15 21:19:59 +02:00
|
|
|
|
|
|
|
unsigned int vp9_sub_pixel_variance8x4_c(const uint8_t *src_ptr,
|
|
|
|
int src_pixels_per_line,
|
|
|
|
int xoffset,
|
|
|
|
int yoffset,
|
|
|
|
const uint8_t *dst_ptr,
|
|
|
|
int dst_pixels_per_line,
|
|
|
|
unsigned int *sse) {
|
2014-04-19 02:05:28 +02:00
|
|
|
uint16_t fdata3[8 * 5];
|
2013-05-15 21:19:59 +02:00
|
|
|
uint8_t temp2[20 * 16];
|
2014-04-19 02:05:28 +02:00
|
|
|
const int16_t *const hfilter = BILINEAR_FILTERS_2TAP(xoffset);
|
|
|
|
const int16_t *const vfilter = BILINEAR_FILTERS_2TAP(yoffset);
|
2013-05-15 21:19:59 +02:00
|
|
|
|
|
|
|
var_filter_block2d_bil_first_pass(src_ptr, fdata3, src_pixels_per_line,
|
|
|
|
1, 5, 8, hfilter);
|
|
|
|
var_filter_block2d_bil_second_pass(fdata3, temp2, 8, 8, 4, 8, vfilter);
|
|
|
|
|
2013-06-17 23:57:13 +02:00
|
|
|
return vp9_variance8x4(temp2, 8, dst_ptr, dst_pixels_per_line, sse);
|
2013-05-15 21:19:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int vp9_sub_pixel_avg_variance8x4_c(const uint8_t *src_ptr,
|
|
|
|
int src_pixels_per_line,
|
|
|
|
int xoffset,
|
|
|
|
int yoffset,
|
|
|
|
const uint8_t *dst_ptr,
|
|
|
|
int dst_pixels_per_line,
|
|
|
|
unsigned int *sse,
|
|
|
|
const uint8_t *second_pred) {
|
2014-04-19 02:05:28 +02:00
|
|
|
uint16_t fdata3[8 * 5];
|
2013-05-15 21:19:59 +02:00
|
|
|
uint8_t temp2[20 * 16];
|
2014-04-19 02:05:28 +02:00
|
|
|
DECLARE_ALIGNED_ARRAY(16, uint8_t, temp3, 8 * 4);
|
|
|
|
const int16_t *const hfilter = BILINEAR_FILTERS_2TAP(xoffset);
|
|
|
|
const int16_t *const vfilter = BILINEAR_FILTERS_2TAP(yoffset);
|
2013-05-15 21:19:59 +02:00
|
|
|
|
|
|
|
var_filter_block2d_bil_first_pass(src_ptr, fdata3, src_pixels_per_line,
|
|
|
|
1, 5, 8, hfilter);
|
|
|
|
var_filter_block2d_bil_second_pass(fdata3, temp2, 8, 8, 4, 8, vfilter);
|
2014-03-04 00:32:38 +01:00
|
|
|
vp9_comp_avg_pred(temp3, second_pred, 8, 4, temp2, 8);
|
2013-06-17 23:57:13 +02:00
|
|
|
return vp9_variance8x4(temp3, 8, dst_ptr, dst_pixels_per_line, sse);
|
2013-05-15 21:19:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int vp9_sub_pixel_variance4x8_c(const uint8_t *src_ptr,
|
|
|
|
int src_pixels_per_line,
|
|
|
|
int xoffset,
|
|
|
|
int yoffset,
|
|
|
|
const uint8_t *dst_ptr,
|
|
|
|
int dst_pixels_per_line,
|
|
|
|
unsigned int *sse) {
|
2014-04-19 02:05:28 +02:00
|
|
|
uint16_t fdata3[5 * 8];
|
2013-05-17 19:03:52 +02:00
|
|
|
// FIXME(jingning,rbultje): this temp2 buffer probably doesn't need to be
|
|
|
|
// of this big? same issue appears in all other block size settings.
|
2013-05-15 21:19:59 +02:00
|
|
|
uint8_t temp2[20 * 16];
|
2014-04-19 02:05:28 +02:00
|
|
|
const int16_t *const hfilter = BILINEAR_FILTERS_2TAP(xoffset);
|
|
|
|
const int16_t *const vfilter = BILINEAR_FILTERS_2TAP(yoffset);
|
2013-05-15 21:19:59 +02:00
|
|
|
|
|
|
|
var_filter_block2d_bil_first_pass(src_ptr, fdata3, src_pixels_per_line,
|
2013-05-17 19:03:52 +02:00
|
|
|
1, 9, 4, hfilter);
|
2013-05-15 21:19:59 +02:00
|
|
|
var_filter_block2d_bil_second_pass(fdata3, temp2, 4, 4, 8, 4, vfilter);
|
|
|
|
|
2013-06-17 23:57:13 +02:00
|
|
|
return vp9_variance4x8(temp2, 4, dst_ptr, dst_pixels_per_line, sse);
|
2013-05-15 21:19:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int vp9_sub_pixel_avg_variance4x8_c(const uint8_t *src_ptr,
|
|
|
|
int src_pixels_per_line,
|
|
|
|
int xoffset,
|
|
|
|
int yoffset,
|
|
|
|
const uint8_t *dst_ptr,
|
|
|
|
int dst_pixels_per_line,
|
|
|
|
unsigned int *sse,
|
|
|
|
const uint8_t *second_pred) {
|
2014-04-19 02:05:28 +02:00
|
|
|
uint16_t fdata3[5 * 8];
|
2013-05-15 21:19:59 +02:00
|
|
|
uint8_t temp2[20 * 16];
|
2014-04-19 02:05:28 +02:00
|
|
|
DECLARE_ALIGNED_ARRAY(16, uint8_t, temp3, 4 * 8);
|
|
|
|
const int16_t *const hfilter = BILINEAR_FILTERS_2TAP(xoffset);
|
|
|
|
const int16_t *const vfilter = BILINEAR_FILTERS_2TAP(yoffset);
|
2013-05-15 21:19:59 +02:00
|
|
|
|
|
|
|
var_filter_block2d_bil_first_pass(src_ptr, fdata3, src_pixels_per_line,
|
2013-05-17 19:03:52 +02:00
|
|
|
1, 9, 4, hfilter);
|
2013-05-15 21:19:59 +02:00
|
|
|
var_filter_block2d_bil_second_pass(fdata3, temp2, 4, 4, 8, 4, vfilter);
|
2014-03-04 00:32:38 +01:00
|
|
|
vp9_comp_avg_pred(temp3, second_pred, 4, 8, temp2, 4);
|
2013-06-17 23:57:13 +02:00
|
|
|
return vp9_variance4x8(temp3, 4, dst_ptr, dst_pixels_per_line, sse);
|
2013-05-15 21:19:59 +02:00
|
|
|
}
|
2014-03-04 00:32:38 +01:00
|
|
|
|
|
|
|
|
|
|
|
void vp9_comp_avg_pred(uint8_t *comp_pred, const uint8_t *pred, int width,
|
|
|
|
int height, const uint8_t *ref, int ref_stride) {
|
|
|
|
int i, j;
|
|
|
|
|
|
|
|
for (i = 0; i < height; i++) {
|
|
|
|
for (j = 0; j < width; j++) {
|
2014-04-19 02:05:28 +02:00
|
|
|
const int tmp = pred[j] + ref[j];
|
|
|
|
comp_pred[j] = ROUND_POWER_OF_TWO(tmp, 1);
|
2014-03-04 00:32:38 +01:00
|
|
|
}
|
|
|
|
comp_pred += width;
|
|
|
|
pred += width;
|
|
|
|
ref += ref_stride;
|
|
|
|
}
|
|
|
|
}
|