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 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
277 BLOCK_SIZE always_this_block_size; | 277 BLOCK_SIZE always_this_block_size; |
278 int auto_min_max_partition_size; | 278 int auto_min_max_partition_size; |
279 int auto_min_max_partition_interval; | 279 int auto_min_max_partition_interval; |
280 int auto_min_max_partition_count; | 280 int auto_min_max_partition_count; |
281 BLOCK_SIZE min_partition_size; | 281 BLOCK_SIZE min_partition_size; |
282 BLOCK_SIZE max_partition_size; | 282 BLOCK_SIZE max_partition_size; |
283 int adjust_partitioning_from_last_frame; | 283 int adjust_partitioning_from_last_frame; |
284 int last_partitioning_redo_frequency; | 284 int last_partitioning_redo_frequency; |
285 int disable_splitmv; | 285 int disable_splitmv; |
286 int using_small_partition_info; | 286 int using_small_partition_info; |
| 287 // TODO(jingning): combine the related motion search speed features |
| 288 int adaptive_motion_search; |
287 | 289 |
288 // Implements various heuristics to skip searching modes | 290 // Implements various heuristics to skip searching modes |
289 // The heuristics selected are based on flags | 291 // The heuristics selected are based on flags |
290 // defined in the MODE_SEARCH_SKIP_HEURISTICS enum | 292 // defined in the MODE_SEARCH_SKIP_HEURISTICS enum |
291 unsigned int mode_search_skip_flags; | 293 unsigned int mode_search_skip_flags; |
292 // A source variance threshold below which the split mode is disabled | 294 // A source variance threshold below which the split mode is disabled |
293 unsigned int disable_split_var_thresh; | 295 unsigned int disable_split_var_thresh; |
294 // A source variance threshold below which filter search is disabled | 296 // A source variance threshold below which filter search is disabled |
295 // Choose a very large value (UINT_MAX) to use 8-tap always | 297 // Choose a very large value (UINT_MAX) to use 8-tap always |
296 unsigned int disable_filter_search_var_thresh; | 298 unsigned int disable_filter_search_var_thresh; |
(...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
711 void vp9_activity_masking(VP9_COMP *cpi, MACROBLOCK *x); | 713 void vp9_activity_masking(VP9_COMP *cpi, MACROBLOCK *x); |
712 | 714 |
713 void vp9_set_speed_features(VP9_COMP *cpi); | 715 void vp9_set_speed_features(VP9_COMP *cpi); |
714 | 716 |
715 extern int vp9_calc_ss_err(YV12_BUFFER_CONFIG *source, | 717 extern int vp9_calc_ss_err(YV12_BUFFER_CONFIG *source, |
716 YV12_BUFFER_CONFIG *dest); | 718 YV12_BUFFER_CONFIG *dest); |
717 | 719 |
718 extern void vp9_alloc_compressor_data(VP9_COMP *cpi); | 720 extern void vp9_alloc_compressor_data(VP9_COMP *cpi); |
719 | 721 |
720 #endif // VP9_ENCODER_VP9_ONYX_INT_H_ | 722 #endif // VP9_ENCODER_VP9_ONYX_INT_H_ |
OLD | NEW |