2012-08-24 16:44:01 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2012 The WebM project authors. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license
|
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
|
|
|
* in the file PATENTS. All contributing project authors may
|
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
|
|
*/
|
|
|
|
|
2012-11-28 19:41:40 +01:00
|
|
|
#include "vp9/common/vp9_onyxc_int.h"
|
|
|
|
#include "vp9/common/vp9_blockd.h"
|
2012-08-24 16:44:01 +02:00
|
|
|
|
2012-11-30 01:36:10 +01:00
|
|
|
#ifndef VP9_COMMON_VP9_MVREF_COMMON_H_
|
|
|
|
#define VP9_COMMON_VP9_MVREF_COMMON_H_
|
2012-08-24 16:44:01 +02:00
|
|
|
|
2013-08-23 21:00:14 +02:00
|
|
|
void vp9_find_mv_refs_idx(const VP9_COMMON *cm, const MACROBLOCKD *xd,
|
2013-10-25 17:18:04 +02:00
|
|
|
const TileInfo *const tile,
|
2013-08-23 21:00:14 +02:00
|
|
|
MODE_INFO *mi, const MODE_INFO *prev_mi,
|
|
|
|
MV_REFERENCE_FRAME ref_frame,
|
2013-05-26 23:40:49 +02:00
|
|
|
int_mv *mv_ref_list,
|
2013-08-23 21:00:14 +02:00
|
|
|
int block_idx,
|
|
|
|
int mi_row, int mi_col);
|
2013-05-26 23:40:49 +02:00
|
|
|
|
2013-08-23 21:00:14 +02:00
|
|
|
static INLINE void vp9_find_mv_refs(const VP9_COMMON *cm, const MACROBLOCKD *xd,
|
2013-10-25 17:18:04 +02:00
|
|
|
const TileInfo *const tile,
|
2013-08-23 21:00:14 +02:00
|
|
|
MODE_INFO *mi, const MODE_INFO *prev_mi,
|
2013-05-26 23:40:49 +02:00
|
|
|
MV_REFERENCE_FRAME ref_frame,
|
|
|
|
int_mv *mv_ref_list,
|
2013-07-31 20:58:00 +02:00
|
|
|
int mi_row, int mi_col) {
|
2013-10-25 17:18:04 +02:00
|
|
|
vp9_find_mv_refs_idx(cm, xd, tile, mi, prev_mi, ref_frame,
|
2013-08-23 21:00:14 +02:00
|
|
|
mv_ref_list, -1, mi_row, mi_col);
|
2013-05-26 23:40:49 +02:00
|
|
|
}
|
2012-08-24 16:44:01 +02:00
|
|
|
|
2012-12-19 00:31:19 +01:00
|
|
|
#endif // VP9_COMMON_VP9_MVREF_COMMON_H_
|