2013-01-25 18:47:09 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2013 The WebM project authors. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license
|
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
|
|
|
* in the file PATENTS. All contributing project authors may
|
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
|
|
*/
|
2015-07-22 19:40:42 +02:00
|
|
|
#ifndef VPX_DSP_VPX_CONVOLVE_H_
|
|
|
|
#define VPX_DSP_VPX_CONVOLVE_H_
|
2013-01-25 18:47:09 +01:00
|
|
|
|
Implicit weighted prediction experiment
Adds an experiment to use a weighted prediction of two INTER
predictors, where the weight is one of (1/4, 3/4), (3/8, 5/8),
(1/2, 1/2), (5/8, 3/8) or (3/4, 1/4), and is chosen implicitly
based on consistency of the predictors to the already
reconstructed pixels to the top and left of the current macroblock
or superblock.
Currently the weighting is not applied to SPLITMV modes, which
default to the usual (1/2, 1/2) weighting. However the code is in
place controlled by a macro. The same weighting is used for Y and
UV components, where the weight is derived from analyzing the Y
component only.
Results (over compound inter-intra experiment)
derf: +0.18%
yt: +0.34%
hd: +0.49%
stdhd: +0.23%
The experiment suggests bigger benefit for explicitly signaled weights.
Change-Id: I5438539ff4485c5752874cd1eb078ff14bf5235a
2013-03-12 22:21:08 +01:00
|
|
|
#include "./vpx_config.h"
|
2013-01-25 18:47:09 +01:00
|
|
|
#include "vpx/vpx_integer.h"
|
|
|
|
|
2014-01-18 21:16:11 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2013-07-10 20:17:19 +02:00
|
|
|
typedef void (*convolve_fn_t)(const uint8_t *src, ptrdiff_t src_stride,
|
|
|
|
uint8_t *dst, ptrdiff_t dst_stride,
|
2013-01-25 18:47:09 +01:00
|
|
|
const int16_t *filter_x, int x_step_q4,
|
2016-07-23 05:07:03 +02:00
|
|
|
const int16_t *filter_y, int y_step_q4, int w,
|
|
|
|
int h);
|
2013-01-25 18:47:09 +01:00
|
|
|
|
2014-09-16 21:47:18 +02:00
|
|
|
#if CONFIG_VP9_HIGHBITDEPTH
|
2017-04-19 22:08:25 +02:00
|
|
|
typedef void (*highbd_convolve_fn_t)(const uint16_t *src, ptrdiff_t src_stride,
|
|
|
|
uint16_t *dst, ptrdiff_t dst_stride,
|
2014-10-08 21:43:22 +02:00
|
|
|
const int16_t *filter_x, int x_step_q4,
|
|
|
|
const int16_t *filter_y, int y_step_q4,
|
|
|
|
int w, int h, int bd);
|
2014-09-16 21:47:18 +02:00
|
|
|
#endif
|
|
|
|
|
2014-01-18 21:16:11 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
} // extern "C"
|
|
|
|
#endif
|
|
|
|
|
2015-07-22 19:40:42 +02:00
|
|
|
#endif // VPX_DSP_VPX_CONVOLVE_H_
|