2010-05-18 17:58:33 +02:00
|
|
|
/*
|
2010-09-09 14:16:39 +02:00
|
|
|
* Copyright (c) 2010 The WebM project authors. All Rights Reserved.
|
2010-05-18 17:58:33 +02:00
|
|
|
*
|
2010-06-18 18:39:21 +02:00
|
|
|
* Use of this source code is governed by a BSD-style license
|
2010-06-04 22:19:40 +02:00
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
2010-06-18 18:39:21 +02:00
|
|
|
* in the file PATENTS. All contributing project authors may
|
2010-06-04 22:19:40 +02:00
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
2010-05-18 17:58:33 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "findnearmv.h"
|
2012-08-18 00:37:51 +02:00
|
|
|
#include "vp8/encoder/variance.h"
|
2012-08-06 19:51:20 +02:00
|
|
|
#include <limits.h>
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2011-03-17 22:07:59 +01:00
|
|
|
const unsigned char vp8_mbsplit_offset[4][16] = {
|
2012-07-14 00:21:29 +02:00
|
|
|
{ 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
|
|
|
{ 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
|
|
|
{ 0, 2, 8, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
|
|
|
{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}
|
2011-03-17 22:07:59 +01:00
|
|
|
};
|
|
|
|
|
2012-08-06 19:51:20 +02:00
|
|
|
static void lower_mv_precision(int_mv *mv)
|
|
|
|
{
|
|
|
|
if (mv->as_mv.row & 1)
|
|
|
|
mv->as_mv.row += (mv->as_mv.row > 0 ? -1 : 1);
|
|
|
|
if (mv->as_mv.col & 1)
|
|
|
|
mv->as_mv.col += (mv->as_mv.col > 0 ? -1 : 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-05-18 17:58:33 +02:00
|
|
|
/* Predict motion vectors using those from already-decoded nearby blocks.
|
|
|
|
Note that we only consider one 4x4 subblock from each candidate 16x16
|
|
|
|
macroblock. */
|
2012-02-27 19:22:38 +01:00
|
|
|
|
2010-05-18 17:58:33 +02:00
|
|
|
void vp8_find_near_mvs
|
|
|
|
(
|
2012-07-14 00:21:29 +02:00
|
|
|
MACROBLOCKD *xd,
|
|
|
|
const MODE_INFO *here,
|
|
|
|
const MODE_INFO *lf_here,
|
|
|
|
int_mv *nearest,
|
|
|
|
int_mv *nearby,
|
|
|
|
int_mv *best_mv,
|
|
|
|
int cnt[4],
|
|
|
|
int refframe,
|
2012-08-06 19:51:20 +02:00
|
|
|
int *ref_frame_sign_bias) {
|
2012-07-14 00:21:29 +02:00
|
|
|
const MODE_INFO *above = here - xd->mode_info_stride;
|
|
|
|
const MODE_INFO *left = here - 1;
|
|
|
|
const MODE_INFO *aboveleft = above - 1;
|
|
|
|
const MODE_INFO *third = NULL;
|
|
|
|
int_mv near_mvs[4];
|
|
|
|
int_mv *mv = near_mvs;
|
|
|
|
int *cntx = cnt;
|
|
|
|
enum {CNT_INTRA, CNT_NEAREST, CNT_NEAR, CNT_SPLITMV};
|
|
|
|
|
2012-08-06 19:51:20 +02:00
|
|
|
#if CONFIG_NEWBESTREFMV
|
|
|
|
int_mv *ref_mv = xd->ref_mv;
|
|
|
|
#endif
|
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
/* Zero accumulators */
|
|
|
|
mv[0].as_int = mv[1].as_int = mv[2].as_int = 0;
|
|
|
|
cnt[0] = cnt[1] = cnt[2] = cnt[3] = 0;
|
2012-08-06 19:51:20 +02:00
|
|
|
#if CONFIG_NEWBESTREFMV
|
|
|
|
ref_mv[0].as_int = ref_mv[1].as_int
|
|
|
|
= ref_mv[2].as_int
|
|
|
|
= ref_mv[3].as_int
|
|
|
|
= 0;
|
|
|
|
#endif
|
2012-07-14 00:21:29 +02:00
|
|
|
|
|
|
|
/* Process above */
|
|
|
|
if (above->mbmi.ref_frame != INTRA_FRAME) {
|
2012-08-10 01:07:41 +02:00
|
|
|
if (above->mbmi.mv[0].as_int) {
|
2012-08-06 19:51:20 +02:00
|
|
|
++ mv;
|
2012-08-10 01:07:41 +02:00
|
|
|
mv->as_int = above->mbmi.mv[0].as_int;
|
2012-07-14 00:21:29 +02:00
|
|
|
mv_bias(ref_frame_sign_bias[above->mbmi.ref_frame],
|
|
|
|
refframe, mv, ref_frame_sign_bias);
|
2012-08-06 19:51:20 +02:00
|
|
|
#if CONFIG_NEWBESTREFMV
|
|
|
|
ref_mv[0].as_int = mv->as_int;
|
|
|
|
#endif
|
2012-07-14 00:21:29 +02:00
|
|
|
++cntx;
|
2011-11-16 01:16:30 +01:00
|
|
|
}
|
2012-07-14 00:21:29 +02:00
|
|
|
*cntx += 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Process left */
|
|
|
|
if (left->mbmi.ref_frame != INTRA_FRAME) {
|
2012-08-10 01:07:41 +02:00
|
|
|
if (left->mbmi.mv[0].as_int) {
|
2012-07-14 00:21:29 +02:00
|
|
|
int_mv this_mv;
|
2012-08-10 01:07:41 +02:00
|
|
|
this_mv.as_int = left->mbmi.mv[0].as_int;
|
2012-07-14 00:21:29 +02:00
|
|
|
mv_bias(ref_frame_sign_bias[left->mbmi.ref_frame],
|
|
|
|
refframe, &this_mv, ref_frame_sign_bias);
|
2012-08-06 19:51:20 +02:00
|
|
|
#if CONFIG_NEWBESTREFMV
|
|
|
|
ref_mv[1].as_int = this_mv.as_int;
|
|
|
|
#endif
|
2012-07-14 00:21:29 +02:00
|
|
|
if (this_mv.as_int != mv->as_int) {
|
2012-08-06 19:51:20 +02:00
|
|
|
++ mv;
|
|
|
|
mv->as_int = this_mv.as_int;
|
|
|
|
++ cntx;
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
|
|
|
*cntx += 2;
|
|
|
|
} else
|
|
|
|
cnt[CNT_INTRA] += 2;
|
|
|
|
}
|
|
|
|
/* Process above left or the one from last frame */
|
|
|
|
if (aboveleft->mbmi.ref_frame != INTRA_FRAME ||
|
|
|
|
(lf_here->mbmi.ref_frame == LAST_FRAME && refframe == LAST_FRAME)) {
|
2012-08-10 01:07:41 +02:00
|
|
|
if (aboveleft->mbmi.mv[0].as_int) {
|
2012-07-14 00:21:29 +02:00
|
|
|
third = aboveleft;
|
2012-08-06 19:51:20 +02:00
|
|
|
#if CONFIG_NEWBESTREFMV
|
2012-08-11 02:15:23 +02:00
|
|
|
ref_mv[2].as_int = aboveleft->mbmi.mv[0].as_int;
|
2012-08-06 19:51:20 +02:00
|
|
|
mv_bias(ref_frame_sign_bias[aboveleft->mbmi.ref_frame],
|
|
|
|
refframe, (ref_mv+2), ref_frame_sign_bias);
|
|
|
|
#endif
|
2012-08-10 01:07:41 +02:00
|
|
|
} else if (lf_here->mbmi.mv[0].as_int) {
|
2012-07-14 00:21:29 +02:00
|
|
|
third = lf_here;
|
2011-11-16 01:16:30 +01:00
|
|
|
}
|
2012-08-06 19:51:20 +02:00
|
|
|
#if CONFIG_NEWBESTREFMV
|
2012-08-11 02:15:23 +02:00
|
|
|
if (lf_here->mbmi.mv[0].as_int) {
|
|
|
|
ref_mv[3].as_int = lf_here->mbmi.mv[0].as_int;
|
2012-08-06 19:51:20 +02:00
|
|
|
mv_bias(ref_frame_sign_bias[lf_here->mbmi.ref_frame],
|
|
|
|
refframe, (ref_mv+3), ref_frame_sign_bias);
|
|
|
|
}
|
|
|
|
#endif
|
2012-07-14 00:21:29 +02:00
|
|
|
if (third) {
|
|
|
|
int_mv this_mv;
|
2012-08-10 01:07:41 +02:00
|
|
|
this_mv.as_int = third->mbmi.mv[0].as_int;
|
2012-07-14 00:21:29 +02:00
|
|
|
mv_bias(ref_frame_sign_bias[third->mbmi.ref_frame],
|
|
|
|
refframe, &this_mv, ref_frame_sign_bias);
|
|
|
|
|
|
|
|
if (this_mv.as_int != mv->as_int) {
|
2012-08-06 19:51:20 +02:00
|
|
|
++ mv;
|
|
|
|
mv->as_int = this_mv.as_int;
|
|
|
|
++ cntx;
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
|
|
|
*cntx += 1;
|
|
|
|
} else
|
|
|
|
cnt[CNT_INTRA] += 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If we have three distinct MV's ... */
|
|
|
|
if (cnt[CNT_SPLITMV]) {
|
|
|
|
/* See if the third MV can be merged with NEAREST */
|
|
|
|
if (mv->as_int == near_mvs[CNT_NEAREST].as_int)
|
|
|
|
cnt[CNT_NEAREST] += 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
cnt[CNT_SPLITMV] = ((above->mbmi.mode == SPLITMV)
|
|
|
|
+ (left->mbmi.mode == SPLITMV)) * 2
|
|
|
|
+ (
|
|
|
|
lf_here->mbmi.mode == SPLITMV ||
|
2011-11-16 01:16:30 +01:00
|
|
|
aboveleft->mbmi.mode == SPLITMV);
|
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
/* Swap near and nearest if necessary */
|
|
|
|
if (cnt[CNT_NEAR] > cnt[CNT_NEAREST]) {
|
|
|
|
int tmp;
|
|
|
|
tmp = cnt[CNT_NEAREST];
|
|
|
|
cnt[CNT_NEAREST] = cnt[CNT_NEAR];
|
|
|
|
cnt[CNT_NEAR] = tmp;
|
|
|
|
tmp = near_mvs[CNT_NEAREST].as_int;
|
|
|
|
near_mvs[CNT_NEAREST].as_int = near_mvs[CNT_NEAR].as_int;
|
|
|
|
near_mvs[CNT_NEAR].as_int = tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Use near_mvs[0] to store the "best" MV */
|
|
|
|
if (cnt[CNT_NEAREST] >= cnt[CNT_INTRA])
|
|
|
|
near_mvs[CNT_INTRA] = near_mvs[CNT_NEAREST];
|
|
|
|
|
|
|
|
/* Set up return values */
|
|
|
|
best_mv->as_int = near_mvs[0].as_int;
|
|
|
|
nearest->as_int = near_mvs[CNT_NEAREST].as_int;
|
|
|
|
nearby->as_int = near_mvs[CNT_NEAR].as_int;
|
|
|
|
|
|
|
|
/* Make sure that the 1/8th bits of the Mvs are zero if high_precision
|
|
|
|
* is not being used, by truncating the last bit towards 0
|
|
|
|
*/
|
|
|
|
if (!xd->allow_high_precision_mv) {
|
2012-08-06 19:51:20 +02:00
|
|
|
lower_mv_precision(best_mv);
|
|
|
|
lower_mv_precision(nearest);
|
|
|
|
lower_mv_precision(nearby);
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
2012-02-27 19:22:38 +01:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
// TODO: move clamp outside findnearmv
|
|
|
|
vp8_clamp_mv2(nearest, xd);
|
|
|
|
vp8_clamp_mv2(nearby, xd);
|
|
|
|
vp8_clamp_mv2(best_mv, xd);
|
2011-11-16 01:16:30 +01:00
|
|
|
}
|
|
|
|
|
2011-12-06 21:03:42 +01:00
|
|
|
vp8_prob *vp8_mv_ref_probs(VP8_COMMON *pc,
|
2012-07-14 00:21:29 +02:00
|
|
|
vp8_prob p[VP8_MVREFS - 1], const int near_mv_ref_ct[4]
|
|
|
|
) {
|
|
|
|
p[0] = pc->fc.vp8_mode_contexts [near_mv_ref_ct[0]] [0];
|
|
|
|
p[1] = pc->fc.vp8_mode_contexts [near_mv_ref_ct[1]] [1];
|
|
|
|
p[2] = pc->fc.vp8_mode_contexts [near_mv_ref_ct[2]] [2];
|
|
|
|
p[3] = pc->fc.vp8_mode_contexts [near_mv_ref_ct[3]] [3];
|
|
|
|
return p;
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
2012-08-06 19:51:20 +02:00
|
|
|
|
|
|
|
#if CONFIG_NEWBESTREFMV
|
|
|
|
/* check a list of motion vectors by sad score using a number rows of pixels
|
|
|
|
* above and a number cols of pixels in the left to select the one with best
|
|
|
|
* score to use as ref motion vector
|
|
|
|
*/
|
2012-08-24 16:44:01 +02:00
|
|
|
|
|
|
|
void vp8_find_best_ref_mvs(MACROBLOCKD *xd,
|
|
|
|
unsigned char *ref_y_buffer,
|
|
|
|
int ref_y_stride,
|
2012-09-07 13:46:41 +02:00
|
|
|
int_mv *mvlist,
|
2012-08-24 16:44:01 +02:00
|
|
|
int_mv *best_mv,
|
|
|
|
int_mv *nearest,
|
|
|
|
int_mv *near) {
|
|
|
|
int i, j;
|
|
|
|
unsigned char *above_src;
|
|
|
|
unsigned char *left_src;
|
|
|
|
unsigned char *above_ref;
|
|
|
|
unsigned char *left_ref;
|
|
|
|
int sad;
|
|
|
|
int sad_scores[MAX_MV_REFS];
|
|
|
|
int_mv sorted_mvs[MAX_MV_REFS];
|
|
|
|
int zero_seen = FALSE;
|
|
|
|
|
|
|
|
// Default all to 0,0 if nothing else available
|
|
|
|
best_mv->as_int = nearest->as_int = near->as_int = 0;
|
|
|
|
vpx_memset(sorted_mvs, 0, sizeof(sorted_mvs));
|
|
|
|
|
|
|
|
above_src = xd->dst.y_buffer - xd->dst.y_stride * 2;
|
|
|
|
left_src = xd->dst.y_buffer - 2;
|
|
|
|
above_ref = ref_y_buffer - ref_y_stride * 2;
|
|
|
|
left_ref = ref_y_buffer - 2;
|
|
|
|
|
2012-09-07 13:46:41 +02:00
|
|
|
//for(i = 0; i < MAX_MV_REFS; ++i) {
|
|
|
|
// Limit search to the predicted best 4
|
|
|
|
for(i = 0; i < 4; ++i) {
|
2012-08-24 16:44:01 +02:00
|
|
|
int_mv this_mv;
|
|
|
|
int offset=0;
|
|
|
|
int row_offset, col_offset;
|
|
|
|
|
2012-09-07 13:46:41 +02:00
|
|
|
this_mv.as_int = mvlist[i].as_int;
|
2012-08-24 16:44:01 +02:00
|
|
|
|
|
|
|
// If we see a 0,0 vector for a second time we have reached the end of
|
|
|
|
// the list of valid candidate vectors.
|
|
|
|
if (!this_mv.as_int)
|
|
|
|
if (zero_seen)
|
|
|
|
break;
|
|
|
|
else
|
|
|
|
zero_seen = TRUE;
|
|
|
|
|
|
|
|
vp8_clamp_mv(&this_mv,
|
|
|
|
xd->mb_to_left_edge - LEFT_TOP_MARGIN + 16,
|
|
|
|
xd->mb_to_right_edge + RIGHT_BOTTOM_MARGIN,
|
|
|
|
xd->mb_to_top_edge - LEFT_TOP_MARGIN + 16,
|
|
|
|
xd->mb_to_bottom_edge + RIGHT_BOTTOM_MARGIN);
|
|
|
|
|
|
|
|
row_offset = (this_mv.as_mv.row > 0) ?
|
|
|
|
((this_mv.as_mv.row + 3) >> 3):((this_mv.as_mv.row + 4) >> 3);
|
|
|
|
col_offset = (this_mv.as_mv.col > 0) ?
|
|
|
|
((this_mv.as_mv.col + 3) >> 3):((this_mv.as_mv.col + 4) >> 3);
|
|
|
|
offset = ref_y_stride * row_offset + col_offset;
|
|
|
|
|
|
|
|
sad = vp8_sad16x2_c(above_src, xd->dst.y_stride,
|
|
|
|
above_ref + offset, ref_y_stride, INT_MAX);
|
|
|
|
|
|
|
|
sad += vp8_sad2x16_c(left_src, xd->dst.y_stride,
|
|
|
|
left_ref + offset, ref_y_stride, INT_MAX);
|
|
|
|
|
|
|
|
// Add the entry to our list and then resort the list on score.
|
|
|
|
sad_scores[i] = sad;
|
|
|
|
sorted_mvs[i].as_int = this_mv.as_int;
|
|
|
|
j = i;
|
|
|
|
while (j > 0) {
|
|
|
|
if (sad_scores[j] < sad_scores[j-1]) {
|
|
|
|
sad_scores[j] = sad_scores[j-1];
|
|
|
|
sorted_mvs[j].as_int = sorted_mvs[j-1].as_int;
|
|
|
|
sad_scores[j-1] = sad;
|
|
|
|
sorted_mvs[j-1].as_int = this_mv.as_int;
|
|
|
|
j--;
|
|
|
|
} else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Set the best mv to the first entry in the sorted list
|
|
|
|
best_mv->as_int = sorted_mvs[0].as_int;
|
|
|
|
|
|
|
|
// Provided that there are non zero vectors available there will not
|
|
|
|
// be more than one 0,0 entry in the sorted list.
|
|
|
|
// The best ref mv is always set to the first entry (which gave the best
|
|
|
|
// results. The nearest is set to the first non zero vector if available and
|
|
|
|
// near to the second non zero vector if avaialable.
|
|
|
|
// We do not use 0,0 as a nearest or near as 0,0 has its own mode.
|
|
|
|
if ( sorted_mvs[0].as_int ) {
|
|
|
|
nearest->as_int = sorted_mvs[0].as_int;
|
|
|
|
if ( sorted_mvs[1].as_int )
|
|
|
|
near->as_int = sorted_mvs[1].as_int;
|
|
|
|
else
|
|
|
|
near->as_int = sorted_mvs[2].as_int;
|
|
|
|
} else {
|
|
|
|
nearest->as_int = sorted_mvs[1].as_int;
|
|
|
|
near->as_int = sorted_mvs[2].as_int;
|
|
|
|
}
|
|
|
|
|
2012-09-07 13:46:41 +02:00
|
|
|
// Copy back the re-ordered mv list
|
|
|
|
vpx_memcpy(mvlist, sorted_mvs, sizeof(sorted_mvs));
|
|
|
|
|
2012-08-24 16:44:01 +02:00
|
|
|
if (!xd->allow_high_precision_mv)
|
|
|
|
lower_mv_precision(best_mv);
|
|
|
|
|
|
|
|
vp8_clamp_mv2(best_mv, xd);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // CONFIG_NEWBESTREFMV
|