2010-05-18 11:58:33 -04:00
|
|
|
/*
|
2010-09-09 08:16:39 -04:00
|
|
|
* Copyright (c) 2010 The WebM project authors. All Rights Reserved.
|
2010-05-18 11:58:33 -04:00
|
|
|
*
|
2010-06-18 12:39:21 -04:00
|
|
|
* Use of this source code is governed by a BSD-style license
|
2010-06-04 16: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 12:39:21 -04:00
|
|
|
* in the file PATENTS. All contributing project authors may
|
2010-06-04 16:19:40 -04:00
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
2010-05-18 11:58:33 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2012-11-29 16:36:10 -08:00
|
|
|
#ifndef VP9_COMMON_VP9_FINDNEARMV_H_
|
|
|
|
#define VP9_COMMON_VP9_FINDNEARMV_H_
|
2010-05-18 11:58:33 -04:00
|
|
|
|
2012-11-28 10:41:40 -08: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 11:58:33 -04:00
|
|
|
|
2013-04-06 10:00:53 -07:00
|
|
|
#define LEFT_TOP_MARGIN ((VP9BORDERINPIXELS - VP9_INTERP_EXTEND) << 3)
|
|
|
|
#define RIGHT_BOTTOM_MARGIN ((VP9BORDERINPIXELS - VP9_INTERP_EXTEND) << 3)
|
2013-03-05 14:12:16 -08:00
|
|
|
|
2013-04-17 14:33:05 -07: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 14:40:53 -07:00
|
|
|
void vp9_find_best_ref_mvs(MACROBLOCKD *xd,
|
2012-09-07 12:46:41 +01:00
|
|
|
int_mv *mvlist,
|
2012-08-17 15:37:51 -07:00
|
|
|
int_mv *nearest,
|
|
|
|
int_mv *near);
|
2011-01-26 12:03:13 -05:00
|
|
|
|
2013-04-06 10:00:53 -07:00
|
|
|
// TODO(jingning): this mv clamping function should be block size dependent.
|
2013-07-31 16:11:03 -07:00
|
|
|
static void clamp_mv2(MV *mv, const MACROBLOCKD *xd) {
|
|
|
|
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);
|
2012-08-06 10:51:20 -07:00
|
|
|
}
|
|
|
|
|
2013-08-22 20:03:08 -07:00
|
|
|
void vp9_append_sub8x8_mvs_for_idx(VP9_COMMON *cm,
|
2013-05-26 14:40:49 -07:00
|
|
|
MACROBLOCKD *xd,
|
|
|
|
int_mv *dst_nearest,
|
|
|
|
int_mv *dst_near,
|
2013-07-31 11:58:00 -07:00
|
|
|
int block_idx, int ref_idx,
|
|
|
|
int mi_row, int mi_col);
|
2012-04-18 13:51:58 -07:00
|
|
|
|
2013-09-11 13:45:44 -04:00
|
|
|
static MB_PREDICTION_MODE left_block_mode(const MODE_INFO *cur_mb,
|
|
|
|
const MODE_INFO *left_mb, int b) {
|
2013-04-30 16:13:20 -07:00
|
|
|
// FIXME(rbultje, jingning): temporary hack because jenkins doesn't
|
|
|
|
// understand this condition. This will go away soon.
|
2013-09-11 13:45:44 -04:00
|
|
|
const MODE_INFO *mi = cur_mb;
|
|
|
|
|
2013-04-30 16:13:20 -07:00
|
|
|
if (b == 0 || b == 2) {
|
2012-07-13 15:21:29 -07:00
|
|
|
/* On L edge, get from MB to left of us */
|
2013-09-11 13:45:44 -04:00
|
|
|
mi = left_mb;
|
|
|
|
if (!mi)
|
|
|
|
return DC_PRED;
|
2012-10-19 15:12:12 -07:00
|
|
|
|
2013-09-25 19:03:04 -07:00
|
|
|
if (is_inter_block(&mi->mbmi))
|
2013-05-30 11:27:40 -07:00
|
|
|
return DC_PRED;
|
2013-09-25 19:03:04 -07:00
|
|
|
else
|
|
|
|
return mi->mbmi.sb_type < BLOCK_8X8 ? (mi->bmi + 1 + b)->as_mode
|
|
|
|
: mi->mbmi.mode;
|
2012-07-13 15:21:29 -07:00
|
|
|
}
|
2013-04-30 16:13:20 -07:00
|
|
|
assert(b == 1 || b == 3);
|
2013-09-11 13:45:44 -04:00
|
|
|
return (mi->bmi + b - 1)->as_mode;
|
2011-05-24 13:24:52 -04:00
|
|
|
}
|
|
|
|
|
2013-05-21 21:28:42 -07:00
|
|
|
static MB_PREDICTION_MODE above_block_mode(const MODE_INFO *cur_mb,
|
2013-09-11 13:45:44 -04:00
|
|
|
const MODE_INFO *above_mb, int b) {
|
|
|
|
const MODE_INFO *mi = cur_mb;
|
|
|
|
|
2013-05-04 22:09:43 -07:00
|
|
|
if (!(b >> 1)) {
|
2012-07-13 15:21:29 -07:00
|
|
|
/* On top edge, get from MB above us */
|
2013-09-11 13:45:44 -04:00
|
|
|
mi = above_mb;
|
|
|
|
if (!mi)
|
|
|
|
return DC_PRED;
|
2012-07-13 15:21:29 -07:00
|
|
|
|
2013-09-25 19:03:04 -07:00
|
|
|
if (is_inter_block(&mi->mbmi))
|
2013-05-30 11:27:40 -07:00
|
|
|
return DC_PRED;
|
2013-09-25 19:03:04 -07:00
|
|
|
else
|
|
|
|
return mi->mbmi.sb_type < BLOCK_8X8 ? (mi->bmi + 2 + b)->as_mode
|
|
|
|
: mi->mbmi.mode;
|
2012-07-13 15:21:29 -07:00
|
|
|
}
|
2011-05-24 13:24:52 -04:00
|
|
|
|
2013-09-11 13:45:44 -04:00
|
|
|
return (mi->bmi + b - 2)->as_mode;
|
2011-05-24 13:24:52 -04:00
|
|
|
}
|
2011-03-17 17:07:59 -04:00
|
|
|
|
2012-12-18 15:31:19 -08:00
|
|
|
#endif // VP9_COMMON_VP9_FINDNEARMV_H_
|