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
|
|
|
*/
|
|
|
|
|
Convert subpixel filters to use convolve framework
Update the code to call the new convolution functions to do subpixel
prediction rather than the existing functions. Remove the old C and
assembly code, since it is unused. This causes a 50% performance
reduction on the decoder, but that will be resolved when the asm for
the new functions is available.
There is no consensus for whether 6-tap or 2-tap predictors will be
supported in the final codec, so these filters are implemented in
terms of the 8-tap code, so that quality testing of these modes
can continue. Implementing the lower complexity algorithms is a
simple exercise, should it be necessary.
This code produces slightly better results in the EIGHTTAP_SMOOTH
case, since the filter is now applied in only one direction when
the subpel motion is only in one direction. Like the previous code,
the filtering is skipped entirely on full-pel MVs. This combination
seems to give the best quality gains, but this may be indicative of a
bug in the encoder's filter selection, since the encoder could
achieve the result of skipping the filtering on full-pel by selecting
one of the other filters. This should be revisited.
Quality gains on derf positive on almost all clips. The only clip
that seemed to be hurt at all datarates was football
(-0.115% PSNR average, -0.587% min). Overall averages 0.375% PSNR,
0.347% SSIM.
Change-Id: I7d469716091b1d89b4b08adde5863999319d69ff
2013-01-29 01:59:03 +01:00
|
|
|
#include <assert.h>
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2013-08-09 23:07:09 +02:00
|
|
|
#include "./vpx_scale_rtcd.h"
|
2012-12-23 16:20:10 +01:00
|
|
|
#include "./vpx_config.h"
|
2013-08-09 23:07:09 +02:00
|
|
|
|
2011-07-25 16:11:24 +02:00
|
|
|
#include "vpx/vpx_integer.h"
|
2013-08-09 23:07:09 +02:00
|
|
|
|
2012-11-28 19:41:40 +01:00
|
|
|
#include "vp9/common/vp9_blockd.h"
|
Convert subpixel filters to use convolve framework
Update the code to call the new convolution functions to do subpixel
prediction rather than the existing functions. Remove the old C and
assembly code, since it is unused. This causes a 50% performance
reduction on the decoder, but that will be resolved when the asm for
the new functions is available.
There is no consensus for whether 6-tap or 2-tap predictors will be
supported in the final codec, so these filters are implemented in
terms of the 8-tap code, so that quality testing of these modes
can continue. Implementing the lower complexity algorithms is a
simple exercise, should it be necessary.
This code produces slightly better results in the EIGHTTAP_SMOOTH
case, since the filter is now applied in only one direction when
the subpel motion is only in one direction. Like the previous code,
the filtering is skipped entirely on full-pel MVs. This combination
seems to give the best quality gains, but this may be indicative of a
bug in the encoder's filter selection, since the encoder could
achieve the result of skipping the filtering on full-pel by selecting
one of the other filters. This should be revisited.
Quality gains on derf positive on almost all clips. The only clip
that seemed to be hurt at all datarates was football
(-0.115% PSNR average, -0.587% min). Overall averages 0.375% PSNR,
0.347% SSIM.
Change-Id: I7d469716091b1d89b4b08adde5863999319d69ff
2013-01-29 01:59:03 +01:00
|
|
|
#include "vp9/common/vp9_filter.h"
|
2012-11-28 19:41:40 +01:00
|
|
|
#include "vp9/common/vp9_reconinter.h"
|
2012-11-27 22:59:17 +01:00
|
|
|
#include "vp9/common/vp9_reconintra.h"
|
2013-05-15 02:49:41 +02:00
|
|
|
|
2014-07-28 20:06:24 +02:00
|
|
|
void inter_predictor(const uint8_t *src, int src_stride,
|
2013-10-18 17:56:30 +02:00
|
|
|
uint8_t *dst, int dst_stride,
|
2013-12-10 19:36:44 +01:00
|
|
|
const int subpel_x,
|
|
|
|
const int subpel_y,
|
2013-12-20 01:06:33 +01:00
|
|
|
const struct scale_factors *sf,
|
2013-10-18 17:56:30 +02:00
|
|
|
int w, int h, int ref,
|
2014-02-04 01:48:38 +01:00
|
|
|
const InterpKernel *kernel,
|
2013-10-18 17:56:30 +02:00
|
|
|
int xs, int ys) {
|
2013-12-20 01:06:33 +01:00
|
|
|
sf->predict[subpel_x != 0][subpel_y != 0][ref](
|
2013-10-18 17:56:30 +02:00
|
|
|
src, src_stride, dst, dst_stride,
|
2014-01-25 02:06:26 +01:00
|
|
|
kernel[subpel_x], xs, kernel[subpel_y], ys, w, h);
|
2013-10-18 17:56:30 +02:00
|
|
|
}
|
|
|
|
|
2013-02-09 02:49:44 +01:00
|
|
|
void vp9_build_inter_predictor(const uint8_t *src, int src_stride,
|
|
|
|
uint8_t *dst, int dst_stride,
|
2013-08-03 00:26:32 +02:00
|
|
|
const MV *src_mv,
|
2013-12-20 01:06:33 +01:00
|
|
|
const struct scale_factors *sf,
|
2013-08-12 22:54:13 +02:00
|
|
|
int w, int h, int ref,
|
2014-02-04 01:48:38 +01:00
|
|
|
const InterpKernel *kernel,
|
2013-12-19 20:16:05 +01:00
|
|
|
enum mv_precision precision,
|
|
|
|
int x, int y) {
|
2013-08-07 00:43:56 +02:00
|
|
|
const int is_q4 = precision == MV_PRECISION_Q4;
|
2013-09-18 01:31:46 +02:00
|
|
|
const MV mv_q4 = { is_q4 ? src_mv->row : src_mv->row * 2,
|
|
|
|
is_q4 ? src_mv->col : src_mv->col * 2 };
|
2013-12-20 01:06:33 +01:00
|
|
|
MV32 mv = vp9_scale_mv(&mv_q4, x, y, sf);
|
|
|
|
const int subpel_x = mv.col & SUBPEL_MASK;
|
|
|
|
const int subpel_y = mv.row & SUBPEL_MASK;
|
2013-12-19 20:16:05 +01:00
|
|
|
|
2013-12-10 19:36:44 +01:00
|
|
|
src += (mv.row >> SUBPEL_BITS) * src_stride + (mv.col >> SUBPEL_BITS);
|
2013-08-07 00:43:56 +02:00
|
|
|
|
2013-12-10 19:36:44 +01:00
|
|
|
inter_predictor(src, src_stride, dst, dst_stride, subpel_x, subpel_y,
|
2014-01-25 02:06:26 +01:00
|
|
|
sf, w, h, ref, kernel, sf->x_step_q4, sf->y_step_q4);
|
2012-04-18 22:51:58 +02:00
|
|
|
}
|
|
|
|
|
2013-04-17 22:41:18 +02:00
|
|
|
static INLINE int round_mv_comp_q4(int value) {
|
|
|
|
return (value < 0 ? value - 2 : value + 2) / 4;
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2013-08-03 01:53:18 +02:00
|
|
|
static MV mi_mv_pred_q4(const MODE_INFO *mi, int idx) {
|
|
|
|
MV res = { round_mv_comp_q4(mi->bmi[0].as_mv[idx].as_mv.row +
|
|
|
|
mi->bmi[1].as_mv[idx].as_mv.row +
|
|
|
|
mi->bmi[2].as_mv[idx].as_mv.row +
|
|
|
|
mi->bmi[3].as_mv[idx].as_mv.row),
|
|
|
|
round_mv_comp_q4(mi->bmi[0].as_mv[idx].as_mv.col +
|
|
|
|
mi->bmi[1].as_mv[idx].as_mv.col +
|
|
|
|
mi->bmi[2].as_mv[idx].as_mv.col +
|
|
|
|
mi->bmi[3].as_mv[idx].as_mv.col) };
|
|
|
|
return res;
|
2013-04-17 21:24:51 +02:00
|
|
|
}
|
|
|
|
|
2014-03-27 22:27:12 +01:00
|
|
|
static INLINE int round_mv_comp_q2(int value) {
|
|
|
|
return (value < 0 ? value - 1 : value + 1) / 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
static MV mi_mv_pred_q2(const MODE_INFO *mi, int idx, int block0, int block1) {
|
|
|
|
MV res = { round_mv_comp_q2(mi->bmi[block0].as_mv[idx].as_mv.row +
|
|
|
|
mi->bmi[block1].as_mv[idx].as_mv.row),
|
|
|
|
round_mv_comp_q2(mi->bmi[block0].as_mv[idx].as_mv.col +
|
|
|
|
mi->bmi[block1].as_mv[idx].as_mv.col) };
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
make buid_inter_predictors block size agnostic (luma)
This commit converts the luma versions of vp9_build_inter_predictors_sb
to use a common function. Update the convolution functions to support
block sizes larger than 16x16, and add a foreach_predicted_block walker.
Next step will be to calculate the UV motion vector and implement SBUV,
then fold in vp9_build_inter16x16_predictors_mb and SPLITMV.
At the 16x16, 32x32, and 64x64 levels implemented in this commit, each
plane is predicted with only a single call to vp9_build_inter_predictor.
This is not yet called for SPLITMV. If the notion of SPLITMV/I8X8/I4X4
goes away, then the prediction block walker can go away, since we'll
always predict the whole bsize in a single step. Implemented using a
block walker at this stage for SPLITMV, as a 4x4 "prediction block size"
within the BLOCK_SIZE_MB16X16 macroblock. It would also support other
rectangular sizes too, if the blocks smaller than 16x16 remain
implemented as a SPLITMV-like thing. Just using 4x4 for now.
There's also a potential to combine with the foreach_transformed_block
walker if the logic for calculating the size of the subsampled
transform is made more straightforward, perhaps as a consequence of
supporing smaller macroblocks than 16x16. Will watch what happens there.
Change-Id: Iddd9973398542216601b630c628b9b7fdee33fe2
2013-04-13 02:19:57 +02:00
|
|
|
// TODO(jkoleszar): yet another mv clamping function :-(
|
2013-08-08 02:02:28 +02:00
|
|
|
MV clamp_mv_to_umv_border_sb(const MACROBLOCKD *xd, const MV *src_mv,
|
|
|
|
int bw, int bh, int ss_x, int ss_y) {
|
2013-08-02 00:06:34 +02:00
|
|
|
// If the MV points so far into the UMV border that no visible pixels
|
|
|
|
// are used for reconstruction, the subpel part of the MV can be
|
|
|
|
// discarded and the MV limited to 16 pixels with equivalent results.
|
2013-08-08 02:02:28 +02:00
|
|
|
const int spel_left = (VP9_INTERP_EXTEND + bw) << SUBPEL_BITS;
|
|
|
|
const int spel_right = spel_left - SUBPEL_SHIFTS;
|
|
|
|
const int spel_top = (VP9_INTERP_EXTEND + bh) << SUBPEL_BITS;
|
|
|
|
const int spel_bottom = spel_top - SUBPEL_SHIFTS;
|
2013-08-02 00:06:34 +02:00
|
|
|
MV clamped_mv = {
|
2013-09-18 01:31:46 +02:00
|
|
|
src_mv->row * (1 << (1 - ss_y)),
|
|
|
|
src_mv->col * (1 << (1 - ss_x))
|
2013-08-02 00:06:34 +02:00
|
|
|
};
|
2013-04-17 01:26:26 +02:00
|
|
|
assert(ss_x <= 1);
|
|
|
|
assert(ss_y <= 1);
|
2013-08-02 00:06:34 +02:00
|
|
|
|
2013-09-18 01:31:46 +02:00
|
|
|
clamp_mv(&clamped_mv,
|
|
|
|
xd->mb_to_left_edge * (1 << (1 - ss_x)) - spel_left,
|
|
|
|
xd->mb_to_right_edge * (1 << (1 - ss_x)) + spel_right,
|
|
|
|
xd->mb_to_top_edge * (1 << (1 - ss_y)) - spel_top,
|
|
|
|
xd->mb_to_bottom_edge * (1 << (1 - ss_y)) + spel_bottom);
|
2013-08-02 00:06:34 +02:00
|
|
|
|
make buid_inter_predictors block size agnostic (luma)
This commit converts the luma versions of vp9_build_inter_predictors_sb
to use a common function. Update the convolution functions to support
block sizes larger than 16x16, and add a foreach_predicted_block walker.
Next step will be to calculate the UV motion vector and implement SBUV,
then fold in vp9_build_inter16x16_predictors_mb and SPLITMV.
At the 16x16, 32x32, and 64x64 levels implemented in this commit, each
plane is predicted with only a single call to vp9_build_inter_predictor.
This is not yet called for SPLITMV. If the notion of SPLITMV/I8X8/I4X4
goes away, then the prediction block walker can go away, since we'll
always predict the whole bsize in a single step. Implemented using a
block walker at this stage for SPLITMV, as a 4x4 "prediction block size"
within the BLOCK_SIZE_MB16X16 macroblock. It would also support other
rectangular sizes too, if the blocks smaller than 16x16 remain
implemented as a SPLITMV-like thing. Just using 4x4 for now.
There's also a potential to combine with the foreach_transformed_block
walker if the logic for calculating the size of the subsampled
transform is made more straightforward, perhaps as a consequence of
supporing smaller macroblocks than 16x16. Will watch what happens there.
Change-Id: Iddd9973398542216601b630c628b9b7fdee33fe2
2013-04-13 02:19:57 +02:00
|
|
|
return clamped_mv;
|
|
|
|
}
|
|
|
|
|
2014-07-28 20:06:24 +02:00
|
|
|
MV average_split_mvs(const struct macroblockd_plane *pd, int plane,
|
2014-03-27 22:27:12 +01:00
|
|
|
const MODE_INFO *mi, int ref, int block) {
|
|
|
|
const int ss_idx = ((pd->subsampling_x > 0) << 1) | (pd->subsampling_y > 0);
|
|
|
|
MV res = {0, 0};
|
|
|
|
switch (ss_idx) {
|
|
|
|
case 0:
|
|
|
|
res = mi->bmi[block].as_mv[ref].as_mv;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
res = mi_mv_pred_q2(mi, ref, block, block + 2);
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
res = mi_mv_pred_q2(mi, ref, block, block + 1);
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
res = mi_mv_pred_q4(mi, ref);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
assert(ss_idx <= 3 || ss_idx >= 0);
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2014-07-28 20:06:24 +02:00
|
|
|
void build_inter_predictors(MACROBLOCKD *xd, int plane, int block,
|
2013-12-04 21:11:01 +01:00
|
|
|
int bw, int bh,
|
|
|
|
int x, int y, int w, int h,
|
2013-11-12 03:37:00 +01:00
|
|
|
int mi_x, int mi_y) {
|
2013-08-08 02:02:28 +02:00
|
|
|
struct macroblockd_plane *const pd = &xd->plane[plane];
|
2014-04-02 01:18:47 +02:00
|
|
|
const MODE_INFO *mi = xd->mi[0];
|
2013-09-26 04:03:04 +02:00
|
|
|
const int is_compound = has_second_ref(&mi->mbmi);
|
2014-04-04 00:28:42 +02:00
|
|
|
const InterpKernel *kernel = vp9_get_interp_kernel(mi->mbmi.interp_filter);
|
2013-08-12 22:54:13 +02:00
|
|
|
int ref;
|
make buid_inter_predictors block size agnostic (luma)
This commit converts the luma versions of vp9_build_inter_predictors_sb
to use a common function. Update the convolution functions to support
block sizes larger than 16x16, and add a foreach_predicted_block walker.
Next step will be to calculate the UV motion vector and implement SBUV,
then fold in vp9_build_inter16x16_predictors_mb and SPLITMV.
At the 16x16, 32x32, and 64x64 levels implemented in this commit, each
plane is predicted with only a single call to vp9_build_inter_predictor.
This is not yet called for SPLITMV. If the notion of SPLITMV/I8X8/I4X4
goes away, then the prediction block walker can go away, since we'll
always predict the whole bsize in a single step. Implemented using a
block walker at this stage for SPLITMV, as a 4x4 "prediction block size"
within the BLOCK_SIZE_MB16X16 macroblock. It would also support other
rectangular sizes too, if the blocks smaller than 16x16 remain
implemented as a SPLITMV-like thing. Just using 4x4 for now.
There's also a potential to combine with the foreach_transformed_block
walker if the logic for calculating the size of the subsampled
transform is made more straightforward, perhaps as a consequence of
supporing smaller macroblocks than 16x16. Will watch what happens there.
Change-Id: Iddd9973398542216601b630c628b9b7fdee33fe2
2013-04-13 02:19:57 +02:00
|
|
|
|
2013-09-26 04:03:04 +02:00
|
|
|
for (ref = 0; ref < 1 + is_compound; ++ref) {
|
2013-12-28 03:44:19 +01:00
|
|
|
const struct scale_factors *const sf = &xd->block_refs[ref]->sf;
|
2013-08-16 21:51:20 +02:00
|
|
|
struct buf_2d *const pre_buf = &pd->pre[ref];
|
|
|
|
struct buf_2d *const dst_buf = &pd->dst;
|
2013-08-09 06:25:48 +02:00
|
|
|
uint8_t *const dst = dst_buf->buf + dst_buf->stride * y + x;
|
2013-08-06 00:23:49 +02:00
|
|
|
const MV mv = mi->mbmi.sb_type < BLOCK_8X8
|
2014-03-27 22:27:12 +01:00
|
|
|
? average_split_mvs(pd, plane, mi, ref, block)
|
2013-08-12 22:54:13 +02:00
|
|
|
: mi->mbmi.mv[ref].as_mv;
|
2013-08-03 01:53:18 +02:00
|
|
|
|
|
|
|
// TODO(jkoleszar): This clamping is done in the incorrect place for the
|
|
|
|
// scaling case. It needs to be done on the scaled MV, not the pre-scaling
|
|
|
|
// MV. Note however that it performs the subsampling aware scaling so
|
|
|
|
// that the result is always q4.
|
2013-10-29 18:40:13 +01:00
|
|
|
// mv_precision precision is MV_PRECISION_Q4.
|
|
|
|
const MV mv_q4 = clamp_mv_to_umv_border_sb(xd, &mv, bw, bh,
|
|
|
|
pd->subsampling_x,
|
|
|
|
pd->subsampling_y);
|
2013-08-08 02:02:28 +02:00
|
|
|
|
2013-10-18 17:56:30 +02:00
|
|
|
uint8_t *pre;
|
|
|
|
MV32 scaled_mv;
|
2013-12-10 19:36:44 +01:00
|
|
|
int xs, ys, subpel_x, subpel_y;
|
2013-10-18 17:56:30 +02:00
|
|
|
|
2013-12-20 01:06:33 +01:00
|
|
|
if (vp9_is_scaled(sf)) {
|
|
|
|
pre = pre_buf->buf + scaled_buffer_offset(x, y, pre_buf->stride, sf);
|
|
|
|
scaled_mv = vp9_scale_mv(&mv_q4, mi_x + x, mi_y + y, sf);
|
|
|
|
xs = sf->x_step_q4;
|
|
|
|
ys = sf->y_step_q4;
|
2013-10-18 17:56:30 +02:00
|
|
|
} else {
|
|
|
|
pre = pre_buf->buf + (y * pre_buf->stride + x);
|
|
|
|
scaled_mv.row = mv_q4.row;
|
|
|
|
scaled_mv.col = mv_q4.col;
|
|
|
|
xs = ys = 16;
|
|
|
|
}
|
2013-12-10 19:36:44 +01:00
|
|
|
subpel_x = scaled_mv.col & SUBPEL_MASK;
|
|
|
|
subpel_y = scaled_mv.row & SUBPEL_MASK;
|
|
|
|
pre += (scaled_mv.row >> SUBPEL_BITS) * pre_buf->stride
|
|
|
|
+ (scaled_mv.col >> SUBPEL_BITS);
|
2013-10-18 17:56:30 +02:00
|
|
|
|
|
|
|
inter_predictor(pre, pre_buf->stride, dst, dst_buf->stride,
|
2014-04-04 00:28:42 +02:00
|
|
|
subpel_x, subpel_y, sf, w, h, ref, kernel, xs, ys);
|
make buid_inter_predictors block size agnostic (luma)
This commit converts the luma versions of vp9_build_inter_predictors_sb
to use a common function. Update the convolution functions to support
block sizes larger than 16x16, and add a foreach_predicted_block walker.
Next step will be to calculate the UV motion vector and implement SBUV,
then fold in vp9_build_inter16x16_predictors_mb and SPLITMV.
At the 16x16, 32x32, and 64x64 levels implemented in this commit, each
plane is predicted with only a single call to vp9_build_inter_predictor.
This is not yet called for SPLITMV. If the notion of SPLITMV/I8X8/I4X4
goes away, then the prediction block walker can go away, since we'll
always predict the whole bsize in a single step. Implemented using a
block walker at this stage for SPLITMV, as a 4x4 "prediction block size"
within the BLOCK_SIZE_MB16X16 macroblock. It would also support other
rectangular sizes too, if the blocks smaller than 16x16 remain
implemented as a SPLITMV-like thing. Just using 4x4 for now.
There's also a potential to combine with the foreach_transformed_block
walker if the logic for calculating the size of the subsampled
transform is made more straightforward, perhaps as a consequence of
supporing smaller macroblocks than 16x16. Will watch what happens there.
Change-Id: Iddd9973398542216601b630c628b9b7fdee33fe2
2013-04-13 02:19:57 +02:00
|
|
|
}
|
|
|
|
}
|
2013-08-12 22:54:13 +02:00
|
|
|
|
2013-08-26 20:33:16 +02:00
|
|
|
static void build_inter_predictors_for_planes(MACROBLOCKD *xd, BLOCK_SIZE bsize,
|
2013-08-12 22:54:13 +02:00
|
|
|
int mi_row, int mi_col,
|
|
|
|
int plane_from, int plane_to) {
|
|
|
|
int plane;
|
2013-12-04 21:11:01 +01:00
|
|
|
const int mi_x = mi_col * MI_SIZE;
|
|
|
|
const int mi_y = mi_row * MI_SIZE;
|
2013-08-12 22:54:13 +02:00
|
|
|
for (plane = plane_from; plane <= plane_to; ++plane) {
|
2013-12-04 21:11:01 +01:00
|
|
|
const BLOCK_SIZE plane_bsize = get_plane_block_size(bsize,
|
|
|
|
&xd->plane[plane]);
|
|
|
|
const int num_4x4_w = num_4x4_blocks_wide_lookup[plane_bsize];
|
|
|
|
const int num_4x4_h = num_4x4_blocks_high_lookup[plane_bsize];
|
|
|
|
const int bw = 4 * num_4x4_w;
|
|
|
|
const int bh = 4 * num_4x4_h;
|
2013-11-12 03:37:00 +01:00
|
|
|
|
2014-04-02 01:18:47 +02:00
|
|
|
if (xd->mi[0]->mbmi.sb_type < BLOCK_8X8) {
|
2013-11-12 03:37:00 +01:00
|
|
|
int i = 0, x, y;
|
|
|
|
assert(bsize == BLOCK_8X8);
|
2013-12-04 21:11:01 +01:00
|
|
|
for (y = 0; y < num_4x4_h; ++y)
|
|
|
|
for (x = 0; x < num_4x4_w; ++x)
|
|
|
|
build_inter_predictors(xd, plane, i++, bw, bh,
|
|
|
|
4 * x, 4 * y, 4, 4, mi_x, mi_y);
|
2013-11-12 03:37:00 +01:00
|
|
|
} else {
|
2013-12-04 21:11:01 +01:00
|
|
|
build_inter_predictors(xd, plane, 0, bw, bh,
|
|
|
|
0, 0, bw, bh, mi_x, mi_y);
|
2013-11-12 03:37:00 +01:00
|
|
|
}
|
2013-08-12 22:54:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-09 06:25:48 +02:00
|
|
|
void vp9_build_inter_predictors_sby(MACROBLOCKD *xd, int mi_row, int mi_col,
|
2013-08-26 20:33:16 +02:00
|
|
|
BLOCK_SIZE bsize) {
|
2013-08-12 22:54:13 +02:00
|
|
|
build_inter_predictors_for_planes(xd, bsize, mi_row, mi_col, 0, 0);
|
make buid_inter_predictors block size agnostic (luma)
This commit converts the luma versions of vp9_build_inter_predictors_sb
to use a common function. Update the convolution functions to support
block sizes larger than 16x16, and add a foreach_predicted_block walker.
Next step will be to calculate the UV motion vector and implement SBUV,
then fold in vp9_build_inter16x16_predictors_mb and SPLITMV.
At the 16x16, 32x32, and 64x64 levels implemented in this commit, each
plane is predicted with only a single call to vp9_build_inter_predictor.
This is not yet called for SPLITMV. If the notion of SPLITMV/I8X8/I4X4
goes away, then the prediction block walker can go away, since we'll
always predict the whole bsize in a single step. Implemented using a
block walker at this stage for SPLITMV, as a 4x4 "prediction block size"
within the BLOCK_SIZE_MB16X16 macroblock. It would also support other
rectangular sizes too, if the blocks smaller than 16x16 remain
implemented as a SPLITMV-like thing. Just using 4x4 for now.
There's also a potential to combine with the foreach_transformed_block
walker if the logic for calculating the size of the subsampled
transform is made more straightforward, perhaps as a consequence of
supporing smaller macroblocks than 16x16. Will watch what happens there.
Change-Id: Iddd9973398542216601b630c628b9b7fdee33fe2
2013-04-13 02:19:57 +02:00
|
|
|
}
|
2013-08-09 06:25:48 +02:00
|
|
|
void vp9_build_inter_predictors_sbuv(MACROBLOCKD *xd, int mi_row, int mi_col,
|
2013-08-26 20:33:16 +02:00
|
|
|
BLOCK_SIZE bsize) {
|
2013-08-12 22:54:13 +02:00
|
|
|
build_inter_predictors_for_planes(xd, bsize, mi_row, mi_col, 1,
|
|
|
|
MAX_MB_PLANE - 1);
|
2013-04-17 01:26:26 +02:00
|
|
|
}
|
2013-08-12 22:54:13 +02:00
|
|
|
void vp9_build_inter_predictors_sb(MACROBLOCKD *xd, int mi_row, int mi_col,
|
2013-08-26 20:33:16 +02:00
|
|
|
BLOCK_SIZE bsize) {
|
2013-08-12 22:54:13 +02:00
|
|
|
build_inter_predictors_for_planes(xd, bsize, mi_row, mi_col, 0,
|
|
|
|
MAX_MB_PLANE - 1);
|
2013-04-17 22:41:18 +02:00
|
|
|
}
|
2011-04-28 16:53:59 +02:00
|
|
|
|
2014-05-16 18:48:26 +02:00
|
|
|
void vp9_setup_dst_planes(struct macroblockd_plane planes[MAX_MB_PLANE],
|
2014-03-03 23:58:43 +01:00
|
|
|
const YV12_BUFFER_CONFIG *src,
|
|
|
|
int mi_row, int mi_col) {
|
|
|
|
uint8_t *const buffers[4] = {src->y_buffer, src->u_buffer, src->v_buffer,
|
|
|
|
src->alpha_buffer};
|
|
|
|
const int strides[4] = {src->y_stride, src->uv_stride, src->uv_stride,
|
|
|
|
src->alpha_stride};
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < MAX_MB_PLANE; ++i) {
|
2014-05-16 18:48:26 +02:00
|
|
|
struct macroblockd_plane *const pd = &planes[i];
|
2014-03-03 23:58:43 +01:00
|
|
|
setup_pred_plane(&pd->dst, buffers[i], strides[i], mi_row, mi_col, NULL,
|
|
|
|
pd->subsampling_x, pd->subsampling_y);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void vp9_setup_pre_planes(MACROBLOCKD *xd, int idx,
|
|
|
|
const YV12_BUFFER_CONFIG *src,
|
|
|
|
int mi_row, int mi_col,
|
|
|
|
const struct scale_factors *sf) {
|
|
|
|
if (src != NULL) {
|
|
|
|
int i;
|
|
|
|
uint8_t *const buffers[4] = {src->y_buffer, src->u_buffer, src->v_buffer,
|
|
|
|
src->alpha_buffer};
|
|
|
|
const int strides[4] = {src->y_stride, src->uv_stride, src->uv_stride,
|
|
|
|
src->alpha_stride};
|
|
|
|
|
|
|
|
for (i = 0; i < MAX_MB_PLANE; ++i) {
|
|
|
|
struct macroblockd_plane *const pd = &xd->plane[i];
|
|
|
|
setup_pred_plane(&pd->pre[idx], buffers[i], strides[i], mi_row, mi_col,
|
|
|
|
sf, pd->subsampling_x, pd->subsampling_y);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|