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
|
|
|
*/
|
|
|
|
|
|
|
|
|
2012-11-30 01:36:10 +01:00
|
|
|
#ifndef VP9_COMMON_VP9_FINDNEARMV_H_
|
|
|
|
#define VP9_COMMON_VP9_FINDNEARMV_H_
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-11-28 19:41:40 +01:00
|
|
|
#include "vp9/common/vp9_mv.h"
|
|
|
|
#include "vp9/common/vp9_blockd.h"
|
|
|
|
#include "vp9/common/vp9_treecoder.h"
|
|
|
|
#include "vp9/common/vp9_onyxc_int.h"
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2013-04-06 19:00:53 +02:00
|
|
|
#define LEFT_TOP_MARGIN ((VP9BORDERINPIXELS - VP9_INTERP_EXTEND) << 3)
|
|
|
|
#define RIGHT_BOTTOM_MARGIN ((VP9BORDERINPIXELS - VP9_INTERP_EXTEND) << 3)
|
2013-03-05 23:12:16 +01:00
|
|
|
|
2013-04-17 23:33:05 +02:00
|
|
|
// 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-10-31 22:40:53 +01:00
|
|
|
void vp9_find_best_ref_mvs(MACROBLOCKD *xd,
|
2012-09-07 13:46:41 +02:00
|
|
|
int_mv *mvlist,
|
2012-08-18 00:37:51 +02:00
|
|
|
int_mv *nearest,
|
|
|
|
int_mv *near);
|
2011-01-26 18:03:13 +01:00
|
|
|
|
2013-01-15 15:43:35 +01:00
|
|
|
static void mv_bias(int refmb_ref_frame_sign_bias, int refframe,
|
|
|
|
int_mv *mvp, const int *ref_frame_sign_bias) {
|
2013-03-05 23:12:16 +01:00
|
|
|
MV xmv = mvp->as_mv;
|
2012-07-14 00:21:29 +02:00
|
|
|
|
|
|
|
if (refmb_ref_frame_sign_bias != ref_frame_sign_bias[refframe]) {
|
|
|
|
xmv.row *= -1;
|
|
|
|
xmv.col *= -1;
|
|
|
|
}
|
2011-01-26 18:03:13 +01:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
mvp->as_mv = xmv;
|
2011-01-26 18:03:13 +01:00
|
|
|
}
|
|
|
|
|
2013-04-06 19:00:53 +02:00
|
|
|
// TODO(jingning): this mv clamping function should be block size dependent.
|
2012-10-31 22:40:53 +01:00
|
|
|
static void clamp_mv(int_mv *mv,
|
|
|
|
int mb_to_left_edge,
|
|
|
|
int mb_to_right_edge,
|
|
|
|
int mb_to_top_edge,
|
|
|
|
int mb_to_bottom_edge) {
|
2013-04-17 23:33:05 +02:00
|
|
|
mv->as_mv.col = clamp(mv->as_mv.col, mb_to_left_edge, mb_to_right_edge);
|
|
|
|
mv->as_mv.row = clamp(mv->as_mv.row, mb_to_top_edge, mb_to_bottom_edge);
|
2011-05-12 16:50:16 +02:00
|
|
|
}
|
2012-08-06 19:51:20 +02:00
|
|
|
|
2013-04-06 19:00:53 +02:00
|
|
|
static int clamp_mv2(int_mv *mv, const MACROBLOCKD *xd) {
|
|
|
|
int_mv tmp_mv;
|
|
|
|
tmp_mv.as_int = mv->as_int;
|
2012-10-31 22:40:53 +01:00
|
|
|
clamp_mv(mv,
|
|
|
|
xd->mb_to_left_edge - LEFT_TOP_MARGIN,
|
|
|
|
xd->mb_to_right_edge + RIGHT_BOTTOM_MARGIN,
|
|
|
|
xd->mb_to_top_edge - LEFT_TOP_MARGIN,
|
|
|
|
xd->mb_to_bottom_edge + RIGHT_BOTTOM_MARGIN);
|
2013-04-17 23:33:05 +02:00
|
|
|
return tmp_mv.as_int != mv->as_int;
|
2012-08-06 19:51:20 +02:00
|
|
|
}
|
|
|
|
|
2013-04-18 20:05:34 +02:00
|
|
|
static int check_mv_bounds(int_mv *mv,
|
|
|
|
int mb_to_left_edge, int mb_to_right_edge,
|
|
|
|
int mb_to_top_edge, int mb_to_bottom_edge) {
|
2013-03-05 23:12:16 +01:00
|
|
|
return mv->as_mv.col < mb_to_left_edge ||
|
|
|
|
mv->as_mv.col > mb_to_right_edge ||
|
|
|
|
mv->as_mv.row < mb_to_top_edge ||
|
|
|
|
mv->as_mv.row > mb_to_bottom_edge;
|
2011-01-26 18:03:13 +01:00
|
|
|
}
|
|
|
|
|
2012-10-31 22:40:53 +01:00
|
|
|
vp9_prob *vp9_mv_ref_probs(VP9_COMMON *pc,
|
2012-11-01 00:09:17 +01:00
|
|
|
vp9_prob p[VP9_MVREFS - 1],
|
2012-11-12 16:09:25 +01:00
|
|
|
const int context);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2013-05-26 23:40:49 +02:00
|
|
|
void vp9_append_sub8x8_mvs_for_idx(VP9_COMMON *pc,
|
|
|
|
MACROBLOCKD *xd,
|
|
|
|
int_mv *dst_nearest,
|
|
|
|
int_mv *dst_near,
|
|
|
|
int block_idx, int ref_idx);
|
2012-04-18 22:51:58 +02:00
|
|
|
|
2013-05-22 06:28:42 +02:00
|
|
|
static MB_PREDICTION_MODE left_block_mode(const MODE_INFO *cur_mb, int b) {
|
2013-05-01 01:13:20 +02:00
|
|
|
// FIXME(rbultje, jingning): temporary hack because jenkins doesn't
|
|
|
|
// understand this condition. This will go away soon.
|
|
|
|
if (b == 0 || b == 2) {
|
2012-07-14 00:21:29 +02:00
|
|
|
/* On L edge, get from MB to left of us */
|
|
|
|
--cur_mb;
|
2012-10-20 00:12:12 +02:00
|
|
|
|
2013-05-01 01:13:20 +02:00
|
|
|
if (cur_mb->mbmi.mode <= TM_PRED) {
|
2013-05-25 01:13:54 +02:00
|
|
|
return cur_mb->mbmi.mode;
|
2013-04-11 21:16:35 +02:00
|
|
|
} else if (cur_mb->mbmi.mode == I4X4_PRED) {
|
2013-05-05 07:09:43 +02:00
|
|
|
return ((cur_mb->bmi + 1 + b)->as_mode.first);
|
2012-10-20 00:12:12 +02:00
|
|
|
} else {
|
2013-05-21 01:04:28 +02:00
|
|
|
return DC_PRED;
|
2011-05-24 19:24:52 +02:00
|
|
|
}
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
2013-05-01 01:13:20 +02:00
|
|
|
assert(b == 1 || b == 3);
|
2012-07-14 00:21:29 +02:00
|
|
|
return (cur_mb->bmi + b - 1)->as_mode.first;
|
2011-05-24 19:24:52 +02:00
|
|
|
}
|
|
|
|
|
2013-05-22 06:28:42 +02:00
|
|
|
static MB_PREDICTION_MODE above_block_mode(const MODE_INFO *cur_mb,
|
2012-10-20 00:12:12 +02:00
|
|
|
int b, int mi_stride) {
|
2013-05-05 07:09:43 +02:00
|
|
|
if (!(b >> 1)) {
|
2012-07-14 00:21:29 +02:00
|
|
|
/* On top edge, get from MB above us */
|
|
|
|
cur_mb -= mi_stride;
|
|
|
|
|
2013-05-01 01:13:20 +02:00
|
|
|
if (cur_mb->mbmi.mode <= TM_PRED) {
|
2013-05-25 01:13:54 +02:00
|
|
|
return cur_mb->mbmi.mode;
|
2013-04-11 21:16:35 +02:00
|
|
|
} else if (cur_mb->mbmi.mode == I4X4_PRED) {
|
2013-05-05 07:09:43 +02:00
|
|
|
return ((cur_mb->bmi + 2 + b)->as_mode.first);
|
2012-10-20 00:12:12 +02:00
|
|
|
} else {
|
2013-05-21 01:04:28 +02:00
|
|
|
return DC_PRED;
|
2011-05-24 19:24:52 +02:00
|
|
|
}
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
2011-05-24 19:24:52 +02:00
|
|
|
|
2013-05-05 07:09:43 +02:00
|
|
|
return (cur_mb->bmi + b - 2)->as_mode.first;
|
2011-05-24 19:24:52 +02:00
|
|
|
}
|
2011-03-17 22:07:59 +01:00
|
|
|
|
2012-12-19 00:31:19 +01:00
|
|
|
#endif // VP9_COMMON_VP9_FINDNEARMV_H_
|