2011-10-05 14:26:00 +04:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2010 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <limits.h>
|
2013-05-09 01:12:37 +04:00
|
|
|
|
|
|
|
#include <vpx_mem/vpx_mem.h>
|
2012-11-28 01:59:17 +04:00
|
|
|
#include <vp9/encoder/vp9_encodeintra.h>
|
|
|
|
#include <vp9/encoder/vp9_rdopt.h>
|
|
|
|
#include <vp9/common/vp9_blockd.h>
|
|
|
|
#include <vp9/common/vp9_reconinter.h>
|
|
|
|
#include <vp9/common/vp9_systemdependent.h>
|
|
|
|
#include <vp9/encoder/vp9_segmentation.h>
|
2011-10-05 14:26:00 +04:00
|
|
|
|
2012-11-01 03:09:17 +04:00
|
|
|
static unsigned int do_16x16_motion_iteration(VP9_COMP *cpi,
|
|
|
|
int_mv *ref_mv,
|
Spatial resamping of ZEROMV predictors
This patch allows coding frames using references of different
resolution, in ZEROMV mode. For compound prediction, either
reference may be scaled.
To test, I use the resize_test and enable WRITE_RECON_BUFFER
in vp9_onyxd_if.c. It's also useful to apply this patch to
test/i420_video_source.h:
--- a/test/i420_video_source.h
+++ b/test/i420_video_source.h
@@ -93,6 +93,7 @@ class I420VideoSource : public VideoSource {
virtual void FillFrame() {
// Read a frame from input_file.
+ if (frame_ != 3)
if (fread(img_->img_data, raw_sz_, 1, input_file_) == 0) {
limit_ = frame_;
}
This forces the frame that the resolution changes on to be coded
with no motion, only scaling, and improves the quality of the
result.
Change-Id: I1ee75d19a437ff801192f767fd02a36bcbd1d496
2013-02-25 08:55:14 +04:00
|
|
|
int_mv *dst_mv,
|
|
|
|
int mb_row,
|
|
|
|
int mb_col) {
|
2012-07-14 02:21:29 +04:00
|
|
|
MACROBLOCK *const x = &cpi->mb;
|
|
|
|
MACROBLOCKD *const xd = &x->e_mbd;
|
2012-11-01 01:40:53 +04:00
|
|
|
vp9_variance_fn_ptr_t v_fn_ptr = cpi->fn_ptr[BLOCK_16X16];
|
2012-07-14 02:21:29 +04:00
|
|
|
unsigned int best_err;
|
2013-03-01 01:18:02 +04:00
|
|
|
|
2013-05-09 01:12:37 +04:00
|
|
|
const int tmp_col_min = x->mv_col_min;
|
|
|
|
const int tmp_col_max = x->mv_col_max;
|
|
|
|
const int tmp_row_min = x->mv_row_min;
|
|
|
|
const int tmp_row_max = x->mv_row_max;
|
2012-07-14 02:21:29 +04:00
|
|
|
int_mv ref_full;
|
|
|
|
|
|
|
|
// Further step/diamond searches as necessary
|
2013-03-01 01:18:02 +04:00
|
|
|
int step_param = cpi->sf.first_step +
|
2013-05-09 01:35:42 +04:00
|
|
|
(cpi->speed < 8 ? (cpi->speed > 5 ? 1 : 0) : 2);
|
2012-07-14 02:21:29 +04:00
|
|
|
|
2012-10-30 23:58:42 +04:00
|
|
|
vp9_clamp_mv_min_max(x, ref_mv);
|
2012-07-14 02:21:29 +04:00
|
|
|
|
|
|
|
ref_full.as_mv.col = ref_mv->as_mv.col >> 3;
|
|
|
|
ref_full.as_mv.row = ref_mv->as_mv.row >> 3;
|
|
|
|
|
|
|
|
/*cpi->sf.search_method == HEX*/
|
2013-05-09 01:12:37 +04:00
|
|
|
best_err = vp9_hex_search(x, &ref_full, dst_mv, step_param, x->errorperbit,
|
|
|
|
&v_fn_ptr, NULL, NULL, NULL, NULL, ref_mv);
|
2012-07-14 02:21:29 +04:00
|
|
|
|
|
|
|
// Try sub-pixel MC
|
|
|
|
// if (bestsme > error_thresh && bestsme < INT_MAX)
|
|
|
|
{
|
|
|
|
int distortion;
|
|
|
|
unsigned int sse;
|
2012-08-03 23:17:18 +04:00
|
|
|
best_err = cpi->find_fractional_mv_step(
|
2013-04-24 03:22:47 +04:00
|
|
|
x,
|
2012-08-03 23:17:18 +04:00
|
|
|
dst_mv, ref_mv,
|
|
|
|
x->errorperbit, &v_fn_ptr,
|
2012-11-09 03:44:39 +04:00
|
|
|
NULL, NULL,
|
2012-08-03 23:17:18 +04:00
|
|
|
& distortion, &sse);
|
2012-07-14 02:21:29 +04:00
|
|
|
}
|
2011-10-05 14:26:00 +04:00
|
|
|
|
2012-10-30 23:58:42 +04:00
|
|
|
vp9_set_mbmode_and_mvs(x, NEWMV, dst_mv);
|
2013-04-19 21:45:50 +04:00
|
|
|
vp9_build_inter_predictors_sby(xd, mb_row, mb_col, BLOCK_SIZE_MB16X16);
|
2013-04-24 03:22:47 +04:00
|
|
|
best_err = vp9_sad16x16(x->plane[0].src.buf, x->plane[0].src.stride,
|
2013-04-20 02:52:17 +04:00
|
|
|
xd->plane[0].dst.buf, xd->plane[0].dst.stride,
|
|
|
|
INT_MAX);
|
2011-10-05 14:26:00 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
/* restore UMV window */
|
|
|
|
x->mv_col_min = tmp_col_min;
|
|
|
|
x->mv_col_max = tmp_col_max;
|
|
|
|
x->mv_row_min = tmp_row_min;
|
|
|
|
x->mv_row_max = tmp_row_max;
|
2011-11-29 00:39:38 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
return best_err;
|
2011-10-05 14:26:00 +04:00
|
|
|
}
|
|
|
|
|
2013-05-09 01:12:37 +04:00
|
|
|
static int do_16x16_motion_search(VP9_COMP *cpi,
|
|
|
|
int_mv *ref_mv, int_mv *dst_mv,
|
|
|
|
int buf_mb_y_offset, int mb_y_offset,
|
|
|
|
int mb_row, int mb_col) {
|
|
|
|
MACROBLOCK *const x = &cpi->mb;
|
2012-07-14 02:21:29 +04:00
|
|
|
MACROBLOCKD *const xd = &x->e_mbd;
|
|
|
|
unsigned int err, tmp_err;
|
|
|
|
int_mv tmp_mv;
|
|
|
|
|
|
|
|
// Try zero MV first
|
|
|
|
// FIXME should really use something like near/nearest MV and/or MV prediction
|
2013-04-24 03:22:47 +04:00
|
|
|
err = vp9_sad16x16(x->plane[0].src.buf, x->plane[0].src.stride,
|
2013-04-20 06:16:14 +04:00
|
|
|
xd->plane[0].pre[0].buf, xd->plane[0].pre[0].stride,
|
|
|
|
INT_MAX);
|
2012-07-14 02:21:29 +04:00
|
|
|
dst_mv->as_int = 0;
|
|
|
|
|
|
|
|
// Test last reference frame using the previous best mv as the
|
|
|
|
// starting point (best reference) for the search
|
Spatial resamping of ZEROMV predictors
This patch allows coding frames using references of different
resolution, in ZEROMV mode. For compound prediction, either
reference may be scaled.
To test, I use the resize_test and enable WRITE_RECON_BUFFER
in vp9_onyxd_if.c. It's also useful to apply this patch to
test/i420_video_source.h:
--- a/test/i420_video_source.h
+++ b/test/i420_video_source.h
@@ -93,6 +93,7 @@ class I420VideoSource : public VideoSource {
virtual void FillFrame() {
// Read a frame from input_file.
+ if (frame_ != 3)
if (fread(img_->img_data, raw_sz_, 1, input_file_) == 0) {
limit_ = frame_;
}
This forces the frame that the resolution changes on to be coded
with no motion, only scaling, and improves the quality of the
result.
Change-Id: I1ee75d19a437ff801192f767fd02a36bcbd1d496
2013-02-25 08:55:14 +04:00
|
|
|
tmp_err = do_16x16_motion_iteration(cpi, ref_mv, &tmp_mv, mb_row, mb_col);
|
2012-07-14 02:21:29 +04:00
|
|
|
if (tmp_err < err) {
|
2013-05-09 01:12:37 +04:00
|
|
|
err = tmp_err;
|
2012-07-14 02:21:29 +04:00
|
|
|
dst_mv->as_int = tmp_mv.as_int;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the current best reference mv is not centred on 0,0 then do a 0,0 based search as well
|
|
|
|
if (ref_mv->as_int) {
|
2012-11-06 02:22:59 +04:00
|
|
|
unsigned int tmp_err;
|
2012-07-14 02:21:29 +04:00
|
|
|
int_mv zero_ref_mv, tmp_mv;
|
|
|
|
|
|
|
|
zero_ref_mv.as_int = 0;
|
Spatial resamping of ZEROMV predictors
This patch allows coding frames using references of different
resolution, in ZEROMV mode. For compound prediction, either
reference may be scaled.
To test, I use the resize_test and enable WRITE_RECON_BUFFER
in vp9_onyxd_if.c. It's also useful to apply this patch to
test/i420_video_source.h:
--- a/test/i420_video_source.h
+++ b/test/i420_video_source.h
@@ -93,6 +93,7 @@ class I420VideoSource : public VideoSource {
virtual void FillFrame() {
// Read a frame from input_file.
+ if (frame_ != 3)
if (fread(img_->img_data, raw_sz_, 1, input_file_) == 0) {
limit_ = frame_;
}
This forces the frame that the resolution changes on to be coded
with no motion, only scaling, and improves the quality of the
result.
Change-Id: I1ee75d19a437ff801192f767fd02a36bcbd1d496
2013-02-25 08:55:14 +04:00
|
|
|
tmp_err = do_16x16_motion_iteration(cpi, &zero_ref_mv, &tmp_mv,
|
|
|
|
mb_row, mb_col);
|
2012-07-14 02:21:29 +04:00
|
|
|
if (tmp_err < err) {
|
|
|
|
dst_mv->as_int = tmp_mv.as_int;
|
|
|
|
err = tmp_err;
|
2011-10-05 14:26:00 +04:00
|
|
|
}
|
2012-07-14 02:21:29 +04:00
|
|
|
}
|
2011-10-05 14:26:00 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
return err;
|
2011-10-05 14:26:00 +04:00
|
|
|
}
|
|
|
|
|
2013-05-09 01:12:37 +04:00
|
|
|
static int do_16x16_zerozero_search(VP9_COMP *cpi,
|
|
|
|
int_mv *dst_mv,
|
|
|
|
int buf_mb_y_offset, int mb_y_offset) {
|
|
|
|
MACROBLOCK *const x = &cpi->mb;
|
2012-07-14 02:21:29 +04:00
|
|
|
MACROBLOCKD *const xd = &x->e_mbd;
|
|
|
|
unsigned int err;
|
|
|
|
|
|
|
|
// Try zero MV first
|
|
|
|
// FIXME should really use something like near/nearest MV and/or MV prediction
|
2013-04-24 03:22:47 +04:00
|
|
|
err = vp9_sad16x16(x->plane[0].src.buf, x->plane[0].src.stride,
|
2013-04-20 06:16:14 +04:00
|
|
|
xd->plane[0].pre[0].buf, xd->plane[0].pre[0].stride,
|
|
|
|
INT_MAX);
|
2012-07-14 02:21:29 +04:00
|
|
|
|
|
|
|
dst_mv->as_int = 0;
|
|
|
|
|
|
|
|
return err;
|
2011-10-07 19:58:28 +04:00
|
|
|
}
|
2013-05-09 01:12:37 +04:00
|
|
|
static int find_best_16x16_intra(VP9_COMP *cpi,
|
|
|
|
int mb_y_offset,
|
|
|
|
MB_PREDICTION_MODE *pbest_mode) {
|
2012-07-14 02:21:29 +04:00
|
|
|
MACROBLOCK *const x = &cpi->mb;
|
|
|
|
MACROBLOCKD *const xd = &x->e_mbd;
|
|
|
|
MB_PREDICTION_MODE best_mode = -1, mode;
|
2012-11-06 02:22:59 +04:00
|
|
|
unsigned int best_err = INT_MAX;
|
2012-07-14 02:21:29 +04:00
|
|
|
|
|
|
|
// calculate SATD for each intra prediction mode;
|
|
|
|
// we're intentionally not doing 4x4, we just want a rough estimate
|
|
|
|
for (mode = DC_PRED; mode <= TM_PRED; mode++) {
|
|
|
|
unsigned int err;
|
2013-04-15 20:31:27 +04:00
|
|
|
const int bwl = b_width_log2(BLOCK_SIZE_MB16X16), bw = 4 << bwl;
|
|
|
|
const int bhl = b_height_log2(BLOCK_SIZE_MB16X16), bh = 4 << bhl;
|
2012-07-14 02:21:29 +04:00
|
|
|
|
|
|
|
xd->mode_info_context->mbmi.mode = mode;
|
2013-04-24 03:22:47 +04:00
|
|
|
vp9_build_intra_predictors(x->plane[0].src.buf, x->plane[0].src.stride,
|
2013-04-20 02:52:17 +04:00
|
|
|
xd->plane[0].dst.buf, xd->plane[0].dst.stride,
|
2013-04-15 20:31:27 +04:00
|
|
|
xd->mode_info_context->mbmi.mode,
|
|
|
|
bw, bh,
|
|
|
|
xd->up_available, xd->left_available,
|
|
|
|
xd->right_available);
|
2013-04-24 03:22:47 +04:00
|
|
|
err = vp9_sad16x16(x->plane[0].src.buf, x->plane[0].src.stride,
|
2013-04-20 02:52:17 +04:00
|
|
|
xd->plane[0].dst.buf, xd->plane[0].dst.stride, best_err);
|
2013-04-15 20:31:27 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
// find best
|
|
|
|
if (err < best_err) {
|
|
|
|
best_err = err;
|
|
|
|
best_mode = mode;
|
2011-10-05 14:26:00 +04:00
|
|
|
}
|
2012-07-14 02:21:29 +04:00
|
|
|
}
|
2011-10-05 14:26:00 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
if (pbest_mode)
|
|
|
|
*pbest_mode = best_mode;
|
2011-10-05 14:26:00 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
return best_err;
|
2011-10-05 14:26:00 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void update_mbgraph_mb_stats
|
|
|
|
(
|
2012-10-31 04:53:32 +04:00
|
|
|
VP9_COMP *cpi,
|
2012-07-14 02:21:29 +04:00
|
|
|
MBGRAPH_MB_STATS *stats,
|
|
|
|
YV12_BUFFER_CONFIG *buf,
|
|
|
|
int mb_y_offset,
|
|
|
|
YV12_BUFFER_CONFIG *golden_ref,
|
|
|
|
int_mv *prev_golden_ref_mv,
|
|
|
|
int gld_y_offset,
|
|
|
|
YV12_BUFFER_CONFIG *alt_ref,
|
|
|
|
int_mv *prev_alt_ref_mv,
|
Spatial resamping of ZEROMV predictors
This patch allows coding frames using references of different
resolution, in ZEROMV mode. For compound prediction, either
reference may be scaled.
To test, I use the resize_test and enable WRITE_RECON_BUFFER
in vp9_onyxd_if.c. It's also useful to apply this patch to
test/i420_video_source.h:
--- a/test/i420_video_source.h
+++ b/test/i420_video_source.h
@@ -93,6 +93,7 @@ class I420VideoSource : public VideoSource {
virtual void FillFrame() {
// Read a frame from input_file.
+ if (frame_ != 3)
if (fread(img_->img_data, raw_sz_, 1, input_file_) == 0) {
limit_ = frame_;
}
This forces the frame that the resolution changes on to be coded
with no motion, only scaling, and improves the quality of the
result.
Change-Id: I1ee75d19a437ff801192f767fd02a36bcbd1d496
2013-02-25 08:55:14 +04:00
|
|
|
int arf_y_offset,
|
|
|
|
int mb_row,
|
|
|
|
int mb_col
|
2012-07-14 02:21:29 +04:00
|
|
|
) {
|
2013-05-09 01:12:37 +04:00
|
|
|
MACROBLOCK *const x = &cpi->mb;
|
2012-07-14 02:21:29 +04:00
|
|
|
MACROBLOCKD *const xd = &x->e_mbd;
|
|
|
|
int intra_error;
|
2013-04-15 20:31:27 +04:00
|
|
|
VP9_COMMON *cm = &cpi->common;
|
2012-07-14 02:21:29 +04:00
|
|
|
|
|
|
|
// FIXME in practice we're completely ignoring chroma here
|
2013-04-24 03:22:47 +04:00
|
|
|
x->plane[0].src.buf = buf->y_buffer + mb_y_offset;
|
|
|
|
x->plane[0].src.stride = buf->y_stride;
|
2013-04-15 20:31:27 +04:00
|
|
|
|
2013-04-20 02:52:17 +04:00
|
|
|
xd->plane[0].dst.buf = cm->yv12_fb[cm->new_fb_idx].y_buffer + mb_y_offset;
|
|
|
|
xd->plane[0].dst.stride = cm->yv12_fb[cm->new_fb_idx].y_stride;
|
2012-07-14 02:21:29 +04:00
|
|
|
|
|
|
|
// do intra 16x16 prediction
|
2013-05-09 01:12:37 +04:00
|
|
|
intra_error = find_best_16x16_intra(cpi, mb_y_offset,
|
2013-04-15 20:31:27 +04:00
|
|
|
&stats->ref[INTRA_FRAME].m.mode);
|
2012-07-14 02:21:29 +04:00
|
|
|
if (intra_error <= 0)
|
|
|
|
intra_error = 1;
|
|
|
|
stats->ref[INTRA_FRAME].err = intra_error;
|
|
|
|
|
|
|
|
// Golden frame MV search, if it exists and is different than last frame
|
|
|
|
if (golden_ref) {
|
2013-04-15 20:31:27 +04:00
|
|
|
int g_motion_error;
|
2013-04-20 06:16:14 +04:00
|
|
|
xd->plane[0].pre[0].buf = golden_ref->y_buffer + mb_y_offset;
|
|
|
|
xd->plane[0].pre[0].stride = golden_ref->y_stride;
|
2013-05-09 01:12:37 +04:00
|
|
|
g_motion_error = do_16x16_motion_search(cpi,
|
|
|
|
prev_golden_ref_mv,
|
2013-04-15 20:31:27 +04:00
|
|
|
&stats->ref[GOLDEN_FRAME].m.mv,
|
2013-05-09 01:12:37 +04:00
|
|
|
mb_y_offset, gld_y_offset,
|
2013-04-15 20:31:27 +04:00
|
|
|
mb_row, mb_col);
|
2012-07-14 02:21:29 +04:00
|
|
|
stats->ref[GOLDEN_FRAME].err = g_motion_error;
|
|
|
|
} else {
|
|
|
|
stats->ref[GOLDEN_FRAME].err = INT_MAX;
|
|
|
|
stats->ref[GOLDEN_FRAME].m.mv.as_int = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Alt-ref frame MV search, if it exists and is different than last/golden frame
|
|
|
|
if (alt_ref) {
|
2013-04-15 20:31:27 +04:00
|
|
|
int a_motion_error;
|
2013-04-20 06:16:14 +04:00
|
|
|
xd->plane[0].pre[0].buf = alt_ref->y_buffer + mb_y_offset;
|
|
|
|
xd->plane[0].pre[0].stride = alt_ref->y_stride;
|
2013-04-15 20:31:27 +04:00
|
|
|
a_motion_error = do_16x16_zerozero_search(cpi,
|
|
|
|
&stats->ref[ALTREF_FRAME].m.mv,
|
2013-05-09 01:12:37 +04:00
|
|
|
mb_y_offset, arf_y_offset);
|
2012-07-14 02:21:29 +04:00
|
|
|
|
|
|
|
stats->ref[ALTREF_FRAME].err = a_motion_error;
|
|
|
|
} else {
|
|
|
|
stats->ref[ALTREF_FRAME].err = INT_MAX;
|
|
|
|
stats->ref[ALTREF_FRAME].m.mv.as_int = 0;
|
|
|
|
}
|
2011-10-05 14:26:00 +04:00
|
|
|
}
|
|
|
|
|
2013-05-09 01:12:37 +04:00
|
|
|
static void update_mbgraph_frame_stats(VP9_COMP *cpi,
|
|
|
|
MBGRAPH_FRAME_STATS *stats,
|
|
|
|
YV12_BUFFER_CONFIG *buf,
|
|
|
|
YV12_BUFFER_CONFIG *golden_ref,
|
|
|
|
YV12_BUFFER_CONFIG *alt_ref) {
|
|
|
|
MACROBLOCK *const x = &cpi->mb;
|
2012-07-14 02:21:29 +04:00
|
|
|
MACROBLOCKD *const xd = &x->e_mbd;
|
2013-05-09 01:12:37 +04:00
|
|
|
VP9_COMMON *const cm = &cpi->common;
|
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
int mb_col, mb_row, offset = 0;
|
|
|
|
int mb_y_offset = 0, arf_y_offset = 0, gld_y_offset = 0;
|
|
|
|
int_mv arf_top_mv, gld_top_mv;
|
|
|
|
MODE_INFO mi_local;
|
|
|
|
|
2013-02-09 05:49:44 +04:00
|
|
|
// Make sure the mi context starts in a consistent state.
|
|
|
|
memset(&mi_local, 0, sizeof(mi_local));
|
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
// Set up limit values for motion vectors to prevent them extending outside the UMV borders
|
|
|
|
arf_top_mv.as_int = 0;
|
|
|
|
gld_top_mv.as_int = 0;
|
2013-06-08 02:43:08 +04:00
|
|
|
x->mv_row_min = -(VP9BORDERINPIXELS - 8 - VP9_INTERP_EXTEND);
|
|
|
|
x->mv_row_max = (cm->mb_rows - 1) * 8 + VP9BORDERINPIXELS
|
|
|
|
- 8 - VP9_INTERP_EXTEND;
|
2012-07-14 02:21:29 +04:00
|
|
|
xd->up_available = 0;
|
2013-04-20 02:52:17 +04:00
|
|
|
xd->plane[0].dst.stride = buf->y_stride;
|
2013-04-20 06:16:14 +04:00
|
|
|
xd->plane[0].pre[0].stride = buf->y_stride;
|
2013-04-20 02:52:17 +04:00
|
|
|
xd->plane[1].dst.stride = buf->uv_stride;
|
2012-07-14 02:21:29 +04:00
|
|
|
xd->mode_info_context = &mi_local;
|
2013-06-07 21:20:03 +04:00
|
|
|
mi_local.mbmi.sb_type = BLOCK_SIZE_MB16X16;
|
|
|
|
mi_local.mbmi.ref_frame[0] = LAST_FRAME;
|
|
|
|
mi_local.mbmi.ref_frame[1] = NONE;
|
2012-07-14 02:21:29 +04:00
|
|
|
|
|
|
|
for (mb_row = 0; mb_row < cm->mb_rows; mb_row++) {
|
|
|
|
int_mv arf_left_mv, gld_left_mv;
|
|
|
|
int mb_y_in_offset = mb_y_offset;
|
|
|
|
int arf_y_in_offset = arf_y_offset;
|
|
|
|
int gld_y_in_offset = gld_y_offset;
|
2011-10-05 14:26:00 +04:00
|
|
|
|
|
|
|
// Set up limit values for motion vectors to prevent them extending outside the UMV borders
|
2012-07-14 02:21:29 +04:00
|
|
|
arf_left_mv.as_int = arf_top_mv.as_int;
|
|
|
|
gld_left_mv.as_int = gld_top_mv.as_int;
|
2013-06-08 02:43:08 +04:00
|
|
|
x->mv_col_min = -(VP9BORDERINPIXELS - 8 - VP9_INTERP_EXTEND);
|
|
|
|
x->mv_col_max = (cm->mb_cols - 1) * 8 + VP9BORDERINPIXELS
|
|
|
|
- 8 - VP9_INTERP_EXTEND;
|
2012-07-14 02:21:29 +04:00
|
|
|
xd->left_available = 0;
|
|
|
|
|
|
|
|
for (mb_col = 0; mb_col < cm->mb_cols; mb_col++) {
|
|
|
|
MBGRAPH_MB_STATS *mb_stats = &stats->mb_stats[offset + mb_col];
|
|
|
|
|
|
|
|
update_mbgraph_mb_stats(cpi, mb_stats, buf, mb_y_in_offset,
|
|
|
|
golden_ref, &gld_left_mv, gld_y_in_offset,
|
Spatial resamping of ZEROMV predictors
This patch allows coding frames using references of different
resolution, in ZEROMV mode. For compound prediction, either
reference may be scaled.
To test, I use the resize_test and enable WRITE_RECON_BUFFER
in vp9_onyxd_if.c. It's also useful to apply this patch to
test/i420_video_source.h:
--- a/test/i420_video_source.h
+++ b/test/i420_video_source.h
@@ -93,6 +93,7 @@ class I420VideoSource : public VideoSource {
virtual void FillFrame() {
// Read a frame from input_file.
+ if (frame_ != 3)
if (fread(img_->img_data, raw_sz_, 1, input_file_) == 0) {
limit_ = frame_;
}
This forces the frame that the resolution changes on to be coded
with no motion, only scaling, and improves the quality of the
result.
Change-Id: I1ee75d19a437ff801192f767fd02a36bcbd1d496
2013-02-25 08:55:14 +04:00
|
|
|
alt_ref, &arf_left_mv, arf_y_in_offset,
|
|
|
|
mb_row, mb_col);
|
2012-07-14 02:21:29 +04:00
|
|
|
arf_left_mv.as_int = mb_stats->ref[ALTREF_FRAME].m.mv.as_int;
|
|
|
|
gld_left_mv.as_int = mb_stats->ref[GOLDEN_FRAME].m.mv.as_int;
|
|
|
|
if (mb_col == 0) {
|
|
|
|
arf_top_mv.as_int = arf_left_mv.as_int;
|
|
|
|
gld_top_mv.as_int = gld_left_mv.as_int;
|
|
|
|
}
|
|
|
|
xd->left_available = 1;
|
|
|
|
mb_y_in_offset += 16;
|
|
|
|
gld_y_in_offset += 16;
|
|
|
|
arf_y_in_offset += 16;
|
|
|
|
x->mv_col_min -= 16;
|
|
|
|
x->mv_col_max -= 16;
|
2011-10-05 14:26:00 +04:00
|
|
|
}
|
2012-07-14 02:21:29 +04:00
|
|
|
xd->up_available = 1;
|
|
|
|
mb_y_offset += buf->y_stride * 16;
|
|
|
|
gld_y_offset += golden_ref->y_stride * 16;
|
|
|
|
if (alt_ref)
|
|
|
|
arf_y_offset += alt_ref->y_stride * 16;
|
|
|
|
x->mv_row_min -= 16;
|
|
|
|
x->mv_row_max -= 16;
|
|
|
|
offset += cm->mb_cols;
|
|
|
|
}
|
2011-10-05 14:26:00 +04:00
|
|
|
}
|
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
// void separate_arf_mbs_byzz
|
2012-10-31 04:53:32 +04:00
|
|
|
static void separate_arf_mbs(VP9_COMP *cpi) {
|
|
|
|
VP9_COMMON *const cm = &cpi->common;
|
2012-07-14 02:21:29 +04:00
|
|
|
int mb_col, mb_row, offset, i;
|
|
|
|
int ncnt[4];
|
|
|
|
int n_frames = cpi->mbgraph_n_frames;
|
|
|
|
|
|
|
|
int *arf_not_zz;
|
|
|
|
|
|
|
|
CHECK_MEM_ERROR(arf_not_zz,
|
|
|
|
vpx_calloc(cm->mb_rows * cm->mb_cols * sizeof(*arf_not_zz), 1));
|
|
|
|
|
|
|
|
// We are not interested in results beyond the alt ref itself.
|
|
|
|
if (n_frames > cpi->frames_till_gf_update_due)
|
|
|
|
n_frames = cpi->frames_till_gf_update_due;
|
|
|
|
|
|
|
|
// defer cost to reference frames
|
|
|
|
for (i = n_frames - 1; i >= 0; i--) {
|
|
|
|
MBGRAPH_FRAME_STATS *frame_stats = &cpi->mbgraph_stats[i];
|
2011-10-05 14:26:00 +04:00
|
|
|
|
|
|
|
for (offset = 0, mb_row = 0; mb_row < cm->mb_rows;
|
2012-07-14 02:21:29 +04:00
|
|
|
offset += cm->mb_cols, mb_row++) {
|
|
|
|
for (mb_col = 0; mb_col < cm->mb_cols; mb_col++) {
|
2013-05-09 01:12:37 +04:00
|
|
|
MBGRAPH_MB_STATS *mb_stats = &frame_stats->mb_stats[offset + mb_col];
|
2012-07-14 02:21:29 +04:00
|
|
|
|
|
|
|
int altref_err = mb_stats->ref[ALTREF_FRAME].err;
|
|
|
|
int intra_err = mb_stats->ref[INTRA_FRAME ].err;
|
|
|
|
int golden_err = mb_stats->ref[GOLDEN_FRAME].err;
|
|
|
|
|
|
|
|
// Test for altref vs intra and gf and that its mv was 0,0.
|
2013-05-09 01:12:37 +04:00
|
|
|
if (altref_err > 1000 ||
|
|
|
|
altref_err > intra_err ||
|
|
|
|
altref_err > golden_err) {
|
2012-07-14 02:21:29 +04:00
|
|
|
arf_not_zz[offset + mb_col]++;
|
2011-10-05 14:26:00 +04:00
|
|
|
}
|
2012-07-14 02:21:29 +04:00
|
|
|
}
|
2011-10-05 14:26:00 +04:00
|
|
|
}
|
2012-07-14 02:21:29 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
vpx_memset(ncnt, 0, sizeof(ncnt));
|
|
|
|
for (offset = 0, mb_row = 0; mb_row < cm->mb_rows;
|
|
|
|
offset += cm->mb_cols, mb_row++) {
|
|
|
|
for (mb_col = 0; mb_col < cm->mb_cols; mb_col++) {
|
|
|
|
// If any of the blocks in the sequence failed then the MB
|
|
|
|
// goes in segment 0
|
|
|
|
if (arf_not_zz[offset + mb_col]) {
|
|
|
|
ncnt[0]++;
|
2013-04-26 22:57:17 +04:00
|
|
|
cpi->segmentation_map[offset * 4 + 2 * mb_col] = 0;
|
|
|
|
cpi->segmentation_map[offset * 4 + 2 * mb_col + 1] = 0;
|
|
|
|
cpi->segmentation_map[offset * 4 + 2 * mb_col + cm->mi_cols] = 0;
|
|
|
|
cpi->segmentation_map[offset * 4 + 2 * mb_col + cm->mi_cols + 1] = 0;
|
|
|
|
} else {
|
|
|
|
cpi->segmentation_map[offset * 4 + 2 * mb_col] = 1;
|
|
|
|
cpi->segmentation_map[offset * 4 + 2 * mb_col + 1] = 1;
|
|
|
|
cpi->segmentation_map[offset * 4 + 2 * mb_col + cm->mi_cols] = 1;
|
|
|
|
cpi->segmentation_map[offset * 4 + 2 * mb_col + cm->mi_cols + 1] = 1;
|
|
|
|
ncnt[1]++;
|
2012-07-14 02:21:29 +04:00
|
|
|
}
|
2011-10-05 14:26:00 +04:00
|
|
|
}
|
2012-07-14 02:21:29 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Only bother with segmentation if over 10% of the MBs in static segment
|
|
|
|
// if ( ncnt[1] && (ncnt[0] / ncnt[1] < 10) )
|
|
|
|
if (1) {
|
|
|
|
// Note % of blocks that are marked as static
|
|
|
|
if (cm->MBs)
|
|
|
|
cpi->static_mb_pct = (ncnt[1] * 100) / cm->MBs;
|
|
|
|
|
|
|
|
// This error case should not be reachable as this function should
|
2013-03-07 00:02:15 +04:00
|
|
|
// never be called with the common data structure uninitialized.
|
2011-10-05 14:26:00 +04:00
|
|
|
else
|
2012-07-14 02:21:29 +04:00
|
|
|
cpi->static_mb_pct = 0;
|
|
|
|
|
|
|
|
cpi->seg0_cnt = ncnt[0];
|
2013-04-30 03:07:17 +04:00
|
|
|
vp9_enable_segmentation((VP9_PTR)cpi);
|
2012-07-14 02:21:29 +04:00
|
|
|
} else {
|
|
|
|
cpi->static_mb_pct = 0;
|
2013-04-30 03:07:17 +04:00
|
|
|
vp9_disable_segmentation((VP9_PTR)cpi);
|
2012-07-14 02:21:29 +04:00
|
|
|
}
|
2011-10-05 14:26:00 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
// Free localy allocated storage
|
|
|
|
vpx_free(arf_not_zz);
|
2011-10-05 14:26:00 +04:00
|
|
|
}
|
|
|
|
|
2013-03-01 01:18:02 +04:00
|
|
|
void vp9_update_mbgraph_stats(VP9_COMP *cpi) {
|
2012-10-31 04:53:32 +04:00
|
|
|
VP9_COMMON *const cm = &cpi->common;
|
2012-10-30 23:58:42 +04:00
|
|
|
int i, n_frames = vp9_lookahead_depth(cpi->lookahead);
|
2013-01-16 01:49:44 +04:00
|
|
|
YV12_BUFFER_CONFIG *golden_ref =
|
2013-02-22 23:22:03 +04:00
|
|
|
&cm->yv12_fb[cm->ref_frame_map[cpi->gld_fb_idx]];
|
2012-07-14 02:21:29 +04:00
|
|
|
|
|
|
|
// we need to look ahead beyond where the ARF transitions into
|
|
|
|
// being a GF - so exit if we don't look ahead beyond that
|
|
|
|
if (n_frames <= cpi->frames_till_gf_update_due)
|
|
|
|
return;
|
2012-11-06 02:22:59 +04:00
|
|
|
if (n_frames > (int)cpi->common.frames_till_alt_ref_frame)
|
2012-07-14 02:21:29 +04:00
|
|
|
n_frames = cpi->common.frames_till_alt_ref_frame;
|
|
|
|
if (n_frames > MAX_LAG_BUFFERS)
|
|
|
|
n_frames = MAX_LAG_BUFFERS;
|
|
|
|
|
|
|
|
cpi->mbgraph_n_frames = n_frames;
|
|
|
|
for (i = 0; i < n_frames; i++) {
|
|
|
|
MBGRAPH_FRAME_STATS *frame_stats = &cpi->mbgraph_stats[i];
|
|
|
|
vpx_memset(frame_stats->mb_stats, 0,
|
|
|
|
cm->mb_rows * cm->mb_cols * sizeof(*cpi->mbgraph_stats[i].mb_stats));
|
|
|
|
}
|
|
|
|
|
|
|
|
// do motion search to find contribution of each reference to data
|
|
|
|
// later on in this GF group
|
|
|
|
// FIXME really, the GF/last MC search should be done forward, and
|
|
|
|
// the ARF MC search backwards, to get optimal results for MV caching
|
|
|
|
for (i = 0; i < n_frames; i++) {
|
|
|
|
MBGRAPH_FRAME_STATS *frame_stats = &cpi->mbgraph_stats[i];
|
2013-05-09 01:12:37 +04:00
|
|
|
struct lookahead_entry *q_cur = vp9_lookahead_peek(cpi->lookahead, i);
|
2012-07-14 02:21:29 +04:00
|
|
|
|
|
|
|
assert(q_cur != NULL);
|
|
|
|
|
|
|
|
update_mbgraph_frame_stats(cpi, frame_stats, &q_cur->img,
|
|
|
|
golden_ref, cpi->Source);
|
|
|
|
}
|
|
|
|
|
2012-11-01 01:40:53 +04:00
|
|
|
vp9_clear_system_state(); // __asm emms;
|
2012-07-14 02:21:29 +04:00
|
|
|
|
|
|
|
separate_arf_mbs(cpi);
|
2011-10-05 14:26:00 +04:00
|
|
|
}
|