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 |
393 // default interp filter choice | 396 // default interp filter choice |
394 INTERP_FILTER default_interp_filter; | 397 INTERP_FILTER default_interp_filter; |
395 | 398 |
396 // Early termination in transform size search, which only applies while | 399 // Early termination in transform size search, which only applies while |
397 // tx_size_search_method is USE_FULL_RD. | 400 // tx_size_search_method is USE_FULL_RD. |
398 int tx_size_search_breakout; | 401 int tx_size_search_breakout; |
399 | 402 |
400 // adaptive interp_filter search to allow skip of certain filter types. | 403 // adaptive interp_filter search to allow skip of certain filter types. |
401 int adaptive_interp_filter_search; | 404 int adaptive_interp_filter_search; |
402 | 405 |
(...skipping 12 matching lines...) Expand all Loading... |
415 | 418 |
416 void vp9_set_speed_features_framesize_independent(struct VP9_COMP *cpi); | 419 void vp9_set_speed_features_framesize_independent(struct VP9_COMP *cpi); |
417 void vp9_set_speed_features_framesize_dependent(struct VP9_COMP *cpi); | 420 void vp9_set_speed_features_framesize_dependent(struct VP9_COMP *cpi); |
418 | 421 |
419 #ifdef __cplusplus | 422 #ifdef __cplusplus |
420 } // extern "C" | 423 } // extern "C" |
421 #endif | 424 #endif |
422 | 425 |
423 #endif // VP9_ENCODER_VP9_SPEED_FEATURES_H_ | 426 #endif // VP9_ENCODER_VP9_SPEED_FEATURES_H_ |
424 | 427 |
OLD | NEW |