2010-05-18 19:58:33 +04:00
|
|
|
/*
|
2010-09-09 16:16:39 +04:00
|
|
|
* Copyright (c) 2010 The WebM project authors. All Rights Reserved.
|
2010-05-18 19:58:33 +04:00
|
|
|
*
|
2010-06-18 20:39:21 +04:00
|
|
|
* Use of this source code is governed by a BSD-style license
|
2010-06-05 00:19:40 +04: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 20:39:21 +04:00
|
|
|
* in the file PATENTS. All contributing project authors may
|
2010-06-05 00:19:40 +04:00
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
2010-05-18 19:58:33 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2012-11-28 01:59:17 +04:00
|
|
|
#include "vp9/encoder/vp9_onyx_int.h"
|
2012-11-28 22:41:40 +04:00
|
|
|
#include "vp9/encoder/vp9_mcomp.h"
|
2010-05-18 19:58:33 +04:00
|
|
|
#include "vpx_mem/vpx_mem.h"
|
2012-12-23 19:20:10 +04:00
|
|
|
#include "./vpx_config.h"
|
2010-05-18 19:58:33 +04:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <limits.h>
|
|
|
|
#include <math.h>
|
2012-11-28 01:59:17 +04:00
|
|
|
#include "vp9/common/vp9_findnearmv.h"
|
2013-01-06 06:20:25 +04:00
|
|
|
#include "vp9/common/vp9_common.h"
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-10-30 23:58:42 +04:00
|
|
|
void vp9_clamp_mv_min_max(MACROBLOCK *x, int_mv *ref_mv) {
|
2012-08-08 02:29:16 +04:00
|
|
|
int col_min = (ref_mv->as_mv.col >> 3) - MAX_FULL_PEL_VAL +
|
|
|
|
((ref_mv->as_mv.col & 7) ? 1 : 0);
|
|
|
|
int row_min = (ref_mv->as_mv.row >> 3) - MAX_FULL_PEL_VAL +
|
|
|
|
((ref_mv->as_mv.row & 7) ? 1 : 0);
|
|
|
|
int col_max = (ref_mv->as_mv.col >> 3) + MAX_FULL_PEL_VAL;
|
|
|
|
int row_max = (ref_mv->as_mv.row >> 3) + MAX_FULL_PEL_VAL;
|
|
|
|
|
|
|
|
/* Get intersection of UMV window and valid MV window to reduce # of checks in diamond search. */
|
|
|
|
if (x->mv_col_min < col_min)
|
|
|
|
x->mv_col_min = col_min;
|
|
|
|
if (x->mv_col_max > col_max)
|
|
|
|
x->mv_col_max = col_max;
|
|
|
|
if (x->mv_row_min < row_min)
|
|
|
|
x->mv_row_min = row_min;
|
|
|
|
if (x->mv_row_max > row_max)
|
|
|
|
x->mv_row_max = row_max;
|
|
|
|
}
|
|
|
|
|
2012-11-09 03:44:39 +04:00
|
|
|
int vp9_mv_bit_cost(int_mv *mv, int_mv *ref, int *mvjcost, int *mvcost[2],
|
2012-08-03 23:17:18 +04:00
|
|
|
int Weight, int ishp) {
|
2012-07-27 00:42:07 +04:00
|
|
|
MV v;
|
|
|
|
v.row = (mv->as_mv.row - ref->as_mv.row);
|
|
|
|
v.col = (mv->as_mv.col - ref->as_mv.col);
|
2012-10-31 03:25:53 +04:00
|
|
|
return ((mvjcost[vp9_get_mv_joint(v)] +
|
2012-07-27 00:42:07 +04:00
|
|
|
mvcost[0][v.row] + mvcost[1][v.col]) *
|
|
|
|
Weight) >> 7;
|
2010-05-18 19:58:33 +04:00
|
|
|
}
|
|
|
|
|
2012-11-09 03:44:39 +04:00
|
|
|
static int mv_err_cost(int_mv *mv, int_mv *ref, int *mvjcost, int *mvcost[2],
|
2012-08-03 23:17:18 +04:00
|
|
|
int error_per_bit, int ishp) {
|
2012-07-27 00:42:07 +04:00
|
|
|
if (mvcost) {
|
|
|
|
MV v;
|
|
|
|
v.row = (mv->as_mv.row - ref->as_mv.row);
|
|
|
|
v.col = (mv->as_mv.col - ref->as_mv.col);
|
2012-10-31 03:25:53 +04:00
|
|
|
return ((mvjcost[vp9_get_mv_joint(v)] +
|
2012-07-27 00:42:07 +04:00
|
|
|
mvcost[0][v.row] + mvcost[1][v.col]) *
|
|
|
|
error_per_bit + 128) >> 8;
|
|
|
|
}
|
2012-07-14 02:21:29 +04:00
|
|
|
return 0;
|
2012-02-27 22:22:38 +04:00
|
|
|
}
|
|
|
|
|
2012-11-09 03:44:39 +04:00
|
|
|
static int mvsad_err_cost(int_mv *mv, int_mv *ref, int *mvjsadcost,
|
|
|
|
int *mvsadcost[2], int error_per_bit) {
|
2012-07-27 00:42:07 +04:00
|
|
|
|
|
|
|
if (mvsadcost) {
|
|
|
|
MV v;
|
|
|
|
v.row = (mv->as_mv.row - ref->as_mv.row);
|
|
|
|
v.col = (mv->as_mv.col - ref->as_mv.col);
|
2012-10-31 03:25:53 +04:00
|
|
|
return ((mvjsadcost[vp9_get_mv_joint(v)] +
|
2012-07-27 00:42:07 +04:00
|
|
|
mvsadcost[0][v.row] + mvsadcost[1][v.col]) *
|
|
|
|
error_per_bit + 128) >> 8;
|
|
|
|
}
|
2012-07-14 02:21:29 +04:00
|
|
|
return 0;
|
2010-05-18 19:58:33 +04:00
|
|
|
}
|
|
|
|
|
2012-10-30 23:58:42 +04:00
|
|
|
void vp9_init_dsmotion_compensation(MACROBLOCK *x, int stride) {
|
2012-07-14 02:21:29 +04:00
|
|
|
int Len;
|
|
|
|
int search_site_count = 0;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
// Generate offsets for 4 search sites per step.
|
|
|
|
Len = MAX_FIRST_STEP;
|
|
|
|
x->ss[search_site_count].mv.col = 0;
|
|
|
|
x->ss[search_site_count].mv.row = 0;
|
|
|
|
x->ss[search_site_count].offset = 0;
|
|
|
|
search_site_count++;
|
|
|
|
|
|
|
|
while (Len > 0) {
|
|
|
|
|
|
|
|
// Compute offsets for search sites.
|
|
|
|
x->ss[search_site_count].mv.col = 0;
|
|
|
|
x->ss[search_site_count].mv.row = -Len;
|
|
|
|
x->ss[search_site_count].offset = -Len * stride;
|
|
|
|
search_site_count++;
|
|
|
|
|
|
|
|
// Compute offsets for search sites.
|
2010-05-18 19:58:33 +04:00
|
|
|
x->ss[search_site_count].mv.col = 0;
|
2012-07-14 02:21:29 +04:00
|
|
|
x->ss[search_site_count].mv.row = Len;
|
|
|
|
x->ss[search_site_count].offset = Len * stride;
|
|
|
|
search_site_count++;
|
|
|
|
|
|
|
|
// Compute offsets for search sites.
|
|
|
|
x->ss[search_site_count].mv.col = -Len;
|
2010-05-18 19:58:33 +04:00
|
|
|
x->ss[search_site_count].mv.row = 0;
|
2012-07-14 02:21:29 +04:00
|
|
|
x->ss[search_site_count].offset = -Len;
|
2010-05-18 19:58:33 +04:00
|
|
|
search_site_count++;
|
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
// Compute offsets for search sites.
|
|
|
|
x->ss[search_site_count].mv.col = Len;
|
|
|
|
x->ss[search_site_count].mv.row = 0;
|
|
|
|
x->ss[search_site_count].offset = Len;
|
|
|
|
search_site_count++;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
// Contract.
|
|
|
|
Len /= 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
x->ss_count = search_site_count;
|
|
|
|
x->searches_per_step = 4;
|
2010-05-18 19:58:33 +04:00
|
|
|
}
|
|
|
|
|
2012-10-30 23:58:42 +04:00
|
|
|
void vp9_init3smotion_compensation(MACROBLOCK *x, int stride) {
|
2012-07-14 02:21:29 +04:00
|
|
|
int Len;
|
|
|
|
int search_site_count = 0;
|
|
|
|
|
|
|
|
// Generate offsets for 8 search sites per step.
|
|
|
|
Len = MAX_FIRST_STEP;
|
|
|
|
x->ss[search_site_count].mv.col = 0;
|
|
|
|
x->ss[search_site_count].mv.row = 0;
|
|
|
|
x->ss[search_site_count].offset = 0;
|
|
|
|
search_site_count++;
|
|
|
|
|
|
|
|
while (Len > 0) {
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
// Compute offsets for search sites.
|
2010-05-18 19:58:33 +04:00
|
|
|
x->ss[search_site_count].mv.col = 0;
|
2012-07-14 02:21:29 +04:00
|
|
|
x->ss[search_site_count].mv.row = -Len;
|
|
|
|
x->ss[search_site_count].offset = -Len * stride;
|
|
|
|
search_site_count++;
|
|
|
|
|
|
|
|
// Compute offsets for search sites.
|
|
|
|
x->ss[search_site_count].mv.col = 0;
|
|
|
|
x->ss[search_site_count].mv.row = Len;
|
|
|
|
x->ss[search_site_count].offset = Len * stride;
|
|
|
|
search_site_count++;
|
|
|
|
|
|
|
|
// Compute offsets for search sites.
|
|
|
|
x->ss[search_site_count].mv.col = -Len;
|
2010-05-18 19:58:33 +04:00
|
|
|
x->ss[search_site_count].mv.row = 0;
|
2012-07-14 02:21:29 +04:00
|
|
|
x->ss[search_site_count].offset = -Len;
|
2010-05-18 19:58:33 +04:00
|
|
|
search_site_count++;
|
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
// Compute offsets for search sites.
|
|
|
|
x->ss[search_site_count].mv.col = Len;
|
|
|
|
x->ss[search_site_count].mv.row = 0;
|
|
|
|
x->ss[search_site_count].offset = Len;
|
|
|
|
search_site_count++;
|
|
|
|
|
|
|
|
// Compute offsets for search sites.
|
|
|
|
x->ss[search_site_count].mv.col = -Len;
|
|
|
|
x->ss[search_site_count].mv.row = -Len;
|
|
|
|
x->ss[search_site_count].offset = -Len * stride - Len;
|
|
|
|
search_site_count++;
|
|
|
|
|
|
|
|
// Compute offsets for search sites.
|
|
|
|
x->ss[search_site_count].mv.col = Len;
|
|
|
|
x->ss[search_site_count].mv.row = -Len;
|
|
|
|
x->ss[search_site_count].offset = -Len * stride + Len;
|
|
|
|
search_site_count++;
|
|
|
|
|
|
|
|
// Compute offsets for search sites.
|
|
|
|
x->ss[search_site_count].mv.col = -Len;
|
|
|
|
x->ss[search_site_count].mv.row = Len;
|
|
|
|
x->ss[search_site_count].offset = Len * stride - Len;
|
|
|
|
search_site_count++;
|
|
|
|
|
|
|
|
// Compute offsets for search sites.
|
|
|
|
x->ss[search_site_count].mv.col = Len;
|
|
|
|
x->ss[search_site_count].mv.row = Len;
|
|
|
|
x->ss[search_site_count].offset = Len * stride + Len;
|
|
|
|
search_site_count++;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
// Contract.
|
|
|
|
Len /= 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
x->ss_count = search_site_count;
|
|
|
|
x->searches_per_step = 8;
|
2010-05-18 19:58:33 +04:00
|
|
|
}
|
|
|
|
|
2011-06-28 17:14:13 +04:00
|
|
|
/*
|
|
|
|
* To avoid the penalty for crossing cache-line read, preload the reference
|
|
|
|
* area in a small buffer, which is aligned to make sure there won't be crossing
|
|
|
|
* cache-line read while reading from this buffer. This reduced the cpu
|
|
|
|
* cycles spent on reading ref data in sub-pixel filter functions.
|
|
|
|
* TODO: Currently, since sub-pixel search range here is -3 ~ 3, copy 22 rows x
|
|
|
|
* 32 cols area that is enough for 16x16 macroblock. Later, for SPLITMV, we
|
|
|
|
* could reduce the area.
|
|
|
|
*/
|
2012-02-16 21:29:54 +04:00
|
|
|
|
2012-07-27 00:42:07 +04:00
|
|
|
/* estimated cost of a motion vector (r,c) */
|
2012-10-22 23:19:00 +04:00
|
|
|
#define MVC(r, c) \
|
|
|
|
(mvcost ? \
|
|
|
|
((mvjcost[((r) != rr) * 2 + ((c) != rc)] + \
|
|
|
|
mvcost[0][((r) - rr)] + mvcost[1][((c) - rc)]) * \
|
|
|
|
error_per_bit + 128) >> 8 : 0)
|
2012-07-27 00:42:07 +04:00
|
|
|
|
2012-10-22 23:19:00 +04:00
|
|
|
#define SP(x) (((x) & 7) << 1) // convert motion vector component to offset
|
|
|
|
// for svf calc
|
2012-07-27 00:42:07 +04:00
|
|
|
|
2012-10-22 23:19:00 +04:00
|
|
|
#define IFMVCV(r, c, s, e) \
|
|
|
|
if (c >= minc && c <= maxc && r >= minr && r <= maxr) \
|
|
|
|
s \
|
|
|
|
else \
|
|
|
|
e;
|
2012-07-27 00:42:07 +04:00
|
|
|
|
|
|
|
/* pointer to predictor base of a motionvector */
|
2012-10-22 23:19:00 +04:00
|
|
|
#define PRE(r, c) (y + (((r) >> 3) * y_stride + ((c) >> 3) -(offset)))
|
2012-02-27 22:22:38 +04:00
|
|
|
|
2012-07-27 00:42:07 +04:00
|
|
|
/* returns subpixel variance error function */
|
2012-10-22 23:19:00 +04:00
|
|
|
#define DIST(r, c) \
|
|
|
|
vfp->svf(PRE(r, c), y_stride, SP(c), SP(r), z, b->src_stride, &sse)
|
|
|
|
|
|
|
|
/* checks if (r, c) has better score than previous best */
|
|
|
|
#define CHECK_BETTER(v, r, c) \
|
|
|
|
IFMVCV(r, c, { \
|
|
|
|
thismse = (DIST(r, c)); \
|
|
|
|
if ((v = MVC(r, c) + thismse) < besterr) { \
|
|
|
|
besterr = v; \
|
|
|
|
br = r; \
|
|
|
|
bc = c; \
|
|
|
|
*distortion = thismse; \
|
|
|
|
*sse1 = sse; \
|
|
|
|
} \
|
|
|
|
}, \
|
|
|
|
v = INT_MAX;)
|
2012-02-16 21:29:54 +04:00
|
|
|
|
2012-10-30 23:58:42 +04:00
|
|
|
int vp9_find_best_sub_pixel_step_iteratively(MACROBLOCK *x, BLOCK *b, BLOCKD *d,
|
2011-05-12 18:50:16 +04:00
|
|
|
int_mv *bestmv, int_mv *ref_mv,
|
|
|
|
int error_per_bit,
|
2012-11-01 01:40:53 +04:00
|
|
|
const vp9_variance_fn_ptr_t *vfp,
|
2012-11-09 03:44:39 +04:00
|
|
|
int *mvjcost, int *mvcost[2],
|
2012-07-27 00:42:07 +04:00
|
|
|
int *distortion,
|
2012-07-14 02:21:29 +04:00
|
|
|
unsigned int *sse1) {
|
2012-12-19 03:31:19 +04:00
|
|
|
uint8_t *z = (*(b->base_src) + b->src);
|
2012-07-14 02:21:29 +04:00
|
|
|
MACROBLOCKD *xd = &x->e_mbd;
|
|
|
|
|
|
|
|
int rr, rc, br, bc, hstep;
|
|
|
|
int tr, tc;
|
|
|
|
unsigned int besterr = INT_MAX;
|
|
|
|
unsigned int left, right, up, down, diag;
|
|
|
|
unsigned int sse;
|
|
|
|
unsigned int whichdir;
|
|
|
|
unsigned int halfiters = 4;
|
|
|
|
unsigned int quarteriters = 4;
|
|
|
|
unsigned int eighthiters = 4;
|
|
|
|
int thismse;
|
|
|
|
int maxc, minc, maxr, minr;
|
|
|
|
int y_stride;
|
|
|
|
int offset;
|
2012-09-06 20:07:42 +04:00
|
|
|
int usehp = xd->allow_high_precision_mv;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-12-19 03:31:19 +04:00
|
|
|
uint8_t *y = *(d->base_pre) + d->pre +
|
|
|
|
(bestmv->as_mv.row) * d->pre_stride + bestmv->as_mv.col;
|
2012-07-14 02:21:29 +04:00
|
|
|
y_stride = d->pre_stride;
|
2012-02-29 05:44:19 +04:00
|
|
|
|
2012-07-27 00:42:07 +04:00
|
|
|
rr = ref_mv->as_mv.row;
|
|
|
|
rc = ref_mv->as_mv.col;
|
|
|
|
br = bestmv->as_mv.row << 3;
|
|
|
|
bc = bestmv->as_mv.col << 3;
|
|
|
|
hstep = 4;
|
|
|
|
minc = MAX(x->mv_col_min << 3, (ref_mv->as_mv.col) - ((1 << MV_MAX_BITS) - 1));
|
|
|
|
maxc = MIN(x->mv_col_max << 3, (ref_mv->as_mv.col) + ((1 << MV_MAX_BITS) - 1));
|
|
|
|
minr = MAX(x->mv_row_min << 3, (ref_mv->as_mv.row) - ((1 << MV_MAX_BITS) - 1));
|
|
|
|
maxr = MIN(x->mv_row_max << 3, (ref_mv->as_mv.row) + ((1 << MV_MAX_BITS) - 1));
|
2012-07-14 02:21:29 +04:00
|
|
|
|
|
|
|
tr = br;
|
|
|
|
tc = bc;
|
|
|
|
|
|
|
|
|
|
|
|
offset = (bestmv->as_mv.row) * y_stride + bestmv->as_mv.col;
|
|
|
|
|
|
|
|
// central mv
|
|
|
|
bestmv->as_mv.row <<= 3;
|
|
|
|
bestmv->as_mv.col <<= 3;
|
|
|
|
|
|
|
|
// calculate central point error
|
|
|
|
besterr = vfp->vf(y, y_stride, z, b->src_stride, sse1);
|
|
|
|
*distortion = besterr;
|
2012-11-09 03:44:39 +04:00
|
|
|
besterr += mv_err_cost(bestmv, ref_mv, mvjcost, mvcost,
|
2012-07-27 00:42:07 +04:00
|
|
|
error_per_bit, xd->allow_high_precision_mv);
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-08-03 23:17:18 +04:00
|
|
|
// TODO: Each subsequent iteration checks at least one point in
|
|
|
|
// common with the last iteration could be 2 ( if diag selected)
|
2012-07-14 02:21:29 +04:00
|
|
|
while (--halfiters) {
|
|
|
|
// 1/2 pel
|
|
|
|
CHECK_BETTER(left, tr, tc - hstep);
|
|
|
|
CHECK_BETTER(right, tr, tc + hstep);
|
|
|
|
CHECK_BETTER(up, tr - hstep, tc);
|
|
|
|
CHECK_BETTER(down, tr + hstep, tc);
|
2011-06-28 17:14:13 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
whichdir = (left < right ? 0 : 1) + (up < down ? 0 : 2);
|
2011-06-28 17:14:13 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
switch (whichdir) {
|
|
|
|
case 0:
|
|
|
|
CHECK_BETTER(diag, tr - hstep, tc - hstep);
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
CHECK_BETTER(diag, tr - hstep, tc + hstep);
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
CHECK_BETTER(diag, tr + hstep, tc - hstep);
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
CHECK_BETTER(diag, tr + hstep, tc + hstep);
|
|
|
|
break;
|
|
|
|
}
|
2011-06-28 17:14:13 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
// no reason to check the same one again.
|
|
|
|
if (tr == br && tc == bc)
|
|
|
|
break;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
tr = br;
|
|
|
|
tc = bc;
|
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-08-03 23:17:18 +04:00
|
|
|
// TODO: Each subsequent iteration checks at least one point in common with
|
|
|
|
// the last iteration could be 2 ( if diag selected) 1/4 pel
|
2012-07-14 02:21:29 +04:00
|
|
|
hstep >>= 1;
|
|
|
|
while (--quarteriters) {
|
|
|
|
CHECK_BETTER(left, tr, tc - hstep);
|
|
|
|
CHECK_BETTER(right, tr, tc + hstep);
|
|
|
|
CHECK_BETTER(up, tr - hstep, tc);
|
|
|
|
CHECK_BETTER(down, tr + hstep, tc);
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
whichdir = (left < right ? 0 : 1) + (up < down ? 0 : 2);
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
switch (whichdir) {
|
|
|
|
case 0:
|
|
|
|
CHECK_BETTER(diag, tr - hstep, tc - hstep);
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
CHECK_BETTER(diag, tr - hstep, tc + hstep);
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
CHECK_BETTER(diag, tr + hstep, tc - hstep);
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
CHECK_BETTER(diag, tr + hstep, tc + hstep);
|
|
|
|
break;
|
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
// no reason to check the same one again.
|
|
|
|
if (tr == br && tc == bc)
|
|
|
|
break;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
tr = br;
|
|
|
|
tc = bc;
|
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-09-06 20:07:42 +04:00
|
|
|
if (xd->allow_high_precision_mv) {
|
2012-10-31 03:25:53 +04:00
|
|
|
usehp = vp9_use_nmv_hp(&ref_mv->as_mv);
|
2012-09-06 20:07:42 +04:00
|
|
|
} else {
|
|
|
|
usehp = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (usehp) {
|
2012-02-16 21:29:54 +04:00
|
|
|
hstep >>= 1;
|
2012-07-14 02:21:29 +04:00
|
|
|
while (--eighthiters) {
|
|
|
|
CHECK_BETTER(left, tr, tc - hstep);
|
|
|
|
CHECK_BETTER(right, tr, tc + hstep);
|
|
|
|
CHECK_BETTER(up, tr - hstep, tc);
|
|
|
|
CHECK_BETTER(down, tr + hstep, tc);
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
whichdir = (left < right ? 0 : 1) + (up < down ? 0 : 2);
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
switch (whichdir) {
|
2010-05-18 19:58:33 +04:00
|
|
|
case 0:
|
2012-07-14 02:21:29 +04:00
|
|
|
CHECK_BETTER(diag, tr - hstep, tc - hstep);
|
|
|
|
break;
|
2010-05-18 19:58:33 +04:00
|
|
|
case 1:
|
2012-07-14 02:21:29 +04:00
|
|
|
CHECK_BETTER(diag, tr - hstep, tc + hstep);
|
|
|
|
break;
|
2010-05-18 19:58:33 +04:00
|
|
|
case 2:
|
2012-07-14 02:21:29 +04:00
|
|
|
CHECK_BETTER(diag, tr + hstep, tc - hstep);
|
|
|
|
break;
|
2010-05-18 19:58:33 +04:00
|
|
|
case 3:
|
2012-07-14 02:21:29 +04:00
|
|
|
CHECK_BETTER(diag, tr + hstep, tc + hstep);
|
|
|
|
break;
|
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
// no reason to check the same one again.
|
|
|
|
if (tr == br && tc == bc)
|
|
|
|
break;
|
2012-02-16 21:29:54 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
tr = br;
|
|
|
|
tc = bc;
|
2012-02-16 21:29:54 +04:00
|
|
|
}
|
2012-07-14 02:21:29 +04:00
|
|
|
}
|
2012-07-27 00:42:07 +04:00
|
|
|
bestmv->as_mv.row = br;
|
|
|
|
bestmv->as_mv.col = bc;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
if ((abs(bestmv->as_mv.col - ref_mv->as_mv.col) > (MAX_FULL_PEL_VAL << 3)) ||
|
|
|
|
(abs(bestmv->as_mv.row - ref_mv->as_mv.row) > (MAX_FULL_PEL_VAL << 3)))
|
|
|
|
return INT_MAX;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
return besterr;
|
2010-05-18 19:58:33 +04:00
|
|
|
}
|
|
|
|
#undef MVC
|
|
|
|
#undef PRE
|
|
|
|
#undef DIST
|
2011-06-28 17:14:13 +04:00
|
|
|
#undef IFMVCV
|
2010-05-18 19:58:33 +04:00
|
|
|
#undef CHECK_BETTER
|
|
|
|
#undef MIN
|
|
|
|
#undef MAX
|
2012-02-16 21:29:54 +04:00
|
|
|
|
2012-10-30 23:58:42 +04:00
|
|
|
int vp9_find_best_sub_pixel_step(MACROBLOCK *x, BLOCK *b, BLOCKD *d,
|
2011-05-12 18:50:16 +04:00
|
|
|
int_mv *bestmv, int_mv *ref_mv,
|
|
|
|
int error_per_bit,
|
2012-11-01 01:40:53 +04:00
|
|
|
const vp9_variance_fn_ptr_t *vfp,
|
2012-11-09 03:44:39 +04:00
|
|
|
int *mvjcost, int *mvcost[2], int *distortion,
|
2012-07-14 02:21:29 +04:00
|
|
|
unsigned int *sse1) {
|
|
|
|
int bestmse = INT_MAX;
|
|
|
|
int_mv startmv;
|
|
|
|
int_mv this_mv;
|
|
|
|
int_mv orig_mv;
|
|
|
|
int yrow_movedback = 0, ycol_movedback = 0;
|
2012-12-19 03:31:19 +04:00
|
|
|
uint8_t *z = (*(b->base_src) + b->src);
|
2012-07-14 02:21:29 +04:00
|
|
|
int left, right, up, down, diag;
|
|
|
|
unsigned int sse;
|
|
|
|
int whichdir;
|
|
|
|
int thismse;
|
|
|
|
int y_stride;
|
|
|
|
MACROBLOCKD *xd = &x->e_mbd;
|
2012-09-06 20:07:42 +04:00
|
|
|
int usehp = xd->allow_high_precision_mv;
|
2011-07-23 00:01:11 +04:00
|
|
|
|
2012-12-19 03:31:19 +04:00
|
|
|
uint8_t *y = *(d->base_pre) + d->pre +
|
|
|
|
(bestmv->as_mv.row) * d->pre_stride + bestmv->as_mv.col;
|
2012-07-14 02:21:29 +04:00
|
|
|
y_stride = d->pre_stride;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
// central mv
|
|
|
|
bestmv->as_mv.row <<= 3;
|
|
|
|
bestmv->as_mv.col <<= 3;
|
|
|
|
startmv = *bestmv;
|
|
|
|
orig_mv = *bestmv;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
// calculate central point error
|
|
|
|
bestmse = vfp->vf(y, y_stride, z, b->src_stride, sse1);
|
|
|
|
*distortion = bestmse;
|
2012-11-09 03:44:39 +04:00
|
|
|
bestmse += mv_err_cost(bestmv, ref_mv, mvjcost, mvcost, error_per_bit,
|
2012-08-03 23:17:18 +04:00
|
|
|
xd->allow_high_precision_mv);
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
// go left then right and check error
|
|
|
|
this_mv.as_mv.row = startmv.as_mv.row;
|
|
|
|
this_mv.as_mv.col = ((startmv.as_mv.col - 8) | 4);
|
|
|
|
thismse = vfp->svf_halfpix_h(y - 1, y_stride, z, b->src_stride, &sse);
|
2012-11-09 03:44:39 +04:00
|
|
|
left = thismse + mv_err_cost(&this_mv, ref_mv, mvjcost, mvcost, error_per_bit,
|
2012-08-03 23:17:18 +04:00
|
|
|
xd->allow_high_precision_mv);
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
if (left < bestmse) {
|
|
|
|
*bestmv = this_mv;
|
|
|
|
bestmse = left;
|
|
|
|
*distortion = thismse;
|
|
|
|
*sse1 = sse;
|
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
this_mv.as_mv.col += 8;
|
|
|
|
thismse = vfp->svf_halfpix_h(y, y_stride, z, b->src_stride, &sse);
|
2012-11-09 03:44:39 +04:00
|
|
|
right = thismse + mv_err_cost(&this_mv, ref_mv, mvjcost, mvcost,
|
|
|
|
error_per_bit, xd->allow_high_precision_mv);
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
if (right < bestmse) {
|
|
|
|
*bestmv = this_mv;
|
|
|
|
bestmse = right;
|
|
|
|
*distortion = thismse;
|
|
|
|
*sse1 = sse;
|
|
|
|
}
|
|
|
|
|
|
|
|
// go up then down and check error
|
|
|
|
this_mv.as_mv.col = startmv.as_mv.col;
|
|
|
|
this_mv.as_mv.row = ((startmv.as_mv.row - 8) | 4);
|
|
|
|
thismse = vfp->svf_halfpix_v(y - y_stride, y_stride, z, b->src_stride, &sse);
|
2012-11-09 03:44:39 +04:00
|
|
|
up = thismse + mv_err_cost(&this_mv, ref_mv, mvjcost, mvcost, error_per_bit,
|
2012-08-03 23:17:18 +04:00
|
|
|
xd->allow_high_precision_mv);
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
if (up < bestmse) {
|
|
|
|
*bestmv = this_mv;
|
|
|
|
bestmse = up;
|
|
|
|
*distortion = thismse;
|
|
|
|
*sse1 = sse;
|
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
this_mv.as_mv.row += 8;
|
|
|
|
thismse = vfp->svf_halfpix_v(y, y_stride, z, b->src_stride, &sse);
|
2012-11-09 03:44:39 +04:00
|
|
|
down = thismse + mv_err_cost(&this_mv, ref_mv, mvjcost, mvcost, error_per_bit,
|
2012-08-03 23:17:18 +04:00
|
|
|
xd->allow_high_precision_mv);
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
if (down < bestmse) {
|
|
|
|
*bestmv = this_mv;
|
|
|
|
bestmse = down;
|
|
|
|
*distortion = thismse;
|
|
|
|
*sse1 = sse;
|
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
// now check 1 more diagonal
|
|
|
|
whichdir = (left < right ? 0 : 1) + (up < down ? 0 : 2);
|
|
|
|
// for(whichdir =0;whichdir<4;whichdir++)
|
|
|
|
// {
|
|
|
|
this_mv = startmv;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
switch (whichdir) {
|
2010-05-18 19:58:33 +04:00
|
|
|
case 0:
|
2012-07-14 02:21:29 +04:00
|
|
|
this_mv.as_mv.col = (this_mv.as_mv.col - 8) | 4;
|
|
|
|
this_mv.as_mv.row = (this_mv.as_mv.row - 8) | 4;
|
|
|
|
thismse = vfp->svf_halfpix_hv(y - 1 - y_stride, y_stride, z, b->src_stride, &sse);
|
|
|
|
break;
|
2010-05-18 19:58:33 +04:00
|
|
|
case 1:
|
2012-07-14 02:21:29 +04:00
|
|
|
this_mv.as_mv.col += 4;
|
|
|
|
this_mv.as_mv.row = (this_mv.as_mv.row - 8) | 4;
|
|
|
|
thismse = vfp->svf_halfpix_hv(y - y_stride, y_stride, z, b->src_stride, &sse);
|
|
|
|
break;
|
2010-05-18 19:58:33 +04:00
|
|
|
case 2:
|
2012-07-14 02:21:29 +04:00
|
|
|
this_mv.as_mv.col = (this_mv.as_mv.col - 8) | 4;
|
|
|
|
this_mv.as_mv.row += 4;
|
|
|
|
thismse = vfp->svf_halfpix_hv(y - 1, y_stride, z, b->src_stride, &sse);
|
|
|
|
break;
|
2010-05-18 19:58:33 +04:00
|
|
|
case 3:
|
2011-01-10 12:14:10 +03:00
|
|
|
default:
|
2012-07-14 02:21:29 +04:00
|
|
|
this_mv.as_mv.col += 4;
|
|
|
|
this_mv.as_mv.row += 4;
|
|
|
|
thismse = vfp->svf_halfpix_hv(y, y_stride, z, b->src_stride, &sse);
|
|
|
|
break;
|
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-11-09 03:44:39 +04:00
|
|
|
diag = thismse + mv_err_cost(&this_mv, ref_mv, mvjcost, mvcost, error_per_bit,
|
2012-08-03 23:17:18 +04:00
|
|
|
xd->allow_high_precision_mv);
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
if (diag < bestmse) {
|
|
|
|
*bestmv = this_mv;
|
|
|
|
bestmse = diag;
|
|
|
|
*distortion = thismse;
|
|
|
|
*sse1 = sse;
|
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
// time to check quarter pels.
|
|
|
|
if (bestmv->as_mv.row < startmv.as_mv.row) {
|
|
|
|
y -= y_stride;
|
|
|
|
yrow_movedback = 1;
|
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
if (bestmv->as_mv.col < startmv.as_mv.col) {
|
|
|
|
y--;
|
|
|
|
ycol_movedback = 1;
|
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
startmv = *bestmv;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
|
|
|
|
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
// go left then right and check error
|
|
|
|
this_mv.as_mv.row = startmv.as_mv.row;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
if (startmv.as_mv.col & 7) {
|
|
|
|
this_mv.as_mv.col = startmv.as_mv.col - 2;
|
2012-08-03 23:17:18 +04:00
|
|
|
thismse = vfp->svf(y, y_stride,
|
|
|
|
SP(this_mv.as_mv.col), SP(this_mv.as_mv.row),
|
|
|
|
z, b->src_stride, &sse);
|
2012-07-14 02:21:29 +04:00
|
|
|
} else {
|
|
|
|
this_mv.as_mv.col = (startmv.as_mv.col - 8) | 6;
|
2012-08-03 23:17:18 +04:00
|
|
|
thismse = vfp->svf(y - 1, y_stride, SP(6), SP(this_mv.as_mv.row), z,
|
|
|
|
b->src_stride, &sse);
|
2012-07-14 02:21:29 +04:00
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-11-09 03:44:39 +04:00
|
|
|
left = thismse + mv_err_cost(&this_mv, ref_mv, mvjcost, mvcost, error_per_bit,
|
2012-08-03 23:17:18 +04:00
|
|
|
xd->allow_high_precision_mv);
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
if (left < bestmse) {
|
|
|
|
*bestmv = this_mv;
|
|
|
|
bestmse = left;
|
|
|
|
*distortion = thismse;
|
|
|
|
*sse1 = sse;
|
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
this_mv.as_mv.col += 4;
|
2012-08-03 23:17:18 +04:00
|
|
|
thismse = vfp->svf(y, y_stride,
|
|
|
|
SP(this_mv.as_mv.col), SP(this_mv.as_mv.row),
|
|
|
|
z, b->src_stride, &sse);
|
2012-11-09 03:44:39 +04:00
|
|
|
right = thismse + mv_err_cost(&this_mv, ref_mv, mvjcost, mvcost,
|
|
|
|
error_per_bit, xd->allow_high_precision_mv);
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
if (right < bestmse) {
|
|
|
|
*bestmv = this_mv;
|
|
|
|
bestmse = right;
|
|
|
|
*distortion = thismse;
|
|
|
|
*sse1 = sse;
|
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
// go up then down and check error
|
|
|
|
this_mv.as_mv.col = startmv.as_mv.col;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
if (startmv.as_mv.row & 7) {
|
|
|
|
this_mv.as_mv.row = startmv.as_mv.row - 2;
|
2012-08-03 23:17:18 +04:00
|
|
|
thismse = vfp->svf(y, y_stride,
|
|
|
|
SP(this_mv.as_mv.col), SP(this_mv.as_mv.row),
|
|
|
|
z, b->src_stride, &sse);
|
2012-07-14 02:21:29 +04:00
|
|
|
} else {
|
|
|
|
this_mv.as_mv.row = (startmv.as_mv.row - 8) | 6;
|
2012-08-03 23:17:18 +04:00
|
|
|
thismse = vfp->svf(y - y_stride, y_stride, SP(this_mv.as_mv.col), SP(6),
|
|
|
|
z, b->src_stride, &sse);
|
2012-07-14 02:21:29 +04:00
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-11-09 03:44:39 +04:00
|
|
|
up = thismse + mv_err_cost(&this_mv, ref_mv, mvjcost, mvcost, error_per_bit,
|
2012-08-03 23:17:18 +04:00
|
|
|
xd->allow_high_precision_mv);
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
if (up < bestmse) {
|
|
|
|
*bestmv = this_mv;
|
|
|
|
bestmse = up;
|
|
|
|
*distortion = thismse;
|
|
|
|
*sse1 = sse;
|
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
this_mv.as_mv.row += 4;
|
2012-08-03 23:17:18 +04:00
|
|
|
thismse = vfp->svf(y, y_stride, SP(this_mv.as_mv.col), SP(this_mv.as_mv.row),
|
|
|
|
z, b->src_stride, &sse);
|
2012-11-09 03:44:39 +04:00
|
|
|
down = thismse + mv_err_cost(&this_mv, ref_mv, mvjcost, mvcost, error_per_bit,
|
2012-08-03 23:17:18 +04:00
|
|
|
xd->allow_high_precision_mv);
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
if (down < bestmse) {
|
|
|
|
*bestmv = this_mv;
|
|
|
|
bestmse = down;
|
|
|
|
*distortion = thismse;
|
|
|
|
*sse1 = sse;
|
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
// now check 1 more diagonal
|
|
|
|
whichdir = (left < right ? 0 : 1) + (up < down ? 0 : 2);
|
2010-05-18 19:58:33 +04:00
|
|
|
|
|
|
|
// for(whichdir=0;whichdir<4;whichdir++)
|
|
|
|
// {
|
2012-07-14 02:21:29 +04:00
|
|
|
this_mv = startmv;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
switch (whichdir) {
|
2010-05-18 19:58:33 +04:00
|
|
|
case 0:
|
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
if (startmv.as_mv.row & 7) {
|
|
|
|
this_mv.as_mv.row -= 2;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
if (startmv.as_mv.col & 7) {
|
|
|
|
this_mv.as_mv.col -= 2;
|
|
|
|
thismse = vfp->svf(y, y_stride, SP(this_mv.as_mv.col), SP(this_mv.as_mv.row), z, b->src_stride, &sse);
|
|
|
|
} else {
|
|
|
|
this_mv.as_mv.col = (startmv.as_mv.col - 8) | 6;
|
|
|
|
thismse = vfp->svf(y - 1, y_stride, SP(6), SP(this_mv.as_mv.row), z, b->src_stride, &sse);;
|
2010-05-18 19:58:33 +04:00
|
|
|
}
|
2012-07-14 02:21:29 +04:00
|
|
|
} else {
|
|
|
|
this_mv.as_mv.row = (startmv.as_mv.row - 8) | 6;
|
|
|
|
|
|
|
|
if (startmv.as_mv.col & 7) {
|
|
|
|
this_mv.as_mv.col -= 2;
|
|
|
|
thismse = vfp->svf(y - y_stride, y_stride, SP(this_mv.as_mv.col), SP(6), z, b->src_stride, &sse);
|
|
|
|
} else {
|
|
|
|
this_mv.as_mv.col = (startmv.as_mv.col - 8) | 6;
|
|
|
|
thismse = vfp->svf(y - y_stride - 1, y_stride, SP(6), SP(6), z, b->src_stride, &sse);
|
2010-05-18 19:58:33 +04:00
|
|
|
}
|
2012-07-14 02:21:29 +04:00
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
break;
|
2010-05-18 19:58:33 +04:00
|
|
|
case 1:
|
2012-07-14 02:21:29 +04:00
|
|
|
this_mv.as_mv.col += 2;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
if (startmv.as_mv.row & 7) {
|
|
|
|
this_mv.as_mv.row -= 2;
|
|
|
|
thismse = vfp->svf(y, y_stride, SP(this_mv.as_mv.col), SP(this_mv.as_mv.row), z, b->src_stride, &sse);
|
|
|
|
} else {
|
|
|
|
this_mv.as_mv.row = (startmv.as_mv.row - 8) | 6;
|
|
|
|
thismse = vfp->svf(y - y_stride, y_stride, SP(this_mv.as_mv.col), SP(6), z, b->src_stride, &sse);
|
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
break;
|
2010-05-18 19:58:33 +04:00
|
|
|
case 2:
|
2012-07-14 02:21:29 +04:00
|
|
|
this_mv.as_mv.row += 2;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
if (startmv.as_mv.col & 7) {
|
|
|
|
this_mv.as_mv.col -= 2;
|
2012-08-03 23:17:18 +04:00
|
|
|
thismse = vfp->svf(y, y_stride, SP(this_mv.as_mv.col), SP(this_mv.as_mv.row),
|
|
|
|
z, b->src_stride, &sse);
|
2012-07-14 02:21:29 +04:00
|
|
|
} else {
|
|
|
|
this_mv.as_mv.col = (startmv.as_mv.col - 8) | 6;
|
2012-08-03 23:17:18 +04:00
|
|
|
thismse = vfp->svf(y - 1, y_stride, SP(6), SP(this_mv.as_mv.row), z,
|
|
|
|
b->src_stride, &sse);
|
2012-07-14 02:21:29 +04:00
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
break;
|
2010-05-18 19:58:33 +04:00
|
|
|
case 3:
|
2012-07-14 02:21:29 +04:00
|
|
|
this_mv.as_mv.col += 2;
|
|
|
|
this_mv.as_mv.row += 2;
|
2012-08-03 23:17:18 +04:00
|
|
|
thismse = vfp->svf(y, y_stride,
|
|
|
|
SP(this_mv.as_mv.col), SP(this_mv.as_mv.row),
|
|
|
|
z, b->src_stride, &sse);
|
2012-07-14 02:21:29 +04:00
|
|
|
break;
|
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-11-09 03:44:39 +04:00
|
|
|
diag = thismse + mv_err_cost(&this_mv, ref_mv, mvjcost, mvcost, error_per_bit,
|
2012-08-03 23:17:18 +04:00
|
|
|
xd->allow_high_precision_mv);
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
if (diag < bestmse) {
|
|
|
|
*bestmv = this_mv;
|
|
|
|
bestmse = diag;
|
|
|
|
*distortion = thismse;
|
|
|
|
*sse1 = sse;
|
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-09-06 20:07:42 +04:00
|
|
|
if (x->e_mbd.allow_high_precision_mv) {
|
2012-10-31 03:25:53 +04:00
|
|
|
usehp = vp9_use_nmv_hp(&ref_mv->as_mv);
|
2012-09-06 20:07:42 +04:00
|
|
|
} else {
|
|
|
|
usehp = 0;
|
|
|
|
}
|
|
|
|
if (!usehp)
|
2012-07-14 02:21:29 +04:00
|
|
|
return bestmse;
|
2012-02-16 21:29:54 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
/* Now do 1/8th pixel */
|
|
|
|
if (bestmv->as_mv.row < orig_mv.as_mv.row && !yrow_movedback) {
|
|
|
|
y -= y_stride;
|
|
|
|
yrow_movedback = 1;
|
|
|
|
}
|
2012-02-16 21:29:54 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
if (bestmv->as_mv.col < orig_mv.as_mv.col && !ycol_movedback) {
|
|
|
|
y--;
|
|
|
|
ycol_movedback = 1;
|
|
|
|
}
|
2012-02-16 21:29:54 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
startmv = *bestmv;
|
2012-02-16 21:29:54 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
// go left then right and check error
|
|
|
|
this_mv.as_mv.row = startmv.as_mv.row;
|
2012-02-16 21:29:54 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
if (startmv.as_mv.col & 7) {
|
|
|
|
this_mv.as_mv.col = startmv.as_mv.col - 1;
|
2012-08-03 23:17:18 +04:00
|
|
|
thismse = vfp->svf(y, y_stride,
|
|
|
|
SP(this_mv.as_mv.col), SP(this_mv.as_mv.row),
|
|
|
|
z, b->src_stride, &sse);
|
2012-07-14 02:21:29 +04:00
|
|
|
} else {
|
|
|
|
this_mv.as_mv.col = (startmv.as_mv.col - 8) | 7;
|
2012-08-03 23:17:18 +04:00
|
|
|
thismse = vfp->svf(y - 1, y_stride, SP(7), SP(this_mv.as_mv.row),
|
|
|
|
z, b->src_stride, &sse);
|
2012-07-14 02:21:29 +04:00
|
|
|
}
|
|
|
|
|
2012-11-09 03:44:39 +04:00
|
|
|
left = thismse + mv_err_cost(&this_mv, ref_mv, mvjcost, mvcost, error_per_bit,
|
2012-08-03 23:17:18 +04:00
|
|
|
xd->allow_high_precision_mv);
|
2012-07-14 02:21:29 +04:00
|
|
|
|
|
|
|
if (left < bestmse) {
|
|
|
|
*bestmv = this_mv;
|
|
|
|
bestmse = left;
|
|
|
|
*distortion = thismse;
|
|
|
|
*sse1 = sse;
|
|
|
|
}
|
|
|
|
|
|
|
|
this_mv.as_mv.col += 2;
|
2012-07-27 00:42:07 +04:00
|
|
|
thismse = vfp->svf(y, y_stride, SP(this_mv.as_mv.col), SP(this_mv.as_mv.row),
|
|
|
|
z, b->src_stride, &sse);
|
2012-11-09 03:44:39 +04:00
|
|
|
right = thismse + mv_err_cost(&this_mv, ref_mv, mvjcost, mvcost,
|
|
|
|
error_per_bit, xd->allow_high_precision_mv);
|
2012-07-14 02:21:29 +04:00
|
|
|
|
|
|
|
if (right < bestmse) {
|
|
|
|
*bestmv = this_mv;
|
|
|
|
bestmse = right;
|
|
|
|
*distortion = thismse;
|
|
|
|
*sse1 = sse;
|
|
|
|
}
|
|
|
|
|
|
|
|
// go up then down and check error
|
|
|
|
this_mv.as_mv.col = startmv.as_mv.col;
|
|
|
|
|
|
|
|
if (startmv.as_mv.row & 7) {
|
|
|
|
this_mv.as_mv.row = startmv.as_mv.row - 1;
|
|
|
|
thismse = vfp->svf(y, y_stride, SP(this_mv.as_mv.col), SP(this_mv.as_mv.row), z, b->src_stride, &sse);
|
|
|
|
} else {
|
|
|
|
this_mv.as_mv.row = (startmv.as_mv.row - 8) | 7;
|
|
|
|
thismse = vfp->svf(y - y_stride, y_stride, SP(this_mv.as_mv.col), SP(7), z, b->src_stride, &sse);
|
|
|
|
}
|
2012-02-16 21:29:54 +04:00
|
|
|
|
2012-11-09 03:44:39 +04:00
|
|
|
up = thismse + mv_err_cost(&this_mv, ref_mv, mvjcost, mvcost, error_per_bit,
|
2012-07-27 00:42:07 +04:00
|
|
|
xd->allow_high_precision_mv);
|
2012-02-16 21:29:54 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
if (up < bestmse) {
|
|
|
|
*bestmv = this_mv;
|
|
|
|
bestmse = up;
|
|
|
|
*distortion = thismse;
|
|
|
|
*sse1 = sse;
|
|
|
|
}
|
2012-02-16 21:29:54 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
this_mv.as_mv.row += 2;
|
|
|
|
thismse = vfp->svf(y, y_stride, SP(this_mv.as_mv.col), SP(this_mv.as_mv.row), z, b->src_stride, &sse);
|
2012-11-09 03:44:39 +04:00
|
|
|
down = thismse + mv_err_cost(&this_mv, ref_mv, mvjcost, mvcost, error_per_bit,
|
2012-07-27 00:42:07 +04:00
|
|
|
xd->allow_high_precision_mv);
|
2012-02-16 21:29:54 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
if (down < bestmse) {
|
|
|
|
*bestmv = this_mv;
|
|
|
|
bestmse = down;
|
|
|
|
*distortion = thismse;
|
|
|
|
*sse1 = sse;
|
|
|
|
}
|
2012-02-16 21:29:54 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
// now check 1 more diagonal
|
|
|
|
whichdir = (left < right ? 0 : 1) + (up < down ? 0 : 2);
|
2012-02-16 21:29:54 +04:00
|
|
|
|
|
|
|
// for(whichdir=0;whichdir<4;whichdir++)
|
|
|
|
// {
|
2012-07-14 02:21:29 +04:00
|
|
|
this_mv = startmv;
|
2012-02-16 21:29:54 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
switch (whichdir) {
|
2012-02-16 21:29:54 +04:00
|
|
|
case 0:
|
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
if (startmv.as_mv.row & 7) {
|
|
|
|
this_mv.as_mv.row -= 1;
|
2012-02-16 21:29:54 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
if (startmv.as_mv.col & 7) {
|
|
|
|
this_mv.as_mv.col -= 1;
|
|
|
|
thismse = vfp->svf(y, y_stride, SP(this_mv.as_mv.col), SP(this_mv.as_mv.row), z, b->src_stride, &sse);
|
|
|
|
} else {
|
|
|
|
this_mv.as_mv.col = (startmv.as_mv.col - 8) | 7;
|
|
|
|
thismse = vfp->svf(y - 1, y_stride, SP(7), SP(this_mv.as_mv.row), z, b->src_stride, &sse);;
|
2012-02-16 21:29:54 +04:00
|
|
|
}
|
2012-07-14 02:21:29 +04:00
|
|
|
} else {
|
|
|
|
this_mv.as_mv.row = (startmv.as_mv.row - 8) | 7;
|
|
|
|
|
|
|
|
if (startmv.as_mv.col & 7) {
|
|
|
|
this_mv.as_mv.col -= 1;
|
|
|
|
thismse = vfp->svf(y - y_stride, y_stride, SP(this_mv.as_mv.col), SP(7), z, b->src_stride, &sse);
|
|
|
|
} else {
|
|
|
|
this_mv.as_mv.col = (startmv.as_mv.col - 8) | 7;
|
|
|
|
thismse = vfp->svf(y - y_stride - 1, y_stride, SP(7), SP(7), z, b->src_stride, &sse);
|
2012-02-16 21:29:54 +04:00
|
|
|
}
|
2012-07-14 02:21:29 +04:00
|
|
|
}
|
2012-02-16 21:29:54 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
break;
|
2012-02-16 21:29:54 +04:00
|
|
|
case 1:
|
2012-07-14 02:21:29 +04:00
|
|
|
this_mv.as_mv.col += 1;
|
2012-02-16 21:29:54 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
if (startmv.as_mv.row & 7) {
|
|
|
|
this_mv.as_mv.row -= 1;
|
|
|
|
thismse = vfp->svf(y, y_stride, SP(this_mv.as_mv.col), SP(this_mv.as_mv.row), z, b->src_stride, &sse);
|
|
|
|
} else {
|
|
|
|
this_mv.as_mv.row = (startmv.as_mv.row - 8) | 7;
|
|
|
|
thismse = vfp->svf(y - y_stride, y_stride, SP(this_mv.as_mv.col), SP(7), z, b->src_stride, &sse);
|
|
|
|
}
|
2012-02-16 21:29:54 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
break;
|
2012-02-16 21:29:54 +04:00
|
|
|
case 2:
|
2012-07-14 02:21:29 +04:00
|
|
|
this_mv.as_mv.row += 1;
|
2012-02-16 21:29:54 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
if (startmv.as_mv.col & 7) {
|
|
|
|
this_mv.as_mv.col -= 1;
|
|
|
|
thismse = vfp->svf(y, y_stride, SP(this_mv.as_mv.col), SP(this_mv.as_mv.row), z, b->src_stride, &sse);
|
|
|
|
} else {
|
|
|
|
this_mv.as_mv.col = (startmv.as_mv.col - 8) | 7;
|
|
|
|
thismse = vfp->svf(y - 1, y_stride, SP(7), SP(this_mv.as_mv.row), z, b->src_stride, &sse);
|
|
|
|
}
|
2012-02-16 21:29:54 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
break;
|
2012-02-16 21:29:54 +04:00
|
|
|
case 3:
|
2012-07-14 02:21:29 +04:00
|
|
|
this_mv.as_mv.col += 1;
|
|
|
|
this_mv.as_mv.row += 1;
|
|
|
|
thismse = vfp->svf(y, y_stride, SP(this_mv.as_mv.col), SP(this_mv.as_mv.row), z, b->src_stride, &sse);
|
|
|
|
break;
|
|
|
|
}
|
2012-02-16 21:29:54 +04:00
|
|
|
|
2012-11-09 03:44:39 +04:00
|
|
|
diag = thismse + mv_err_cost(&this_mv, ref_mv, mvjcost, mvcost, error_per_bit,
|
2012-07-27 00:42:07 +04:00
|
|
|
xd->allow_high_precision_mv);
|
2012-02-16 21:29:54 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
if (diag < bestmse) {
|
|
|
|
*bestmv = this_mv;
|
|
|
|
bestmse = diag;
|
|
|
|
*distortion = thismse;
|
|
|
|
*sse1 = sse;
|
|
|
|
}
|
2012-02-16 21:29:54 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
return bestmse;
|
2010-05-18 19:58:33 +04:00
|
|
|
}
|
|
|
|
|
2012-02-16 21:29:54 +04:00
|
|
|
#undef SP
|
|
|
|
|
2012-10-30 23:58:42 +04:00
|
|
|
int vp9_find_best_half_pixel_step(MACROBLOCK *x, BLOCK *b, BLOCKD *d,
|
2011-05-12 18:50:16 +04:00
|
|
|
int_mv *bestmv, int_mv *ref_mv,
|
|
|
|
int error_per_bit,
|
2012-11-01 01:40:53 +04:00
|
|
|
const vp9_variance_fn_ptr_t *vfp,
|
2012-11-09 03:44:39 +04:00
|
|
|
int *mvjcost, int *mvcost[2],
|
2012-07-27 00:42:07 +04:00
|
|
|
int *distortion,
|
2012-07-14 02:21:29 +04:00
|
|
|
unsigned int *sse1) {
|
|
|
|
int bestmse = INT_MAX;
|
|
|
|
int_mv startmv;
|
|
|
|
int_mv this_mv;
|
2012-12-19 03:31:19 +04:00
|
|
|
uint8_t *z = (*(b->base_src) + b->src);
|
2012-07-14 02:21:29 +04:00
|
|
|
int left, right, up, down, diag;
|
|
|
|
unsigned int sse;
|
|
|
|
int whichdir;
|
|
|
|
int thismse;
|
|
|
|
int y_stride;
|
|
|
|
MACROBLOCKD *xd = &x->e_mbd;
|
2011-07-23 00:01:11 +04:00
|
|
|
|
2012-12-19 03:31:19 +04:00
|
|
|
uint8_t *y = *(d->base_pre) + d->pre +
|
2012-08-03 23:17:18 +04:00
|
|
|
(bestmv->as_mv.row) * d->pre_stride + bestmv->as_mv.col;
|
2012-07-14 02:21:29 +04:00
|
|
|
y_stride = d->pre_stride;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
// central mv
|
|
|
|
bestmv->as_mv.row <<= 3;
|
|
|
|
bestmv->as_mv.col <<= 3;
|
|
|
|
startmv = *bestmv;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
// calculate central point error
|
|
|
|
bestmse = vfp->vf(y, y_stride, z, b->src_stride, sse1);
|
|
|
|
*distortion = bestmse;
|
2012-11-09 03:44:39 +04:00
|
|
|
bestmse += mv_err_cost(bestmv, ref_mv, mvjcost, mvcost, error_per_bit,
|
2012-08-03 23:17:18 +04:00
|
|
|
xd->allow_high_precision_mv);
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
// go left then right and check error
|
|
|
|
this_mv.as_mv.row = startmv.as_mv.row;
|
|
|
|
this_mv.as_mv.col = ((startmv.as_mv.col - 8) | 4);
|
|
|
|
thismse = vfp->svf_halfpix_h(y - 1, y_stride, z, b->src_stride, &sse);
|
2012-11-09 03:44:39 +04:00
|
|
|
left = thismse + mv_err_cost(&this_mv, ref_mv, mvjcost, mvcost, error_per_bit,
|
2012-08-03 23:17:18 +04:00
|
|
|
xd->allow_high_precision_mv);
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
if (left < bestmse) {
|
|
|
|
*bestmv = this_mv;
|
|
|
|
bestmse = left;
|
|
|
|
*distortion = thismse;
|
|
|
|
*sse1 = sse;
|
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
this_mv.as_mv.col += 8;
|
|
|
|
thismse = vfp->svf_halfpix_h(y, y_stride, z, b->src_stride, &sse);
|
2012-11-09 03:44:39 +04:00
|
|
|
right = thismse + mv_err_cost(&this_mv, ref_mv, mvjcost, mvcost,
|
|
|
|
error_per_bit, xd->allow_high_precision_mv);
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
if (right < bestmse) {
|
|
|
|
*bestmv = this_mv;
|
|
|
|
bestmse = right;
|
|
|
|
*distortion = thismse;
|
|
|
|
*sse1 = sse;
|
|
|
|
}
|
|
|
|
|
|
|
|
// go up then down and check error
|
|
|
|
this_mv.as_mv.col = startmv.as_mv.col;
|
|
|
|
this_mv.as_mv.row = ((startmv.as_mv.row - 8) | 4);
|
|
|
|
thismse = vfp->svf_halfpix_v(y - y_stride, y_stride, z, b->src_stride, &sse);
|
2012-11-09 03:44:39 +04:00
|
|
|
up = thismse + mv_err_cost(&this_mv, ref_mv, mvjcost, mvcost, error_per_bit,
|
2012-08-03 23:17:18 +04:00
|
|
|
xd->allow_high_precision_mv);
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
if (up < bestmse) {
|
|
|
|
*bestmv = this_mv;
|
|
|
|
bestmse = up;
|
|
|
|
*distortion = thismse;
|
|
|
|
*sse1 = sse;
|
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
this_mv.as_mv.row += 8;
|
|
|
|
thismse = vfp->svf_halfpix_v(y, y_stride, z, b->src_stride, &sse);
|
2012-11-09 03:44:39 +04:00
|
|
|
down = thismse + mv_err_cost(&this_mv, ref_mv, mvjcost, mvcost, error_per_bit,
|
2012-08-03 23:17:18 +04:00
|
|
|
xd->allow_high_precision_mv);
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
if (down < bestmse) {
|
|
|
|
*bestmv = this_mv;
|
|
|
|
bestmse = down;
|
|
|
|
*distortion = thismse;
|
|
|
|
*sse1 = sse;
|
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
// now check 1 more diagonal -
|
|
|
|
whichdir = (left < right ? 0 : 1) + (up < down ? 0 : 2);
|
|
|
|
this_mv = startmv;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
switch (whichdir) {
|
2010-05-18 19:58:33 +04:00
|
|
|
case 0:
|
2012-07-14 02:21:29 +04:00
|
|
|
this_mv.as_mv.col = (this_mv.as_mv.col - 8) | 4;
|
|
|
|
this_mv.as_mv.row = (this_mv.as_mv.row - 8) | 4;
|
|
|
|
thismse = vfp->svf_halfpix_hv(y - 1 - y_stride, y_stride, z, b->src_stride, &sse);
|
|
|
|
break;
|
2010-05-18 19:58:33 +04:00
|
|
|
case 1:
|
2012-07-14 02:21:29 +04:00
|
|
|
this_mv.as_mv.col += 4;
|
|
|
|
this_mv.as_mv.row = (this_mv.as_mv.row - 8) | 4;
|
|
|
|
thismse = vfp->svf_halfpix_hv(y - y_stride, y_stride, z, b->src_stride, &sse);
|
|
|
|
break;
|
2010-05-18 19:58:33 +04:00
|
|
|
case 2:
|
2012-07-14 02:21:29 +04:00
|
|
|
this_mv.as_mv.col = (this_mv.as_mv.col - 8) | 4;
|
|
|
|
this_mv.as_mv.row += 4;
|
|
|
|
thismse = vfp->svf_halfpix_hv(y - 1, y_stride, z, b->src_stride, &sse);
|
|
|
|
break;
|
2010-05-18 19:58:33 +04:00
|
|
|
case 3:
|
2011-08-03 19:51:07 +04:00
|
|
|
default:
|
2012-07-14 02:21:29 +04:00
|
|
|
this_mv.as_mv.col += 4;
|
|
|
|
this_mv.as_mv.row += 4;
|
|
|
|
thismse = vfp->svf_halfpix_hv(y, y_stride, z, b->src_stride, &sse);
|
|
|
|
break;
|
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-11-09 03:44:39 +04:00
|
|
|
diag = thismse + mv_err_cost(&this_mv, ref_mv, mvjcost, mvcost, error_per_bit,
|
2012-08-03 23:17:18 +04:00
|
|
|
xd->allow_high_precision_mv);
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
if (diag < bestmse) {
|
|
|
|
*bestmv = this_mv;
|
|
|
|
bestmse = diag;
|
|
|
|
*distortion = thismse;
|
|
|
|
*sse1 = sse;
|
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
return bestmse;
|
2010-05-18 19:58:33 +04:00
|
|
|
}
|
|
|
|
|
2011-05-20 23:26:32 +04:00
|
|
|
#define CHECK_BOUNDS(range) \
|
2012-07-14 02:21:29 +04:00
|
|
|
{\
|
2011-05-20 23:26:32 +04:00
|
|
|
all_in = 1;\
|
|
|
|
all_in &= ((br-range) >= x->mv_row_min);\
|
|
|
|
all_in &= ((br+range) <= x->mv_row_max);\
|
|
|
|
all_in &= ((bc-range) >= x->mv_col_min);\
|
|
|
|
all_in &= ((bc+range) <= x->mv_col_max);\
|
2012-07-14 02:21:29 +04:00
|
|
|
}
|
2011-05-20 23:26:32 +04:00
|
|
|
|
|
|
|
#define CHECK_POINT \
|
2012-07-14 02:21:29 +04:00
|
|
|
{\
|
2011-05-20 23:26:32 +04:00
|
|
|
if (this_mv.as_mv.col < x->mv_col_min) continue;\
|
|
|
|
if (this_mv.as_mv.col > x->mv_col_max) continue;\
|
|
|
|
if (this_mv.as_mv.row < x->mv_row_min) continue;\
|
|
|
|
if (this_mv.as_mv.row > x->mv_row_max) continue;\
|
2012-07-14 02:21:29 +04:00
|
|
|
}
|
2011-05-20 23:26:32 +04:00
|
|
|
|
|
|
|
#define CHECK_BETTER \
|
2012-07-14 02:21:29 +04:00
|
|
|
{\
|
2011-05-20 23:26:32 +04:00
|
|
|
if (thissad < bestsad)\
|
|
|
|
{\
|
2012-11-09 03:44:39 +04:00
|
|
|
thissad += mvsad_err_cost(&this_mv, &fcenter_mv, mvjsadcost, mvsadcost, \
|
|
|
|
sad_per_bit);\
|
2012-07-14 02:21:29 +04:00
|
|
|
if (thissad < bestsad)\
|
|
|
|
{\
|
|
|
|
bestsad = thissad;\
|
|
|
|
best_site = i;\
|
|
|
|
}\
|
2011-05-20 23:26:32 +04:00
|
|
|
}\
|
2012-07-14 02:21:29 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static const MV next_chkpts[6][3] = {
|
|
|
|
{{ -2, 0}, { -1, -2}, {1, -2}},
|
|
|
|
{{ -1, -2}, {1, -2}, {2, 0}},
|
|
|
|
{{1, -2}, {2, 0}, {1, 2}},
|
|
|
|
{{2, 0}, {1, 2}, { -1, 2}},
|
|
|
|
{{1, 2}, { -1, 2}, { -2, 0}},
|
|
|
|
{{ -1, 2}, { -2, 0}, { -1, -2}}
|
2010-10-26 18:46:31 +04:00
|
|
|
};
|
2011-05-20 23:26:32 +04:00
|
|
|
|
2012-10-30 23:58:42 +04:00
|
|
|
int vp9_hex_search
|
2010-05-18 19:58:33 +04:00
|
|
|
(
|
2012-07-14 02:21:29 +04:00
|
|
|
MACROBLOCK *x,
|
|
|
|
BLOCK *b,
|
|
|
|
BLOCKD *d,
|
|
|
|
int_mv *ref_mv,
|
|
|
|
int_mv *best_mv,
|
|
|
|
int search_param,
|
|
|
|
int sad_per_bit,
|
2012-11-01 01:40:53 +04:00
|
|
|
const vp9_variance_fn_ptr_t *vfp,
|
2012-11-09 03:44:39 +04:00
|
|
|
int *mvjsadcost, int *mvsadcost[2],
|
|
|
|
int *mvjcost, int *mvcost[2],
|
2012-07-14 02:21:29 +04:00
|
|
|
int_mv *center_mv
|
|
|
|
) {
|
|
|
|
MV hex[6] = { { -1, -2}, {1, -2}, {2, 0}, {1, 2}, { -1, 2}, { -2, 0} };
|
|
|
|
MV neighbors[4] = {{0, -1}, { -1, 0}, {1, 0}, {0, 1}};
|
|
|
|
int i, j;
|
|
|
|
|
2012-12-19 03:31:19 +04:00
|
|
|
uint8_t *what = (*(b->base_src) + b->src);
|
2012-07-14 02:21:29 +04:00
|
|
|
int what_stride = b->src_stride;
|
|
|
|
int in_what_stride = d->pre_stride;
|
|
|
|
int br, bc;
|
|
|
|
int_mv this_mv;
|
|
|
|
unsigned int bestsad = 0x7fffffff;
|
|
|
|
unsigned int thissad;
|
2012-12-19 03:31:19 +04:00
|
|
|
uint8_t *base_offset;
|
|
|
|
uint8_t *this_offset;
|
2012-07-14 02:21:29 +04:00
|
|
|
int k = -1;
|
|
|
|
int all_in;
|
|
|
|
int best_site = -1;
|
|
|
|
|
|
|
|
int_mv fcenter_mv;
|
|
|
|
fcenter_mv.as_mv.row = center_mv->as_mv.row >> 3;
|
|
|
|
fcenter_mv.as_mv.col = center_mv->as_mv.col >> 3;
|
|
|
|
|
|
|
|
// adjust ref_mv to make sure it is within MV range
|
2012-11-01 01:40:53 +04:00
|
|
|
clamp_mv(ref_mv, x->mv_col_min, x->mv_col_max, x->mv_row_min, x->mv_row_max);
|
2012-07-14 02:21:29 +04:00
|
|
|
br = ref_mv->as_mv.row;
|
|
|
|
bc = ref_mv->as_mv.col;
|
|
|
|
|
|
|
|
// Work out the start point for the search
|
2012-12-19 03:31:19 +04:00
|
|
|
base_offset = (uint8_t *)(*(d->base_pre) + d->pre);
|
2012-07-14 02:21:29 +04:00
|
|
|
this_offset = base_offset + (br * (d->pre_stride)) + bc;
|
|
|
|
this_mv.as_mv.row = br;
|
|
|
|
this_mv.as_mv.col = bc;
|
|
|
|
bestsad = vfp->sdf(what, what_stride, this_offset,
|
|
|
|
in_what_stride, 0x7fffffff)
|
2012-11-09 03:44:39 +04:00
|
|
|
+ mvsad_err_cost(&this_mv, &fcenter_mv, mvjsadcost, mvsadcost,
|
|
|
|
sad_per_bit);
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
// hex search
|
|
|
|
// j=0
|
|
|
|
CHECK_BOUNDS(2)
|
|
|
|
|
|
|
|
if (all_in) {
|
|
|
|
for (i = 0; i < 6; i++) {
|
|
|
|
this_mv.as_mv.row = br + hex[i].row;
|
|
|
|
this_mv.as_mv.col = bc + hex[i].col;
|
|
|
|
this_offset = base_offset + (this_mv.as_mv.row * in_what_stride) + this_mv.as_mv.col;
|
|
|
|
thissad = vfp->sdf(what, what_stride, this_offset, in_what_stride, bestsad);
|
|
|
|
CHECK_BETTER
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for (i = 0; i < 6; i++) {
|
|
|
|
this_mv.as_mv.row = br + hex[i].row;
|
|
|
|
this_mv.as_mv.col = bc + hex[i].col;
|
|
|
|
CHECK_POINT
|
|
|
|
this_offset = base_offset + (this_mv.as_mv.row * in_what_stride) + this_mv.as_mv.col;
|
|
|
|
thissad = vfp->sdf(what, what_stride, this_offset, in_what_stride, bestsad);
|
|
|
|
CHECK_BETTER
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (best_site == -1)
|
|
|
|
goto cal_neighbors;
|
|
|
|
else {
|
|
|
|
br += hex[best_site].row;
|
|
|
|
bc += hex[best_site].col;
|
|
|
|
k = best_site;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (j = 1; j < 127; j++) {
|
|
|
|
best_site = -1;
|
2011-05-20 23:26:32 +04:00
|
|
|
CHECK_BOUNDS(2)
|
2010-10-26 18:46:31 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
if (all_in) {
|
|
|
|
for (i = 0; i < 3; i++) {
|
|
|
|
this_mv.as_mv.row = br + next_chkpts[k][i].row;
|
|
|
|
this_mv.as_mv.col = bc + next_chkpts[k][i].col;
|
|
|
|
this_offset = base_offset + (this_mv.as_mv.row * (in_what_stride)) + this_mv.as_mv.col;
|
|
|
|
thissad = vfp->sdf(what, what_stride, this_offset, in_what_stride, bestsad);
|
|
|
|
CHECK_BETTER
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for (i = 0; i < 3; i++) {
|
|
|
|
this_mv.as_mv.row = br + next_chkpts[k][i].row;
|
|
|
|
this_mv.as_mv.col = bc + next_chkpts[k][i].col;
|
|
|
|
CHECK_POINT
|
|
|
|
this_offset = base_offset + (this_mv.as_mv.row * (in_what_stride)) + this_mv.as_mv.col;
|
|
|
|
thissad = vfp->sdf(what, what_stride, this_offset, in_what_stride, bestsad);
|
|
|
|
CHECK_BETTER
|
|
|
|
}
|
2010-10-26 18:46:31 +04:00
|
|
|
}
|
|
|
|
|
2011-05-20 23:26:32 +04:00
|
|
|
if (best_site == -1)
|
2012-07-14 02:21:29 +04:00
|
|
|
break;
|
|
|
|
else {
|
|
|
|
br += next_chkpts[k][best_site].row;
|
|
|
|
bc += next_chkpts[k][best_site].col;
|
|
|
|
k += 5 + best_site;
|
|
|
|
if (k >= 12) k -= 12;
|
|
|
|
else if (k >= 6) k -= 6;
|
2011-05-20 23:26:32 +04:00
|
|
|
}
|
2012-07-14 02:21:29 +04:00
|
|
|
}
|
2010-10-26 18:46:31 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
// check 4 1-away neighbors
|
2010-10-26 18:46:31 +04:00
|
|
|
cal_neighbors:
|
2012-07-14 02:21:29 +04:00
|
|
|
for (j = 0; j < 32; j++) {
|
|
|
|
best_site = -1;
|
|
|
|
CHECK_BOUNDS(1)
|
|
|
|
|
|
|
|
if (all_in) {
|
|
|
|
for (i = 0; i < 4; i++) {
|
|
|
|
this_mv.as_mv.row = br + neighbors[i].row;
|
|
|
|
this_mv.as_mv.col = bc + neighbors[i].col;
|
|
|
|
this_offset = base_offset + (this_mv.as_mv.row * (in_what_stride)) + this_mv.as_mv.col;
|
|
|
|
thissad = vfp->sdf(what, what_stride, this_offset, in_what_stride, bestsad);
|
|
|
|
CHECK_BETTER
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for (i = 0; i < 4; i++) {
|
|
|
|
this_mv.as_mv.row = br + neighbors[i].row;
|
|
|
|
this_mv.as_mv.col = bc + neighbors[i].col;
|
|
|
|
CHECK_POINT
|
|
|
|
this_offset = base_offset + (this_mv.as_mv.row * (in_what_stride)) + this_mv.as_mv.col;
|
|
|
|
thissad = vfp->sdf(what, what_stride, this_offset, in_what_stride, bestsad);
|
|
|
|
CHECK_BETTER
|
|
|
|
}
|
|
|
|
}
|
2011-05-02 21:21:59 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
if (best_site == -1)
|
|
|
|
break;
|
|
|
|
else {
|
|
|
|
br += neighbors[best_site].row;
|
|
|
|
bc += neighbors[best_site].col;
|
2010-05-18 19:58:33 +04:00
|
|
|
}
|
2012-07-14 02:21:29 +04:00
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
best_mv->as_mv.row = br;
|
|
|
|
best_mv->as_mv.col = bc;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
return bestsad;
|
2010-05-18 19:58:33 +04:00
|
|
|
}
|
2011-05-20 23:26:32 +04:00
|
|
|
#undef CHECK_BOUNDS
|
|
|
|
#undef CHECK_POINT
|
2010-05-18 19:58:33 +04:00
|
|
|
#undef CHECK_BETTER
|
2010-10-26 18:46:31 +04:00
|
|
|
|
2012-11-06 04:58:03 +04:00
|
|
|
int vp9_diamond_search_sad_c(MACROBLOCK *x, BLOCK *b, BLOCKD *d,
|
|
|
|
int_mv *ref_mv, int_mv *best_mv,
|
|
|
|
int search_param, int sad_per_bit, int *num00,
|
2012-11-09 03:44:39 +04:00
|
|
|
vp9_variance_fn_ptr_t *fn_ptr, int *mvjcost,
|
|
|
|
int *mvcost[2], int_mv *center_mv) {
|
2012-07-14 02:21:29 +04:00
|
|
|
int i, j, step;
|
|
|
|
|
2012-12-19 03:31:19 +04:00
|
|
|
uint8_t *what = (*(b->base_src) + b->src);
|
2012-07-14 02:21:29 +04:00
|
|
|
int what_stride = b->src_stride;
|
2012-12-19 03:31:19 +04:00
|
|
|
uint8_t *in_what;
|
2012-07-14 02:21:29 +04:00
|
|
|
int in_what_stride = d->pre_stride;
|
2012-12-19 03:31:19 +04:00
|
|
|
uint8_t *best_address;
|
2012-07-14 02:21:29 +04:00
|
|
|
|
|
|
|
int tot_steps;
|
|
|
|
int_mv this_mv;
|
|
|
|
|
|
|
|
int bestsad = INT_MAX;
|
|
|
|
int best_site = 0;
|
|
|
|
int last_site = 0;
|
|
|
|
|
2012-08-08 03:44:26 +04:00
|
|
|
int ref_row, ref_col;
|
|
|
|
int this_row_offset, this_col_offset;
|
2012-07-14 02:21:29 +04:00
|
|
|
search_site *ss;
|
|
|
|
|
2012-12-19 03:31:19 +04:00
|
|
|
uint8_t *check_here;
|
2012-07-14 02:21:29 +04:00
|
|
|
int thissad;
|
|
|
|
MACROBLOCKD *xd = &x->e_mbd;
|
|
|
|
int_mv fcenter_mv;
|
2012-02-29 05:44:19 +04:00
|
|
|
|
2012-07-27 00:42:07 +04:00
|
|
|
int *mvjsadcost = x->nmvjointsadcost;
|
|
|
|
int *mvsadcost[2] = {x->nmvsadcost[0], x->nmvsadcost[1]};
|
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
fcenter_mv.as_mv.row = center_mv->as_mv.row >> 3;
|
|
|
|
fcenter_mv.as_mv.col = center_mv->as_mv.col >> 3;
|
|
|
|
|
2012-11-01 01:40:53 +04:00
|
|
|
clamp_mv(ref_mv, x->mv_col_min, x->mv_col_max, x->mv_row_min, x->mv_row_max);
|
2012-07-14 02:21:29 +04:00
|
|
|
ref_row = ref_mv->as_mv.row;
|
|
|
|
ref_col = ref_mv->as_mv.col;
|
|
|
|
*num00 = 0;
|
|
|
|
best_mv->as_mv.row = ref_row;
|
|
|
|
best_mv->as_mv.col = ref_col;
|
|
|
|
|
|
|
|
// Work out the start point for the search
|
2012-12-19 03:31:19 +04:00
|
|
|
in_what = (uint8_t *)(*(d->base_pre) + d->pre +
|
|
|
|
(ref_row * (d->pre_stride)) + ref_col);
|
2012-07-14 02:21:29 +04:00
|
|
|
best_address = in_what;
|
|
|
|
|
|
|
|
// Check the starting position
|
|
|
|
bestsad = fn_ptr->sdf(what, what_stride, in_what,
|
|
|
|
in_what_stride, 0x7fffffff)
|
2012-11-09 03:44:39 +04:00
|
|
|
+ mvsad_err_cost(best_mv, &fcenter_mv, mvjsadcost, mvsadcost,
|
|
|
|
sad_per_bit);
|
2012-07-14 02:21:29 +04:00
|
|
|
|
|
|
|
// search_param determines the length of the initial step and hence the number of iterations
|
|
|
|
// 0 = initial step (MAX_FIRST_STEP) pel : 1 = (MAX_FIRST_STEP/2) pel, 2 = (MAX_FIRST_STEP/4) pel... etc.
|
|
|
|
ss = &x->ss[search_param * x->searches_per_step];
|
|
|
|
tot_steps = (x->ss_count / x->searches_per_step) - search_param;
|
|
|
|
|
|
|
|
i = 1;
|
|
|
|
|
|
|
|
for (step = 0; step < tot_steps; step++) {
|
|
|
|
for (j = 0; j < x->searches_per_step; j++) {
|
|
|
|
// Trap illegal vectors
|
|
|
|
this_row_offset = best_mv->as_mv.row + ss[i].mv.row;
|
|
|
|
this_col_offset = best_mv->as_mv.col + ss[i].mv.col;
|
|
|
|
|
|
|
|
if ((this_col_offset > x->mv_col_min) && (this_col_offset < x->mv_col_max) &&
|
|
|
|
(this_row_offset > x->mv_row_min) && (this_row_offset < x->mv_row_max))
|
|
|
|
|
|
|
|
{
|
|
|
|
check_here = ss[i].offset + best_address;
|
|
|
|
thissad = fn_ptr->sdf(what, what_stride, check_here, in_what_stride, bestsad);
|
|
|
|
|
|
|
|
if (thissad < bestsad) {
|
|
|
|
this_mv.as_mv.row = this_row_offset;
|
|
|
|
this_mv.as_mv.col = this_col_offset;
|
|
|
|
thissad += mvsad_err_cost(&this_mv, &fcenter_mv,
|
2012-11-09 03:44:39 +04:00
|
|
|
mvjsadcost, mvsadcost, sad_per_bit);
|
2012-07-14 02:21:29 +04:00
|
|
|
|
|
|
|
if (thissad < bestsad) {
|
|
|
|
bestsad = thissad;
|
|
|
|
best_site = i;
|
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
}
|
2012-07-14 02:21:29 +04:00
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
i++;
|
2010-05-18 19:58:33 +04:00
|
|
|
}
|
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
if (best_site != last_site) {
|
|
|
|
best_mv->as_mv.row += ss[best_site].mv.row;
|
|
|
|
best_mv->as_mv.col += ss[best_site].mv.col;
|
|
|
|
best_address += ss[best_site].offset;
|
|
|
|
last_site = best_site;
|
|
|
|
} else if (best_address == in_what)
|
|
|
|
(*num00)++;
|
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
this_mv.as_mv.row = best_mv->as_mv.row << 3;
|
|
|
|
this_mv.as_mv.col = best_mv->as_mv.col << 3;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
if (bestsad == INT_MAX)
|
|
|
|
return INT_MAX;
|
|
|
|
|
2012-08-03 23:17:18 +04:00
|
|
|
return
|
|
|
|
fn_ptr->vf(what, what_stride, best_address, in_what_stride,
|
|
|
|
(unsigned int *)(&thissad)) +
|
2012-11-09 03:44:39 +04:00
|
|
|
mv_err_cost(&this_mv, center_mv, mvjcost, mvcost, x->errorperbit,
|
2012-08-03 23:17:18 +04:00
|
|
|
xd->allow_high_precision_mv);
|
2010-05-18 19:58:33 +04:00
|
|
|
}
|
|
|
|
|
2012-10-30 23:58:42 +04:00
|
|
|
int vp9_diamond_search_sadx4(MACROBLOCK *x, BLOCK *b, BLOCKD *d,
|
2012-08-08 03:44:26 +04:00
|
|
|
int_mv *ref_mv, int_mv *best_mv, int search_param,
|
|
|
|
int sad_per_bit, int *num00,
|
2012-11-01 01:40:53 +04:00
|
|
|
vp9_variance_fn_ptr_t *fn_ptr,
|
2012-11-09 03:44:39 +04:00
|
|
|
int *mvjcost, int *mvcost[2], int_mv *center_mv) {
|
2012-07-14 02:21:29 +04:00
|
|
|
int i, j, step;
|
|
|
|
|
2012-12-19 03:31:19 +04:00
|
|
|
uint8_t *what = (*(b->base_src) + b->src);
|
2012-07-14 02:21:29 +04:00
|
|
|
int what_stride = b->src_stride;
|
2012-12-19 03:31:19 +04:00
|
|
|
uint8_t *in_what;
|
2012-07-14 02:21:29 +04:00
|
|
|
int in_what_stride = d->pre_stride;
|
2012-12-19 03:31:19 +04:00
|
|
|
uint8_t *best_address;
|
2012-07-14 02:21:29 +04:00
|
|
|
|
|
|
|
int tot_steps;
|
|
|
|
int_mv this_mv;
|
|
|
|
|
2012-11-06 02:22:59 +04:00
|
|
|
unsigned int bestsad = INT_MAX;
|
2012-07-14 02:21:29 +04:00
|
|
|
int best_site = 0;
|
|
|
|
int last_site = 0;
|
|
|
|
|
|
|
|
int ref_row;
|
|
|
|
int ref_col;
|
|
|
|
int this_row_offset;
|
|
|
|
int this_col_offset;
|
|
|
|
search_site *ss;
|
|
|
|
|
2012-12-19 03:31:19 +04:00
|
|
|
uint8_t *check_here;
|
2012-07-14 02:21:29 +04:00
|
|
|
unsigned int thissad;
|
|
|
|
MACROBLOCKD *xd = &x->e_mbd;
|
|
|
|
int_mv fcenter_mv;
|
2012-02-29 05:44:19 +04:00
|
|
|
|
2012-07-27 00:42:07 +04:00
|
|
|
int *mvjsadcost = x->nmvjointsadcost;
|
|
|
|
int *mvsadcost[2] = {x->nmvsadcost[0], x->nmvsadcost[1]};
|
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
fcenter_mv.as_mv.row = center_mv->as_mv.row >> 3;
|
|
|
|
fcenter_mv.as_mv.col = center_mv->as_mv.col >> 3;
|
|
|
|
|
2012-11-01 01:40:53 +04:00
|
|
|
clamp_mv(ref_mv, x->mv_col_min, x->mv_col_max, x->mv_row_min, x->mv_row_max);
|
2012-07-14 02:21:29 +04:00
|
|
|
ref_row = ref_mv->as_mv.row;
|
|
|
|
ref_col = ref_mv->as_mv.col;
|
|
|
|
*num00 = 0;
|
|
|
|
best_mv->as_mv.row = ref_row;
|
|
|
|
best_mv->as_mv.col = ref_col;
|
|
|
|
|
|
|
|
// Work out the start point for the search
|
2012-12-19 03:31:19 +04:00
|
|
|
in_what = (uint8_t *)(*(d->base_pre) + d->pre +
|
|
|
|
(ref_row * (d->pre_stride)) + ref_col);
|
2012-07-14 02:21:29 +04:00
|
|
|
best_address = in_what;
|
|
|
|
|
|
|
|
// Check the starting position
|
|
|
|
bestsad = fn_ptr->sdf(what, what_stride,
|
|
|
|
in_what, in_what_stride, 0x7fffffff)
|
2012-11-09 03:44:39 +04:00
|
|
|
+ mvsad_err_cost(best_mv, &fcenter_mv, mvjsadcost, mvsadcost,
|
|
|
|
sad_per_bit);
|
2012-07-14 02:21:29 +04:00
|
|
|
|
|
|
|
// search_param determines the length of the initial step and hence the number of iterations
|
|
|
|
// 0 = initial step (MAX_FIRST_STEP) pel : 1 = (MAX_FIRST_STEP/2) pel, 2 = (MAX_FIRST_STEP/4) pel... etc.
|
|
|
|
ss = &x->ss[search_param * x->searches_per_step];
|
|
|
|
tot_steps = (x->ss_count / x->searches_per_step) - search_param;
|
|
|
|
|
|
|
|
i = 1;
|
|
|
|
|
|
|
|
for (step = 0; step < tot_steps; step++) {
|
|
|
|
int all_in = 1, t;
|
|
|
|
|
|
|
|
// To know if all neighbor points are within the bounds, 4 bounds checking are enough instead of
|
|
|
|
// checking 4 bounds for each points.
|
|
|
|
all_in &= ((best_mv->as_mv.row + ss[i].mv.row) > x->mv_row_min);
|
|
|
|
all_in &= ((best_mv->as_mv.row + ss[i + 1].mv.row) < x->mv_row_max);
|
|
|
|
all_in &= ((best_mv->as_mv.col + ss[i + 2].mv.col) > x->mv_col_min);
|
|
|
|
all_in &= ((best_mv->as_mv.col + ss[i + 3].mv.col) < x->mv_col_max);
|
|
|
|
|
|
|
|
if (all_in) {
|
|
|
|
unsigned int sad_array[4];
|
|
|
|
|
|
|
|
for (j = 0; j < x->searches_per_step; j += 4) {
|
2012-11-21 18:46:25 +04:00
|
|
|
unsigned char const *block_offset[4];
|
2012-07-14 02:21:29 +04:00
|
|
|
|
|
|
|
for (t = 0; t < 4; t++)
|
|
|
|
block_offset[t] = ss[i + t].offset + best_address;
|
|
|
|
|
2012-10-22 07:47:57 +04:00
|
|
|
fn_ptr->sdx4df(what, what_stride, block_offset, in_what_stride,
|
|
|
|
sad_array);
|
2012-07-14 02:21:29 +04:00
|
|
|
|
|
|
|
for (t = 0; t < 4; t++, i++) {
|
|
|
|
if (sad_array[t] < bestsad) {
|
|
|
|
this_mv.as_mv.row = best_mv->as_mv.row + ss[i].mv.row;
|
|
|
|
this_mv.as_mv.col = best_mv->as_mv.col + ss[i].mv.col;
|
|
|
|
sad_array[t] += mvsad_err_cost(&this_mv, &fcenter_mv,
|
2012-11-09 03:44:39 +04:00
|
|
|
mvjsadcost, mvsadcost, sad_per_bit);
|
2012-07-14 02:21:29 +04:00
|
|
|
|
|
|
|
if (sad_array[t] < bestsad) {
|
|
|
|
bestsad = sad_array[t];
|
|
|
|
best_site = i;
|
2010-05-18 19:58:33 +04:00
|
|
|
}
|
2012-07-14 02:21:29 +04:00
|
|
|
}
|
2010-10-14 19:06:37 +04:00
|
|
|
}
|
2012-07-14 02:21:29 +04:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for (j = 0; j < x->searches_per_step; j++) {
|
|
|
|
// Trap illegal vectors
|
|
|
|
this_row_offset = best_mv->as_mv.row + ss[i].mv.row;
|
|
|
|
this_col_offset = best_mv->as_mv.col + ss[i].mv.col;
|
|
|
|
|
|
|
|
if ((this_col_offset > x->mv_col_min) && (this_col_offset < x->mv_col_max) &&
|
|
|
|
(this_row_offset > x->mv_row_min) && (this_row_offset < x->mv_row_max)) {
|
|
|
|
check_here = ss[i].offset + best_address;
|
|
|
|
thissad = fn_ptr->sdf(what, what_stride, check_here, in_what_stride, bestsad);
|
|
|
|
|
|
|
|
if (thissad < bestsad) {
|
|
|
|
this_mv.as_mv.row = this_row_offset;
|
|
|
|
this_mv.as_mv.col = this_col_offset;
|
|
|
|
thissad += mvsad_err_cost(&this_mv, &fcenter_mv,
|
2012-11-09 03:44:39 +04:00
|
|
|
mvjsadcost, mvsadcost, sad_per_bit);
|
2012-07-14 02:21:29 +04:00
|
|
|
|
|
|
|
if (thissad < bestsad) {
|
|
|
|
bestsad = thissad;
|
|
|
|
best_site = i;
|
2010-05-18 19:58:33 +04:00
|
|
|
}
|
2012-07-14 02:21:29 +04:00
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
}
|
2012-07-14 02:21:29 +04:00
|
|
|
i++;
|
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
}
|
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
if (best_site != last_site) {
|
|
|
|
best_mv->as_mv.row += ss[best_site].mv.row;
|
|
|
|
best_mv->as_mv.col += ss[best_site].mv.col;
|
|
|
|
best_address += ss[best_site].offset;
|
|
|
|
last_site = best_site;
|
|
|
|
} else if (best_address == in_what)
|
|
|
|
(*num00)++;
|
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
this_mv.as_mv.row = best_mv->as_mv.row << 3;
|
|
|
|
this_mv.as_mv.col = best_mv->as_mv.col << 3;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
if (bestsad == INT_MAX)
|
|
|
|
return INT_MAX;
|
|
|
|
|
2012-08-03 23:17:18 +04:00
|
|
|
return
|
|
|
|
fn_ptr->vf(what, what_stride, best_address, in_what_stride,
|
|
|
|
(unsigned int *)(&thissad)) +
|
2012-11-09 03:44:39 +04:00
|
|
|
mv_err_cost(&this_mv, center_mv, mvjcost, mvcost, x->errorperbit,
|
2012-08-03 23:17:18 +04:00
|
|
|
xd->allow_high_precision_mv);
|
2010-05-18 19:58:33 +04:00
|
|
|
}
|
|
|
|
|
2012-08-08 22:52:22 +04:00
|
|
|
/* do_refine: If last step (1-away) of n-step search doesn't pick the center
|
|
|
|
point as the best match, we will do a final 1-away diamond
|
|
|
|
refining search */
|
2012-10-31 04:53:32 +04:00
|
|
|
int vp9_full_pixel_diamond(VP9_COMP *cpi, MACROBLOCK *x, BLOCK *b,
|
2012-08-08 03:44:26 +04:00
|
|
|
BLOCKD *d, int_mv *mvp_full, int step_param,
|
|
|
|
int sadpb, int further_steps,
|
2012-11-01 01:40:53 +04:00
|
|
|
int do_refine, vp9_variance_fn_ptr_t *fn_ptr,
|
2012-08-08 03:44:26 +04:00
|
|
|
int_mv *ref_mv, int_mv *dst_mv) {
|
|
|
|
int_mv temp_mv;
|
|
|
|
int thissme, n, num00;
|
|
|
|
int bestsme = cpi->diamond_search_sad(x, b, d, mvp_full, &temp_mv,
|
|
|
|
step_param, sadpb, &num00,
|
2012-11-09 03:44:39 +04:00
|
|
|
fn_ptr, x->nmvjointcost,
|
|
|
|
x->mvcost, ref_mv);
|
2012-08-08 03:44:26 +04:00
|
|
|
dst_mv->as_int = temp_mv.as_int;
|
|
|
|
|
|
|
|
n = num00;
|
|
|
|
num00 = 0;
|
|
|
|
|
|
|
|
/* If there won't be more n-step search, check to see if refining search is needed. */
|
|
|
|
if (n > further_steps)
|
2012-08-08 22:52:22 +04:00
|
|
|
do_refine = 0;
|
2012-08-08 03:44:26 +04:00
|
|
|
|
|
|
|
while (n < further_steps) {
|
|
|
|
n++;
|
|
|
|
|
|
|
|
if (num00)
|
|
|
|
num00--;
|
|
|
|
else {
|
|
|
|
thissme = cpi->diamond_search_sad(x, b, d, mvp_full, &temp_mv,
|
|
|
|
step_param + n, sadpb, &num00,
|
2012-11-09 03:44:39 +04:00
|
|
|
fn_ptr, x->nmvjointcost, x->mvcost,
|
|
|
|
ref_mv);
|
2012-08-08 03:44:26 +04:00
|
|
|
|
|
|
|
/* check to see if refining search is needed. */
|
|
|
|
if (num00 > (further_steps - n))
|
2012-08-08 22:52:22 +04:00
|
|
|
do_refine = 0;
|
2012-08-08 03:44:26 +04:00
|
|
|
|
|
|
|
if (thissme < bestsme) {
|
|
|
|
bestsme = thissme;
|
|
|
|
dst_mv->as_int = temp_mv.as_int;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-08-08 22:52:22 +04:00
|
|
|
|
|
|
|
/* final 1-away diamond refining search */
|
|
|
|
if (do_refine == 1) {
|
|
|
|
int search_range = 8;
|
|
|
|
int_mv best_mv;
|
|
|
|
best_mv.as_int = dst_mv->as_int;
|
|
|
|
thissme = cpi->refining_search_sad(x, b, d, &best_mv, sadpb, search_range,
|
2012-11-09 03:44:39 +04:00
|
|
|
fn_ptr, x->nmvjointcost, x->mvcost,
|
|
|
|
ref_mv);
|
2012-08-08 22:52:22 +04:00
|
|
|
|
|
|
|
if (thissme < bestsme) {
|
|
|
|
bestsme = thissme;
|
|
|
|
dst_mv->as_int = best_mv.as_int;
|
|
|
|
}
|
|
|
|
}
|
2012-08-08 03:44:26 +04:00
|
|
|
return bestsme;
|
|
|
|
}
|
|
|
|
|
2012-11-06 04:58:03 +04:00
|
|
|
int vp9_full_search_sad_c(MACROBLOCK *x, BLOCK *b, BLOCKD *d, int_mv *ref_mv,
|
|
|
|
int sad_per_bit, int distance,
|
2012-11-09 03:44:39 +04:00
|
|
|
vp9_variance_fn_ptr_t *fn_ptr, int *mvjcost,
|
|
|
|
int *mvcost[2],
|
2012-11-06 04:58:03 +04:00
|
|
|
int_mv *center_mv) {
|
2012-12-19 03:31:19 +04:00
|
|
|
uint8_t *what = (*(b->base_src) + b->src);
|
2012-07-14 02:21:29 +04:00
|
|
|
int what_stride = b->src_stride;
|
2012-12-19 03:31:19 +04:00
|
|
|
uint8_t *in_what;
|
2012-07-14 02:21:29 +04:00
|
|
|
int in_what_stride = d->pre_stride;
|
|
|
|
int mv_stride = d->pre_stride;
|
2012-12-19 03:31:19 +04:00
|
|
|
uint8_t *bestaddress;
|
2013-02-09 07:46:36 +04:00
|
|
|
int_mv *best_mv = &d->bmi.as_mv[0];
|
2012-07-14 02:21:29 +04:00
|
|
|
int_mv this_mv;
|
|
|
|
int bestsad = INT_MAX;
|
|
|
|
int r, c;
|
|
|
|
|
2012-12-19 03:31:19 +04:00
|
|
|
uint8_t *check_here;
|
2012-07-14 02:21:29 +04:00
|
|
|
int thissad;
|
|
|
|
MACROBLOCKD *xd = &x->e_mbd;
|
|
|
|
|
|
|
|
int ref_row = ref_mv->as_mv.row;
|
|
|
|
int ref_col = ref_mv->as_mv.col;
|
|
|
|
|
|
|
|
int row_min = ref_row - distance;
|
|
|
|
int row_max = ref_row + distance;
|
|
|
|
int col_min = ref_col - distance;
|
|
|
|
int col_max = ref_col + distance;
|
|
|
|
int_mv fcenter_mv;
|
2012-02-29 05:44:19 +04:00
|
|
|
|
2012-07-27 00:42:07 +04:00
|
|
|
int *mvjsadcost = x->nmvjointsadcost;
|
|
|
|
int *mvsadcost[2] = {x->nmvsadcost[0], x->nmvsadcost[1]};
|
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
fcenter_mv.as_mv.row = center_mv->as_mv.row >> 3;
|
|
|
|
fcenter_mv.as_mv.col = center_mv->as_mv.col >> 3;
|
2011-04-02 00:41:58 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
// Work out the mid point for the search
|
|
|
|
in_what = *(d->base_pre) + d->pre;
|
|
|
|
bestaddress = in_what + (ref_row * d->pre_stride) + ref_col;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
best_mv->as_mv.row = ref_row;
|
|
|
|
best_mv->as_mv.col = ref_col;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
// Baseline value at the centre
|
|
|
|
bestsad = fn_ptr->sdf(what, what_stride, bestaddress,
|
|
|
|
in_what_stride, 0x7fffffff)
|
2012-11-09 03:44:39 +04:00
|
|
|
+ mvsad_err_cost(best_mv, &fcenter_mv, mvjsadcost, mvsadcost,
|
|
|
|
sad_per_bit);
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
// Apply further limits to prevent us looking using vectors that stretch beyiond the UMV border
|
|
|
|
if (col_min < x->mv_col_min)
|
|
|
|
col_min = x->mv_col_min;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
if (col_max > x->mv_col_max)
|
|
|
|
col_max = x->mv_col_max;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
if (row_min < x->mv_row_min)
|
|
|
|
row_min = x->mv_row_min;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
if (row_max > x->mv_row_max)
|
|
|
|
row_max = x->mv_row_max;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
for (r = row_min; r < row_max; r++) {
|
|
|
|
this_mv.as_mv.row = r;
|
|
|
|
check_here = r * mv_stride + in_what + col_min;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
for (c = col_min; c < col_max; c++) {
|
|
|
|
thissad = fn_ptr->sdf(what, what_stride, check_here, in_what_stride, bestsad);
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
this_mv.as_mv.col = c;
|
|
|
|
thissad += mvsad_err_cost(&this_mv, &fcenter_mv,
|
2012-11-09 03:44:39 +04:00
|
|
|
mvjsadcost, mvsadcost, sad_per_bit);
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
if (thissad < bestsad) {
|
|
|
|
bestsad = thissad;
|
|
|
|
best_mv->as_mv.row = r;
|
|
|
|
best_mv->as_mv.col = c;
|
|
|
|
bestaddress = check_here;
|
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
check_here++;
|
2010-05-18 19:58:33 +04:00
|
|
|
}
|
2012-07-14 02:21:29 +04:00
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
this_mv.as_mv.row = best_mv->as_mv.row << 3;
|
|
|
|
this_mv.as_mv.col = best_mv->as_mv.col << 3;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
if (bestsad < INT_MAX)
|
2012-08-03 23:17:18 +04:00
|
|
|
return
|
|
|
|
fn_ptr->vf(what, what_stride, bestaddress, in_what_stride,
|
|
|
|
(unsigned int *)(&thissad)) +
|
2012-11-09 03:44:39 +04:00
|
|
|
mv_err_cost(&this_mv, center_mv, mvjcost, mvcost, x->errorperbit,
|
2012-08-03 23:17:18 +04:00
|
|
|
xd->allow_high_precision_mv);
|
2012-07-14 02:21:29 +04:00
|
|
|
else
|
|
|
|
return INT_MAX;
|
2010-05-18 19:58:33 +04:00
|
|
|
}
|
|
|
|
|
2012-10-30 23:58:42 +04:00
|
|
|
int vp9_full_search_sadx3(MACROBLOCK *x, BLOCK *b, BLOCKD *d, int_mv *ref_mv,
|
2011-05-26 03:07:37 +04:00
|
|
|
int sad_per_bit, int distance,
|
2012-11-09 03:44:39 +04:00
|
|
|
vp9_variance_fn_ptr_t *fn_ptr, int *mvjcost,
|
|
|
|
int *mvcost[2], int_mv *center_mv) {
|
2012-12-19 03:31:19 +04:00
|
|
|
uint8_t *what = (*(b->base_src) + b->src);
|
2012-07-14 02:21:29 +04:00
|
|
|
int what_stride = b->src_stride;
|
2012-12-19 03:31:19 +04:00
|
|
|
uint8_t *in_what;
|
2012-07-14 02:21:29 +04:00
|
|
|
int in_what_stride = d->pre_stride;
|
|
|
|
int mv_stride = d->pre_stride;
|
2012-12-19 03:31:19 +04:00
|
|
|
uint8_t *bestaddress;
|
2013-02-09 07:46:36 +04:00
|
|
|
int_mv *best_mv = &d->bmi.as_mv[0];
|
2012-07-14 02:21:29 +04:00
|
|
|
int_mv this_mv;
|
2012-11-06 02:22:59 +04:00
|
|
|
unsigned int bestsad = INT_MAX;
|
2012-07-14 02:21:29 +04:00
|
|
|
int r, c;
|
|
|
|
|
2012-12-19 03:31:19 +04:00
|
|
|
uint8_t *check_here;
|
2012-07-14 02:21:29 +04:00
|
|
|
unsigned int thissad;
|
|
|
|
MACROBLOCKD *xd = &x->e_mbd;
|
|
|
|
|
|
|
|
int ref_row = ref_mv->as_mv.row;
|
|
|
|
int ref_col = ref_mv->as_mv.col;
|
|
|
|
|
|
|
|
int row_min = ref_row - distance;
|
|
|
|
int row_max = ref_row + distance;
|
|
|
|
int col_min = ref_col - distance;
|
|
|
|
int col_max = ref_col + distance;
|
|
|
|
|
|
|
|
unsigned int sad_array[3];
|
|
|
|
int_mv fcenter_mv;
|
2012-02-29 05:44:19 +04:00
|
|
|
|
2012-07-27 00:42:07 +04:00
|
|
|
int *mvjsadcost = x->nmvjointsadcost;
|
|
|
|
int *mvsadcost[2] = {x->nmvsadcost[0], x->nmvsadcost[1]};
|
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
fcenter_mv.as_mv.row = center_mv->as_mv.row >> 3;
|
|
|
|
fcenter_mv.as_mv.col = center_mv->as_mv.col >> 3;
|
|
|
|
|
|
|
|
// Work out the mid point for the search
|
|
|
|
in_what = *(d->base_pre) + d->pre;
|
|
|
|
bestaddress = in_what + (ref_row * d->pre_stride) + ref_col;
|
|
|
|
|
|
|
|
best_mv->as_mv.row = ref_row;
|
|
|
|
best_mv->as_mv.col = ref_col;
|
|
|
|
|
|
|
|
// Baseline value at the centre
|
|
|
|
bestsad = fn_ptr->sdf(what, what_stride,
|
|
|
|
bestaddress, in_what_stride, 0x7fffffff)
|
2012-11-09 03:44:39 +04:00
|
|
|
+ mvsad_err_cost(best_mv, &fcenter_mv, mvjsadcost, mvsadcost,
|
|
|
|
sad_per_bit);
|
2012-07-14 02:21:29 +04:00
|
|
|
|
|
|
|
// Apply further limits to prevent us looking using vectors that stretch beyiond the UMV border
|
|
|
|
if (col_min < x->mv_col_min)
|
|
|
|
col_min = x->mv_col_min;
|
|
|
|
|
|
|
|
if (col_max > x->mv_col_max)
|
|
|
|
col_max = x->mv_col_max;
|
|
|
|
|
|
|
|
if (row_min < x->mv_row_min)
|
|
|
|
row_min = x->mv_row_min;
|
|
|
|
|
|
|
|
if (row_max > x->mv_row_max)
|
|
|
|
row_max = x->mv_row_max;
|
|
|
|
|
|
|
|
for (r = row_min; r < row_max; r++) {
|
|
|
|
this_mv.as_mv.row = r;
|
|
|
|
check_here = r * mv_stride + in_what + col_min;
|
|
|
|
c = col_min;
|
|
|
|
|
|
|
|
while ((c + 2) < col_max) {
|
|
|
|
int i;
|
|
|
|
|
|
|
|
fn_ptr->sdx3f(what, what_stride, check_here, in_what_stride, sad_array);
|
|
|
|
|
|
|
|
for (i = 0; i < 3; i++) {
|
|
|
|
thissad = sad_array[i];
|
|
|
|
|
|
|
|
if (thissad < bestsad) {
|
|
|
|
this_mv.as_mv.col = c;
|
|
|
|
thissad += mvsad_err_cost(&this_mv, &fcenter_mv,
|
2012-11-09 03:44:39 +04:00
|
|
|
mvjsadcost, mvsadcost, sad_per_bit);
|
2012-07-14 02:21:29 +04:00
|
|
|
|
|
|
|
if (thissad < bestsad) {
|
|
|
|
bestsad = thissad;
|
|
|
|
best_mv->as_mv.row = r;
|
|
|
|
best_mv->as_mv.col = c;
|
|
|
|
bestaddress = check_here;
|
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
}
|
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
check_here++;
|
|
|
|
c++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
while (c < col_max) {
|
|
|
|
thissad = fn_ptr->sdf(what, what_stride, check_here, in_what_stride, bestsad);
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
if (thissad < bestsad) {
|
|
|
|
this_mv.as_mv.col = c;
|
|
|
|
thissad += mvsad_err_cost(&this_mv, &fcenter_mv,
|
2012-11-09 03:44:39 +04:00
|
|
|
mvjsadcost, mvsadcost, sad_per_bit);
|
2012-07-14 02:21:29 +04:00
|
|
|
|
|
|
|
if (thissad < bestsad) {
|
|
|
|
bestsad = thissad;
|
|
|
|
best_mv->as_mv.row = r;
|
|
|
|
best_mv->as_mv.col = c;
|
|
|
|
bestaddress = check_here;
|
2010-05-18 19:58:33 +04:00
|
|
|
}
|
2012-07-14 02:21:29 +04:00
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
check_here++;
|
|
|
|
c++;
|
2010-05-18 19:58:33 +04:00
|
|
|
}
|
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
this_mv.as_mv.row = best_mv->as_mv.row << 3;
|
|
|
|
this_mv.as_mv.col = best_mv->as_mv.col << 3;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
if (bestsad < INT_MAX)
|
2012-08-03 23:17:18 +04:00
|
|
|
return
|
|
|
|
fn_ptr->vf(what, what_stride, bestaddress, in_what_stride,
|
|
|
|
(unsigned int *)(&thissad)) +
|
2012-11-09 03:44:39 +04:00
|
|
|
mv_err_cost(&this_mv, center_mv, mvjcost, mvcost, x->errorperbit,
|
2012-08-03 23:17:18 +04:00
|
|
|
xd->allow_high_precision_mv);
|
2012-07-14 02:21:29 +04:00
|
|
|
else
|
|
|
|
return INT_MAX;
|
2010-05-18 19:58:33 +04:00
|
|
|
}
|
|
|
|
|
2012-10-30 23:58:42 +04:00
|
|
|
int vp9_full_search_sadx8(MACROBLOCK *x, BLOCK *b, BLOCKD *d, int_mv *ref_mv,
|
2011-05-26 03:07:37 +04:00
|
|
|
int sad_per_bit, int distance,
|
2012-11-01 01:40:53 +04:00
|
|
|
vp9_variance_fn_ptr_t *fn_ptr,
|
2012-11-09 03:44:39 +04:00
|
|
|
int *mvjcost, int *mvcost[2],
|
2012-07-14 02:21:29 +04:00
|
|
|
int_mv *center_mv) {
|
2012-12-19 03:31:19 +04:00
|
|
|
uint8_t *what = (*(b->base_src) + b->src);
|
2012-07-14 02:21:29 +04:00
|
|
|
int what_stride = b->src_stride;
|
2012-12-19 03:31:19 +04:00
|
|
|
uint8_t *in_what;
|
2012-07-14 02:21:29 +04:00
|
|
|
int in_what_stride = d->pre_stride;
|
|
|
|
int mv_stride = d->pre_stride;
|
2012-12-19 03:31:19 +04:00
|
|
|
uint8_t *bestaddress;
|
2013-02-09 07:46:36 +04:00
|
|
|
int_mv *best_mv = &d->bmi.as_mv[0];
|
2012-07-14 02:21:29 +04:00
|
|
|
int_mv this_mv;
|
2012-11-06 02:22:59 +04:00
|
|
|
unsigned int bestsad = INT_MAX;
|
2012-07-14 02:21:29 +04:00
|
|
|
int r, c;
|
|
|
|
|
2012-12-19 03:31:19 +04:00
|
|
|
uint8_t *check_here;
|
2012-07-14 02:21:29 +04:00
|
|
|
unsigned int thissad;
|
|
|
|
MACROBLOCKD *xd = &x->e_mbd;
|
|
|
|
|
|
|
|
int ref_row = ref_mv->as_mv.row;
|
|
|
|
int ref_col = ref_mv->as_mv.col;
|
|
|
|
|
|
|
|
int row_min = ref_row - distance;
|
|
|
|
int row_max = ref_row + distance;
|
|
|
|
int col_min = ref_col - distance;
|
|
|
|
int col_max = ref_col + distance;
|
|
|
|
|
2012-12-19 03:31:19 +04:00
|
|
|
DECLARE_ALIGNED_ARRAY(16, uint16_t, sad_array8, 8);
|
2012-07-14 02:21:29 +04:00
|
|
|
unsigned int sad_array[3];
|
|
|
|
int_mv fcenter_mv;
|
2012-02-29 05:44:19 +04:00
|
|
|
|
2012-07-27 00:42:07 +04:00
|
|
|
int *mvjsadcost = x->nmvjointsadcost;
|
|
|
|
int *mvsadcost[2] = {x->nmvsadcost[0], x->nmvsadcost[1]};
|
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
fcenter_mv.as_mv.row = center_mv->as_mv.row >> 3;
|
|
|
|
fcenter_mv.as_mv.col = center_mv->as_mv.col >> 3;
|
|
|
|
|
|
|
|
// Work out the mid point for the search
|
|
|
|
in_what = *(d->base_pre) + d->pre;
|
|
|
|
bestaddress = in_what + (ref_row * d->pre_stride) + ref_col;
|
|
|
|
|
|
|
|
best_mv->as_mv.row = ref_row;
|
|
|
|
best_mv->as_mv.col = ref_col;
|
|
|
|
|
|
|
|
// Baseline value at the centre
|
|
|
|
bestsad = fn_ptr->sdf(what, what_stride,
|
|
|
|
bestaddress, in_what_stride, 0x7fffffff)
|
2012-11-09 03:44:39 +04:00
|
|
|
+ mvsad_err_cost(best_mv, &fcenter_mv, mvjsadcost, mvsadcost,
|
|
|
|
sad_per_bit);
|
2012-07-14 02:21:29 +04:00
|
|
|
|
|
|
|
// Apply further limits to prevent us looking using vectors that stretch beyiond the UMV border
|
|
|
|
if (col_min < x->mv_col_min)
|
|
|
|
col_min = x->mv_col_min;
|
|
|
|
|
|
|
|
if (col_max > x->mv_col_max)
|
|
|
|
col_max = x->mv_col_max;
|
|
|
|
|
|
|
|
if (row_min < x->mv_row_min)
|
|
|
|
row_min = x->mv_row_min;
|
|
|
|
|
|
|
|
if (row_max > x->mv_row_max)
|
|
|
|
row_max = x->mv_row_max;
|
|
|
|
|
|
|
|
for (r = row_min; r < row_max; r++) {
|
|
|
|
this_mv.as_mv.row = r;
|
|
|
|
check_here = r * mv_stride + in_what + col_min;
|
|
|
|
c = col_min;
|
|
|
|
|
|
|
|
while ((c + 7) < col_max) {
|
|
|
|
int i;
|
|
|
|
|
|
|
|
fn_ptr->sdx8f(what, what_stride, check_here, in_what_stride, sad_array8);
|
|
|
|
|
|
|
|
for (i = 0; i < 8; i++) {
|
|
|
|
thissad = (unsigned int)sad_array8[i];
|
|
|
|
|
|
|
|
if (thissad < bestsad) {
|
|
|
|
this_mv.as_mv.col = c;
|
|
|
|
thissad += mvsad_err_cost(&this_mv, &fcenter_mv,
|
2012-11-09 03:44:39 +04:00
|
|
|
mvjsadcost, mvsadcost, sad_per_bit);
|
2012-07-14 02:21:29 +04:00
|
|
|
|
|
|
|
if (thissad < bestsad) {
|
|
|
|
bestsad = thissad;
|
|
|
|
best_mv->as_mv.row = r;
|
|
|
|
best_mv->as_mv.col = c;
|
|
|
|
bestaddress = check_here;
|
|
|
|
}
|
2010-10-27 16:45:24 +04:00
|
|
|
}
|
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
check_here++;
|
|
|
|
c++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
while ((c + 2) < col_max) {
|
|
|
|
int i;
|
|
|
|
|
|
|
|
fn_ptr->sdx3f(what, what_stride, check_here, in_what_stride, sad_array);
|
|
|
|
|
|
|
|
for (i = 0; i < 3; i++) {
|
|
|
|
thissad = sad_array[i];
|
|
|
|
|
|
|
|
if (thissad < bestsad) {
|
|
|
|
this_mv.as_mv.col = c;
|
|
|
|
thissad += mvsad_err_cost(&this_mv, &fcenter_mv,
|
2012-11-09 03:44:39 +04:00
|
|
|
mvjsadcost, mvsadcost, sad_per_bit);
|
2012-07-14 02:21:29 +04:00
|
|
|
|
|
|
|
if (thissad < bestsad) {
|
|
|
|
bestsad = thissad;
|
|
|
|
best_mv->as_mv.row = r;
|
|
|
|
best_mv->as_mv.col = c;
|
|
|
|
bestaddress = check_here;
|
|
|
|
}
|
2010-10-27 16:45:24 +04:00
|
|
|
}
|
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
check_here++;
|
|
|
|
c++;
|
|
|
|
}
|
|
|
|
}
|
2010-10-27 16:45:24 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
while (c < col_max) {
|
|
|
|
thissad = fn_ptr->sdf(what, what_stride, check_here, in_what_stride, bestsad);
|
|
|
|
|
|
|
|
if (thissad < bestsad) {
|
|
|
|
this_mv.as_mv.col = c;
|
|
|
|
thissad += mvsad_err_cost(&this_mv, &fcenter_mv,
|
2012-11-09 03:44:39 +04:00
|
|
|
mvjsadcost, mvsadcost, sad_per_bit);
|
2012-07-14 02:21:29 +04:00
|
|
|
|
|
|
|
if (thissad < bestsad) {
|
|
|
|
bestsad = thissad;
|
|
|
|
best_mv->as_mv.row = r;
|
|
|
|
best_mv->as_mv.col = c;
|
|
|
|
bestaddress = check_here;
|
2010-10-27 16:45:24 +04:00
|
|
|
}
|
2012-07-14 02:21:29 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
check_here++;
|
|
|
|
c++;
|
2010-10-27 16:45:24 +04:00
|
|
|
}
|
2012-07-14 02:21:29 +04:00
|
|
|
}
|
2010-10-27 16:45:24 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
this_mv.as_mv.row = best_mv->as_mv.row << 3;
|
|
|
|
this_mv.as_mv.col = best_mv->as_mv.col << 3;
|
2010-10-27 16:45:24 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
if (bestsad < INT_MAX)
|
2012-08-03 23:17:18 +04:00
|
|
|
return
|
|
|
|
fn_ptr->vf(what, what_stride, bestaddress, in_what_stride,
|
|
|
|
(unsigned int *)(&thissad)) +
|
2012-11-09 03:44:39 +04:00
|
|
|
mv_err_cost(&this_mv, center_mv, mvjcost, mvcost, x->errorperbit,
|
2012-08-03 23:17:18 +04:00
|
|
|
xd->allow_high_precision_mv);
|
2012-07-14 02:21:29 +04:00
|
|
|
else
|
|
|
|
return INT_MAX;
|
2010-10-27 16:45:24 +04:00
|
|
|
}
|
2012-11-06 04:58:03 +04:00
|
|
|
int vp9_refining_search_sad_c(MACROBLOCK *x, BLOCK *b, BLOCKD *d,
|
|
|
|
int_mv *ref_mv, int error_per_bit,
|
|
|
|
int search_range, vp9_variance_fn_ptr_t *fn_ptr,
|
2012-11-09 03:44:39 +04:00
|
|
|
int *mvjcost, int *mvcost[2], int_mv *center_mv) {
|
2012-07-14 02:21:29 +04:00
|
|
|
MV neighbors[4] = {{ -1, 0}, {0, -1}, {0, 1}, {1, 0}};
|
|
|
|
int i, j;
|
2012-12-19 03:31:19 +04:00
|
|
|
int this_row_offset, this_col_offset;
|
2012-07-14 02:21:29 +04:00
|
|
|
|
|
|
|
int what_stride = b->src_stride;
|
|
|
|
int in_what_stride = d->pre_stride;
|
2012-12-19 03:31:19 +04:00
|
|
|
uint8_t *what = (*(b->base_src) + b->src);
|
|
|
|
uint8_t *best_address = (uint8_t *)(*(d->base_pre) + d->pre +
|
|
|
|
(ref_mv->as_mv.row * (d->pre_stride)) +
|
|
|
|
ref_mv->as_mv.col);
|
|
|
|
uint8_t *check_here;
|
2012-07-14 02:21:29 +04:00
|
|
|
unsigned int thissad;
|
|
|
|
int_mv this_mv;
|
|
|
|
unsigned int bestsad = INT_MAX;
|
|
|
|
MACROBLOCKD *xd = &x->e_mbd;
|
|
|
|
int_mv fcenter_mv;
|
2012-02-29 05:44:19 +04:00
|
|
|
|
2012-07-27 00:42:07 +04:00
|
|
|
int *mvjsadcost = x->nmvjointsadcost;
|
|
|
|
int *mvsadcost[2] = {x->nmvsadcost[0], x->nmvsadcost[1]};
|
2011-05-06 20:51:31 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
fcenter_mv.as_mv.row = center_mv->as_mv.row >> 3;
|
|
|
|
fcenter_mv.as_mv.col = center_mv->as_mv.col >> 3;
|
|
|
|
|
2012-07-27 00:42:07 +04:00
|
|
|
bestsad = fn_ptr->sdf(what, what_stride, best_address, in_what_stride, 0x7fffffff) +
|
2012-11-09 03:44:39 +04:00
|
|
|
mvsad_err_cost(ref_mv, &fcenter_mv, mvjsadcost, mvsadcost, error_per_bit);
|
2012-07-14 02:21:29 +04:00
|
|
|
|
|
|
|
for (i = 0; i < search_range; i++) {
|
|
|
|
int best_site = -1;
|
|
|
|
|
|
|
|
for (j = 0; j < 4; j++) {
|
|
|
|
this_row_offset = ref_mv->as_mv.row + neighbors[j].row;
|
|
|
|
this_col_offset = ref_mv->as_mv.col + neighbors[j].col;
|
2011-05-06 20:51:31 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
if ((this_col_offset > x->mv_col_min) && (this_col_offset < x->mv_col_max) &&
|
|
|
|
(this_row_offset > x->mv_row_min) && (this_row_offset < x->mv_row_max)) {
|
|
|
|
check_here = (neighbors[j].row) * in_what_stride + neighbors[j].col + best_address;
|
|
|
|
thissad = fn_ptr->sdf(what, what_stride, check_here, in_what_stride, bestsad);
|
|
|
|
|
|
|
|
if (thissad < bestsad) {
|
|
|
|
this_mv.as_mv.row = this_row_offset;
|
|
|
|
this_mv.as_mv.col = this_col_offset;
|
2012-11-09 03:44:39 +04:00
|
|
|
thissad += mvsad_err_cost(&this_mv, &fcenter_mv, mvjsadcost,
|
|
|
|
mvsadcost, error_per_bit);
|
2012-07-14 02:21:29 +04:00
|
|
|
|
|
|
|
if (thissad < bestsad) {
|
|
|
|
bestsad = thissad;
|
|
|
|
best_site = j;
|
|
|
|
}
|
2011-05-11 21:38:29 +04:00
|
|
|
}
|
2012-07-14 02:21:29 +04:00
|
|
|
}
|
2011-05-06 20:51:31 +04:00
|
|
|
}
|
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
if (best_site == -1)
|
|
|
|
break;
|
|
|
|
else {
|
|
|
|
ref_mv->as_mv.row += neighbors[best_site].row;
|
|
|
|
ref_mv->as_mv.col += neighbors[best_site].col;
|
|
|
|
best_address += (neighbors[best_site].row) * in_what_stride + neighbors[best_site].col;
|
|
|
|
}
|
|
|
|
}
|
2011-05-06 20:51:31 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
this_mv.as_mv.row = ref_mv->as_mv.row << 3;
|
|
|
|
this_mv.as_mv.col = ref_mv->as_mv.col << 3;
|
|
|
|
|
|
|
|
if (bestsad < INT_MAX)
|
2012-08-03 23:17:18 +04:00
|
|
|
return
|
|
|
|
fn_ptr->vf(what, what_stride, best_address, in_what_stride,
|
|
|
|
(unsigned int *)(&thissad)) +
|
2012-11-09 03:44:39 +04:00
|
|
|
mv_err_cost(&this_mv, center_mv, mvjcost, mvcost, x->errorperbit,
|
2012-08-03 23:17:18 +04:00
|
|
|
xd->allow_high_precision_mv);
|
2012-07-14 02:21:29 +04:00
|
|
|
else
|
|
|
|
return INT_MAX;
|
2011-05-06 20:51:31 +04:00
|
|
|
}
|
|
|
|
|
2012-10-30 23:58:42 +04:00
|
|
|
int vp9_refining_search_sadx4(MACROBLOCK *x, BLOCK *b, BLOCKD *d,
|
2011-05-12 18:50:16 +04:00
|
|
|
int_mv *ref_mv, int error_per_bit,
|
2012-11-01 01:40:53 +04:00
|
|
|
int search_range, vp9_variance_fn_ptr_t *fn_ptr,
|
2012-11-09 03:44:39 +04:00
|
|
|
int *mvjcost, int *mvcost[2], int_mv *center_mv) {
|
2012-07-14 02:21:29 +04:00
|
|
|
MV neighbors[4] = {{ -1, 0}, {0, -1}, {0, 1}, {1, 0}};
|
|
|
|
int i, j;
|
2012-12-19 03:31:19 +04:00
|
|
|
int this_row_offset, this_col_offset;
|
2012-07-14 02:21:29 +04:00
|
|
|
|
|
|
|
int what_stride = b->src_stride;
|
|
|
|
int in_what_stride = d->pre_stride;
|
2012-12-19 03:31:19 +04:00
|
|
|
uint8_t *what = (*(b->base_src) + b->src);
|
|
|
|
uint8_t *best_address = (uint8_t *)(*(d->base_pre) + d->pre +
|
|
|
|
(ref_mv->as_mv.row * (d->pre_stride)) +
|
|
|
|
ref_mv->as_mv.col);
|
|
|
|
uint8_t *check_here;
|
2012-07-14 02:21:29 +04:00
|
|
|
unsigned int thissad;
|
|
|
|
int_mv this_mv;
|
|
|
|
unsigned int bestsad = INT_MAX;
|
|
|
|
MACROBLOCKD *xd = &x->e_mbd;
|
|
|
|
int_mv fcenter_mv;
|
2012-02-29 05:44:19 +04:00
|
|
|
|
2012-07-27 00:42:07 +04:00
|
|
|
int *mvjsadcost = x->nmvjointsadcost;
|
|
|
|
int *mvsadcost[2] = {x->nmvsadcost[0], x->nmvsadcost[1]};
|
2011-05-06 20:51:31 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
fcenter_mv.as_mv.row = center_mv->as_mv.row >> 3;
|
|
|
|
fcenter_mv.as_mv.col = center_mv->as_mv.col >> 3;
|
|
|
|
|
2012-07-27 00:42:07 +04:00
|
|
|
bestsad = fn_ptr->sdf(what, what_stride, best_address, in_what_stride, 0x7fffffff) +
|
2012-11-09 03:44:39 +04:00
|
|
|
mvsad_err_cost(ref_mv, &fcenter_mv, mvjsadcost, mvsadcost, error_per_bit);
|
2012-07-14 02:21:29 +04:00
|
|
|
|
|
|
|
for (i = 0; i < search_range; i++) {
|
|
|
|
int best_site = -1;
|
|
|
|
int all_in = 1;
|
|
|
|
|
|
|
|
all_in &= ((ref_mv->as_mv.row - 1) > x->mv_row_min);
|
|
|
|
all_in &= ((ref_mv->as_mv.row + 1) < x->mv_row_max);
|
|
|
|
all_in &= ((ref_mv->as_mv.col - 1) > x->mv_col_min);
|
|
|
|
all_in &= ((ref_mv->as_mv.col + 1) < x->mv_col_max);
|
|
|
|
|
|
|
|
if (all_in) {
|
|
|
|
unsigned int sad_array[4];
|
2012-11-19 00:33:18 +04:00
|
|
|
unsigned char const *block_offset[4];
|
2012-07-14 02:21:29 +04:00
|
|
|
block_offset[0] = best_address - in_what_stride;
|
|
|
|
block_offset[1] = best_address - 1;
|
|
|
|
block_offset[2] = best_address + 1;
|
|
|
|
block_offset[3] = best_address + in_what_stride;
|
|
|
|
|
|
|
|
fn_ptr->sdx4df(what, what_stride, block_offset, in_what_stride, sad_array);
|
|
|
|
|
|
|
|
for (j = 0; j < 4; j++) {
|
|
|
|
if (sad_array[j] < bestsad) {
|
|
|
|
this_mv.as_mv.row = ref_mv->as_mv.row + neighbors[j].row;
|
|
|
|
this_mv.as_mv.col = ref_mv->as_mv.col + neighbors[j].col;
|
2012-11-09 03:44:39 +04:00
|
|
|
sad_array[j] += mvsad_err_cost(&this_mv, &fcenter_mv, mvjsadcost,
|
|
|
|
mvsadcost, error_per_bit);
|
2012-07-14 02:21:29 +04:00
|
|
|
|
|
|
|
if (sad_array[j] < bestsad) {
|
|
|
|
bestsad = sad_array[j];
|
|
|
|
best_site = j;
|
|
|
|
}
|
2011-05-06 20:51:31 +04:00
|
|
|
}
|
2012-07-14 02:21:29 +04:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for (j = 0; j < 4; j++) {
|
|
|
|
this_row_offset = ref_mv->as_mv.row + neighbors[j].row;
|
|
|
|
this_col_offset = ref_mv->as_mv.col + neighbors[j].col;
|
|
|
|
|
|
|
|
if ((this_col_offset > x->mv_col_min) && (this_col_offset < x->mv_col_max) &&
|
|
|
|
(this_row_offset > x->mv_row_min) && (this_row_offset < x->mv_row_max)) {
|
|
|
|
check_here = (neighbors[j].row) * in_what_stride + neighbors[j].col + best_address;
|
|
|
|
thissad = fn_ptr->sdf(what, what_stride, check_here, in_what_stride, bestsad);
|
|
|
|
|
|
|
|
if (thissad < bestsad) {
|
|
|
|
this_mv.as_mv.row = this_row_offset;
|
|
|
|
this_mv.as_mv.col = this_col_offset;
|
2012-11-09 03:44:39 +04:00
|
|
|
thissad += mvsad_err_cost(&this_mv, &fcenter_mv, mvjsadcost,
|
|
|
|
mvsadcost, error_per_bit);
|
2012-07-14 02:21:29 +04:00
|
|
|
|
|
|
|
if (thissad < bestsad) {
|
|
|
|
bestsad = thissad;
|
|
|
|
best_site = j;
|
2011-05-06 20:51:31 +04:00
|
|
|
}
|
2012-07-14 02:21:29 +04:00
|
|
|
}
|
2011-05-06 20:51:31 +04:00
|
|
|
}
|
2012-07-14 02:21:29 +04:00
|
|
|
}
|
|
|
|
}
|
2011-05-06 20:51:31 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
if (best_site == -1)
|
|
|
|
break;
|
|
|
|
else {
|
|
|
|
ref_mv->as_mv.row += neighbors[best_site].row;
|
|
|
|
ref_mv->as_mv.col += neighbors[best_site].col;
|
|
|
|
best_address += (neighbors[best_site].row) * in_what_stride + neighbors[best_site].col;
|
2011-05-06 20:51:31 +04:00
|
|
|
}
|
2012-07-14 02:21:29 +04:00
|
|
|
}
|
2011-05-06 20:51:31 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
this_mv.as_mv.row = ref_mv->as_mv.row << 3;
|
|
|
|
this_mv.as_mv.col = ref_mv->as_mv.col << 3;
|
2011-05-06 20:51:31 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
if (bestsad < INT_MAX)
|
2012-08-03 23:17:18 +04:00
|
|
|
return
|
|
|
|
fn_ptr->vf(what, what_stride, best_address, in_what_stride,
|
|
|
|
(unsigned int *)(&thissad)) +
|
2012-11-09 03:44:39 +04:00
|
|
|
mv_err_cost(&this_mv, center_mv, mvjcost, mvcost, x->errorperbit,
|
2012-08-03 23:17:18 +04:00
|
|
|
xd->allow_high_precision_mv);
|
2012-07-14 02:21:29 +04:00
|
|
|
else
|
|
|
|
return INT_MAX;
|
2011-05-06 20:51:31 +04:00
|
|
|
}
|
|
|
|
|
2011-12-07 00:03:42 +04:00
|
|
|
|
|
|
|
|
2010-05-18 19:58:33 +04:00
|
|
|
#ifdef ENTROPY_STATS
|
2013-02-15 15:34:25 +04:00
|
|
|
void print_mode_context(VP9_COMMON *pc) {
|
2012-11-28 01:59:17 +04:00
|
|
|
FILE *f = fopen("vp9_modecont.c", "a");
|
2012-07-14 02:21:29 +04:00
|
|
|
int i, j;
|
|
|
|
|
2012-11-28 01:59:17 +04:00
|
|
|
fprintf(f, "#include \"vp9_entropy.h\"\n");
|
2013-02-15 15:34:25 +04:00
|
|
|
fprintf(f, "const int vp9_mode_contexts[INTER_MODE_CONTEXTS][4] =");
|
2012-07-14 02:21:29 +04:00
|
|
|
fprintf(f, "{\n");
|
2013-02-15 15:34:25 +04:00
|
|
|
for (j = 0; j < INTER_MODE_CONTEXTS; j++) {
|
2012-07-14 02:21:29 +04:00
|
|
|
fprintf(f, " {/* %d */ ", j);
|
|
|
|
fprintf(f, " ");
|
|
|
|
for (i = 0; i < 4; i++) {
|
|
|
|
int this_prob;
|
|
|
|
|
|
|
|
// context probs
|
2013-02-15 15:34:25 +04:00
|
|
|
this_prob = get_binary_prob(pc->fc.mv_ref_ct[j][i][0],
|
|
|
|
pc->fc.mv_ref_ct[j][i][1]);
|
Consistently use get_prob(), clip_prob() and newly added clip_pixel().
Add a function clip_pixel() to clip a pixel value to the [0,255] range
of allowed values, and use this where-ever appropriate (e.g. prediction,
reconstruction). Likewise, consistently use the recently added function
clip_prob(), which calculates a binary probability in the [1,255] range.
If possible, try to use get_prob() or its sister get_binary_prob() to
calculate binary probabilities, for consistency.
Since in some places, this means that binary probability calculations
are changed (we use {255,256}*count0/(total) in a range of places,
and all of these are now changed to use 256*count0+(total>>1)/total),
this changes the encoding result, so this patch warrants some extensive
testing.
Change-Id: Ibeeff8d886496839b8e0c0ace9ccc552351f7628
2012-12-11 00:09:07 +04:00
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
fprintf(f, "%5d, ", this_prob);
|
|
|
|
}
|
|
|
|
fprintf(f, " },\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(f, "};\n");
|
|
|
|
fclose(f);
|
2010-05-18 19:58:33 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif/* END MV ref count ENTROPY_STATS stats code */
|