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 372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
383 | 383 |
384 // When partition is pre-set, the inter prediction result from pick_inter_mode | 384 // When partition is pre-set, the inter prediction result from pick_inter_mode |
385 // can be reused in final block encoding process. It is enabled only for real- | 385 // can be reused in final block encoding process. It is enabled only for real- |
386 // time mode speed 6. | 386 // time mode speed 6. |
387 int reuse_inter_pred_sby; | 387 int reuse_inter_pred_sby; |
388 | 388 |
389 // This variable sets the encode_breakout threshold. Currently, it is only | 389 // This variable sets the encode_breakout threshold. Currently, it is only |
390 // enabled in real time mode. | 390 // enabled in real time mode. |
391 int encode_breakout_thresh; | 391 int encode_breakout_thresh; |
392 | 392 |
393 // In real time encoding, increase the threshold for NEWMV. | |
394 int elevate_newmv_thresh; | |
395 | |
396 // default interp filter choice | 393 // default interp filter choice |
397 INTERP_FILTER default_interp_filter; | 394 INTERP_FILTER default_interp_filter; |
398 | 395 |
399 // Early termination in transform size search, which only applies while | 396 // Early termination in transform size search, which only applies while |
400 // tx_size_search_method is USE_FULL_RD. | 397 // tx_size_search_method is USE_FULL_RD. |
401 int tx_size_search_breakout; | 398 int tx_size_search_breakout; |
402 | 399 |
403 // adaptive interp_filter search to allow skip of certain filter types. | 400 // adaptive interp_filter search to allow skip of certain filter types. |
404 int adaptive_interp_filter_search; | 401 int adaptive_interp_filter_search; |
405 | 402 |
(...skipping 12 matching lines...) Expand all Loading... |
418 | 415 |
419 void vp9_set_speed_features_framesize_independent(struct VP9_COMP *cpi); | 416 void vp9_set_speed_features_framesize_independent(struct VP9_COMP *cpi); |
420 void vp9_set_speed_features_framesize_dependent(struct VP9_COMP *cpi); | 417 void vp9_set_speed_features_framesize_dependent(struct VP9_COMP *cpi); |
421 | 418 |
422 #ifdef __cplusplus | 419 #ifdef __cplusplus |
423 } // extern "C" | 420 } // extern "C" |
424 #endif | 421 #endif |
425 | 422 |
426 #endif // VP9_ENCODER_VP9_SPEED_FEATURES_H_ | 423 #endif // VP9_ENCODER_VP9_SPEED_FEATURES_H_ |
427 | 424 |
OLD | NEW |