OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2010 The WebM project authors. All Rights Reserved. | 2 * Copyright (c) 2010 The WebM project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 int vp9_full_pixel_diamond(const struct VP9_COMP *cpi, MACROBLOCK *x, | 76 int vp9_full_pixel_diamond(const struct VP9_COMP *cpi, MACROBLOCK *x, |
77 MV *mvp_full, int step_param, | 77 MV *mvp_full, int step_param, |
78 int sadpb, int further_steps, int do_refine, | 78 int sadpb, int further_steps, int do_refine, |
79 int *cost_list, | 79 int *cost_list, |
80 const vp9_variance_fn_ptr_t *fn_ptr, | 80 const vp9_variance_fn_ptr_t *fn_ptr, |
81 const MV *ref_mv, MV *dst_mv); | 81 const MV *ref_mv, MV *dst_mv); |
82 | 82 |
83 // Perform integral projection based motion estimation. | 83 // Perform integral projection based motion estimation. |
84 unsigned int vp9_int_pro_motion_estimation(const struct VP9_COMP *cpi, | 84 unsigned int vp9_int_pro_motion_estimation(const struct VP9_COMP *cpi, |
85 MACROBLOCK *x, | 85 MACROBLOCK *x, |
86 BLOCK_SIZE bsize); | 86 BLOCK_SIZE bsize, |
| 87 int mi_row, int mi_col); |
87 | 88 |
88 typedef int (integer_mv_pattern_search_fn) ( | 89 typedef int (integer_mv_pattern_search_fn) ( |
89 const MACROBLOCK *x, | 90 const MACROBLOCK *x, |
90 MV *ref_mv, | 91 MV *ref_mv, |
91 int search_param, | 92 int search_param, |
92 int error_per_bit, | 93 int error_per_bit, |
93 int do_init_search, | 94 int do_init_search, |
94 int *cost_list, | 95 int *cost_list, |
95 const vp9_variance_fn_ptr_t *vf, | 96 const vp9_variance_fn_ptr_t *vf, |
96 int use_mvcost, | 97 int use_mvcost, |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 int step_param, int error_per_bit, | 156 int step_param, int error_per_bit, |
156 int *cost_list, | 157 int *cost_list, |
157 const MV *ref_mv, MV *tmp_mv, | 158 const MV *ref_mv, MV *tmp_mv, |
158 int var_max, int rd); | 159 int var_max, int rd); |
159 | 160 |
160 #ifdef __cplusplus | 161 #ifdef __cplusplus |
161 } // extern "C" | 162 } // extern "C" |
162 #endif | 163 #endif |
163 | 164 |
164 #endif // VP9_ENCODER_VP9_MCOMP_H_ | 165 #endif // VP9_ENCODER_VP9_MCOMP_H_ |
OLD | NEW |