Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(368)

Side by Side Diff: source/libvpx/vp9/encoder/vp9_speed_features.h

Issue 958693004: libvpx: Pull from upstream (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libvpx.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 11 matching lines...) Expand all
417 struct VP9_COMP; 414 struct VP9_COMP;
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
OLDNEW
« no previous file with comments | « source/libvpx/vp9/encoder/vp9_skin_detection.c ('k') | source/libvpx/vp9/encoder/vp9_speed_features.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698