| Index: source/libvpx/vp9/encoder/vp9_mcomp.h
|
| diff --git a/source/libvpx/vp9/encoder/vp9_mcomp.h b/source/libvpx/vp9/encoder/vp9_mcomp.h
|
| index 817bd7959c3bcc7c739ae48cfdb7693d3b934f80..5efd5435b71e8313b4eb7fb2613ef39083d76623 100644
|
| --- a/source/libvpx/vp9/encoder/vp9_mcomp.h
|
| +++ b/source/libvpx/vp9/encoder/vp9_mcomp.h
|
| @@ -72,38 +72,12 @@ int vp9_refining_search_sad(const struct macroblock *x,
|
| const struct vp9_variance_vtable *fn_ptr,
|
| const struct mv *center_mv);
|
|
|
| -// Runs sequence of diamond searches in smaller steps for RD.
|
| -int vp9_full_pixel_diamond(const struct VP9_COMP *cpi, MACROBLOCK *x,
|
| - MV *mvp_full, int step_param,
|
| - int sadpb, int further_steps, int do_refine,
|
| - int *cost_list,
|
| - const vp9_variance_fn_ptr_t *fn_ptr,
|
| - const MV *ref_mv, MV *dst_mv);
|
| -
|
| // Perform integral projection based motion estimation.
|
| unsigned int vp9_int_pro_motion_estimation(const struct VP9_COMP *cpi,
|
| MACROBLOCK *x,
|
| BLOCK_SIZE bsize,
|
| int mi_row, int mi_col);
|
|
|
| -typedef int (integer_mv_pattern_search_fn) (
|
| - const MACROBLOCK *x,
|
| - MV *ref_mv,
|
| - int search_param,
|
| - int error_per_bit,
|
| - int do_init_search,
|
| - int *cost_list,
|
| - const vp9_variance_fn_ptr_t *vf,
|
| - int use_mvcost,
|
| - const MV *center_mv,
|
| - MV *best_mv);
|
| -
|
| -integer_mv_pattern_search_fn vp9_hex_search;
|
| -integer_mv_pattern_search_fn vp9_bigdia_search;
|
| -integer_mv_pattern_search_fn vp9_square_search;
|
| -integer_mv_pattern_search_fn vp9_fast_hex_search;
|
| -integer_mv_pattern_search_fn vp9_fast_dia_search;
|
| -
|
| typedef int (fractional_mv_step_fp) (
|
| const MACROBLOCK *x,
|
| MV *bestmv, const MV *ref_mv,
|
|
|