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
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __INC_FINDNEARMV_H
|
|
|
|
#define __INC_FINDNEARMV_H
|
|
|
|
|
|
|
|
#include "mv.h"
|
|
|
|
#include "blockd.h"
|
|
|
|
#include "modecont.h"
|
|
|
|
#include "treecoder.h"
|
|
|
|
|
2011-01-26 18:03:13 +01:00
|
|
|
|
|
|
|
static void mv_bias(int refmb_ref_frame_sign_bias, int refframe, int_mv *mvp, const int *ref_frame_sign_bias)
|
|
|
|
{
|
|
|
|
MV xmv;
|
|
|
|
xmv = mvp->as_mv;
|
|
|
|
|
|
|
|
if (refmb_ref_frame_sign_bias != ref_frame_sign_bias[refframe])
|
|
|
|
{
|
|
|
|
xmv.row *= -1;
|
|
|
|
xmv.col *= -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
mvp->as_mv = xmv;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define LEFT_TOP_MARGIN (16 << 3)
|
|
|
|
#define RIGHT_BOTTOM_MARGIN (16 << 3)
|
2011-05-12 16:50:16 +02:00
|
|
|
static void vp8_clamp_mv2(int_mv *mv, const MACROBLOCKD *xd)
|
|
|
|
{
|
|
|
|
if (mv->as_mv.col < (xd->mb_to_left_edge - LEFT_TOP_MARGIN))
|
|
|
|
mv->as_mv.col = xd->mb_to_left_edge - LEFT_TOP_MARGIN;
|
|
|
|
else if (mv->as_mv.col > xd->mb_to_right_edge + RIGHT_BOTTOM_MARGIN)
|
|
|
|
mv->as_mv.col = xd->mb_to_right_edge + RIGHT_BOTTOM_MARGIN;
|
|
|
|
|
|
|
|
if (mv->as_mv.row < (xd->mb_to_top_edge - LEFT_TOP_MARGIN))
|
|
|
|
mv->as_mv.row = xd->mb_to_top_edge - LEFT_TOP_MARGIN;
|
|
|
|
else if (mv->as_mv.row > xd->mb_to_bottom_edge + RIGHT_BOTTOM_MARGIN)
|
|
|
|
mv->as_mv.row = xd->mb_to_bottom_edge + RIGHT_BOTTOM_MARGIN;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void vp8_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)
|
|
|
|
{
|
|
|
|
mv->as_mv.col = (mv->as_mv.col < mb_to_left_edge) ?
|
|
|
|
mb_to_left_edge : mv->as_mv.col;
|
|
|
|
mv->as_mv.col = (mv->as_mv.col > mb_to_right_edge) ?
|
|
|
|
mb_to_right_edge : mv->as_mv.col;
|
|
|
|
mv->as_mv.row = (mv->as_mv.row < mb_to_top_edge) ?
|
|
|
|
mb_to_top_edge : mv->as_mv.row;
|
|
|
|
mv->as_mv.row = (mv->as_mv.row > mb_to_bottom_edge) ?
|
|
|
|
mb_to_bottom_edge : mv->as_mv.row;
|
|
|
|
}
|
|
|
|
static unsigned int vp8_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)
|
2011-01-26 18:03:13 +01:00
|
|
|
{
|
2011-05-12 16:50:16 +02:00
|
|
|
unsigned int need_to_clamp;
|
|
|
|
need_to_clamp = (mv->as_mv.col < mb_to_left_edge) ? 1 : 0;
|
|
|
|
need_to_clamp |= (mv->as_mv.col > mb_to_right_edge) ? 1 : 0;
|
|
|
|
need_to_clamp |= (mv->as_mv.row < mb_to_top_edge) ? 1 : 0;
|
|
|
|
need_to_clamp |= (mv->as_mv.row > mb_to_bottom_edge) ? 1 : 0;
|
|
|
|
return need_to_clamp;
|
2011-01-26 18:03:13 +01:00
|
|
|
}
|
|
|
|
|
2010-05-18 17:58:33 +02:00
|
|
|
void vp8_find_near_mvs
|
|
|
|
(
|
|
|
|
MACROBLOCKD *xd,
|
|
|
|
const MODE_INFO *here,
|
2011-05-12 16:50:16 +02:00
|
|
|
int_mv *nearest, int_mv *nearby, int_mv *best,
|
2010-05-18 17:58:33 +02:00
|
|
|
int near_mv_ref_cts[4],
|
|
|
|
int refframe,
|
|
|
|
int *ref_frame_sign_bias
|
|
|
|
);
|
|
|
|
|
|
|
|
vp8_prob *vp8_mv_ref_probs(
|
|
|
|
vp8_prob p[VP8_MVREFS-1], const int near_mv_ref_ct[4]
|
|
|
|
);
|
|
|
|
|
|
|
|
const B_MODE_INFO *vp8_left_bmi(const MODE_INFO *cur_mb, int b);
|
|
|
|
|
|
|
|
const B_MODE_INFO *vp8_above_bmi(const MODE_INFO *cur_mb, int b, int mi_stride);
|
|
|
|
|
2011-03-17 22:07:59 +01:00
|
|
|
extern const unsigned char vp8_mbsplit_offset[4][16];
|
|
|
|
|
2010-05-18 17:58:33 +02:00
|
|
|
#endif
|