| Index: source/libvpx/vp9/common/vp9_mvref_common.h
|
| diff --git a/source/libvpx/vp9/common/vp9_mvref_common.h b/source/libvpx/vp9/common/vp9_mvref_common.h
|
| index f1df521468fe93c34f7b937f0c31d78b4918a530..0e27e9d776b4fd399de6a710b1b835da19290c32 100644
|
| --- a/source/libvpx/vp9/common/vp9_mvref_common.h
|
| +++ b/source/libvpx/vp9/common/vp9_mvref_common.h
|
| @@ -207,23 +207,21 @@ static INLINE void clamp_mv2(MV *mv, const MACROBLOCKD *xd) {
|
| xd->mb_to_bottom_edge + RIGHT_BOTTOM_MARGIN);
|
| }
|
|
|
| -typedef void (*find_mv_refs_sync)(void *const data, int mi_row);
|
| void vp9_find_mv_refs(const VP9_COMMON *cm, const MACROBLOCKD *xd,
|
| const TileInfo *const tile,
|
| MODE_INFO *mi, MV_REFERENCE_FRAME ref_frame,
|
| - int_mv *mv_ref_list, int mi_row, int mi_col,
|
| - find_mv_refs_sync sync, void *const data);
|
| + int_mv *mv_ref_list, int mi_row, int mi_col);
|
|
|
| // 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
|
| void vp9_find_best_ref_mvs(MACROBLOCKD *xd, int allow_hp,
|
| - int_mv *mvlist, int_mv *nearest_mv, int_mv *near_mv);
|
| + int_mv *mvlist, int_mv *nearest, int_mv *near);
|
|
|
| void vp9_append_sub8x8_mvs_for_idx(VP9_COMMON *cm, MACROBLOCKD *xd,
|
| const TileInfo *const tile,
|
| int block, int ref, int mi_row, int mi_col,
|
| - int_mv *nearest_mv, int_mv *near_mv);
|
| + int_mv *nearest, int_mv *near);
|
|
|
| #ifdef __cplusplus
|
| } // extern "C"
|
|
|