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_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
|
2013-10-21 19:12:14 +02:00
|
|
|
void vp9_find_best_ref_mvs(MACROBLOCKD *xd, int allow_hp,
|
|
|
|
int_mv *mvlist, int_mv *nearest, int_mv *near);
|
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.
|
2013-08-01 01:11:03 +02: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 19:51:20 +02:00
|
|
|
}
|
|
|
|
|
2013-10-25 17:18:04 +02:00
|
|
|
void vp9_append_sub8x8_mvs_for_idx(VP9_COMMON *cm, MACROBLOCKD *xd,
|
|
|
|
const TileInfo *const tile,
|
2013-12-11 02:56:53 +01:00
|
|
|
int block, int ref, int mi_row, int mi_col,
|
|
|
|
int_mv *nearest, int_mv *near);
|
2012-04-18 22:51:58 +02:00
|
|
|
|
2012-12-19 00:31:19 +01:00
|
|
|
#endif // VP9_COMMON_VP9_FINDNEARMV_H_
|