12#ifndef AOM_AV1_ENCODER_SPEED_FEATURES_H_
13#define AOM_AV1_ENCODER_SPEED_FEATURES_H_
16#include "av1/encoder/enc_enums.h"
17#include "av1/encoder/mcomp.h"
18#include "av1/encoder/encodemb.h"
27#define MAX_MESH_STEP 4
29typedef struct MESH_PATTERN {
36 GM_REDUCED_REF_SEARCH_SKIP_L2_L3,
37 GM_REDUCED_REF_SEARCH_SKIP_L2_L3_ARF2,
41 GM_SEARCH_CLOSEST_REFS_ONLY,
44} UENUM1BYTE(GM_SEARCH_TYPE);
47 DIST_WTD_COMP_ENABLED,
48 DIST_WTD_COMP_SKIP_MV_SEARCH,
49 DIST_WTD_COMP_DISABLED,
50} UENUM1BYTE(DIST_WTD_COMP_FLAG);
53 INTRA_ALL = (1 << DC_PRED) | (1 << V_PRED) | (1 << H_PRED) | (1 << D45_PRED) |
54 (1 << D135_PRED) | (1 << D113_PRED) | (1 << D157_PRED) |
55 (1 << D203_PRED) | (1 << D67_PRED) | (1 << SMOOTH_PRED) |
56 (1 << SMOOTH_V_PRED) | (1 << SMOOTH_H_PRED) | (1 << PAETH_PRED),
58 (1 << UV_DC_PRED) | (1 << UV_V_PRED) | (1 << UV_H_PRED) |
59 (1 << UV_D45_PRED) | (1 << UV_D135_PRED) | (1 << UV_D113_PRED) |
60 (1 << UV_D157_PRED) | (1 << UV_D203_PRED) | (1 << UV_D67_PRED) |
61 (1 << UV_SMOOTH_PRED) | (1 << UV_SMOOTH_V_PRED) |
62 (1 << UV_SMOOTH_H_PRED) | (1 << UV_PAETH_PRED) | (1 << UV_CFL_PRED),
63 UV_INTRA_DC = (1 << UV_DC_PRED),
64 UV_INTRA_DC_CFL = (1 << UV_DC_PRED) | (1 << UV_CFL_PRED),
65 UV_INTRA_DC_TM = (1 << UV_DC_PRED) | (1 << UV_PAETH_PRED),
66 UV_INTRA_DC_PAETH_CFL =
67 (1 << UV_DC_PRED) | (1 << UV_PAETH_PRED) | (1 << UV_CFL_PRED),
68 UV_INTRA_DC_H_V = (1 << UV_DC_PRED) | (1 << UV_V_PRED) | (1 << UV_H_PRED),
69 UV_INTRA_DC_H_V_CFL = (1 << UV_DC_PRED) | (1 << UV_V_PRED) |
70 (1 << UV_H_PRED) | (1 << UV_CFL_PRED),
71 UV_INTRA_DC_PAETH_H_V = (1 << UV_DC_PRED) | (1 << UV_PAETH_PRED) |
72 (1 << UV_V_PRED) | (1 << UV_H_PRED),
73 UV_INTRA_DC_PAETH_H_V_CFL = (1 << UV_DC_PRED) | (1 << UV_PAETH_PRED) |
74 (1 << UV_V_PRED) | (1 << UV_H_PRED) |
76 INTRA_DC = (1 << DC_PRED),
77 INTRA_DC_TM = (1 << DC_PRED) | (1 << PAETH_PRED),
78 INTRA_DC_H_V = (1 << DC_PRED) | (1 << V_PRED) | (1 << H_PRED),
80 (1 << DC_PRED) | (1 << V_PRED) | (1 << H_PRED) | (1 << SMOOTH_PRED),
82 (1 << DC_PRED) | (1 << PAETH_PRED) | (1 << V_PRED) | (1 << H_PRED)
86 INTER_ALL = (1 << NEARESTMV) | (1 << NEARMV) | (1 << GLOBALMV) |
87 (1 << NEWMV) | (1 << NEAREST_NEARESTMV) | (1 << NEAR_NEARMV) |
88 (1 << NEW_NEWMV) | (1 << NEAREST_NEWMV) | (1 << NEAR_NEWMV) |
89 (1 << NEW_NEARMV) | (1 << NEW_NEARESTMV) | (1 << GLOBAL_GLOBALMV),
90 INTER_NEAREST_NEAR_ZERO = (1 << NEARESTMV) | (1 << NEARMV) | (1 << GLOBALMV) |
91 (1 << NEAREST_NEARESTMV) | (1 << GLOBAL_GLOBALMV) |
92 (1 << NEAREST_NEWMV) | (1 << NEW_NEARESTMV) |
93 (1 << NEW_NEARMV) | (1 << NEAR_NEWMV) |
98 DISABLE_ALL_INTER_SPLIT = (1 << THR_COMP_GA) | (1 << THR_COMP_LA) |
99 (1 << THR_ALTR) | (1 << THR_GOLD) | (1 << THR_LAST),
101 DISABLE_ALL_SPLIT = (1 << THR_INTRA) | DISABLE_ALL_INTER_SPLIT,
103 DISABLE_COMPOUND_SPLIT = (1 << THR_COMP_GA) | (1 << THR_COMP_LA),
105 LAST_AND_INTRA_SPLIT_ONLY = (1 << THR_COMP_GA) | (1 << THR_COMP_LA) |
106 (1 << THR_ALTR) | (1 << THR_GOLD)
118} UENUM1BYTE(DEV_SPEED_FEATURES);
131 ALLOW_RECODE_KFARFGF = 1,
136} UENUM1BYTE(RECODE_LOOP_TYPE);
140 SUBPEL_TREE_PRUNED = 1,
141 SUBPEL_TREE_PRUNED_MORE = 2,
142 SUBPEL_SEARCH_METHODS
143} UENUM1BYTE(SUBPEL_SEARCH_METHOD);
147 LPF_PICK_FROM_FULL_IMAGE,
149 LPF_PICK_FROM_FULL_IMAGE_NON_DUAL,
151 LPF_PICK_FROM_SUBIMAGE,
156} UENUM1BYTE(LPF_PICK_METHOD);
178 FLAG_EARLY_TERMINATE = 1 << 0,
181 FLAG_SKIP_COMP_BESTINTRA = 1 << 1,
184 FLAG_SKIP_INTRA_BESTINTER = 1 << 3,
188 FLAG_SKIP_INTRA_DIRMISMATCH = 1 << 4,
191 FLAG_SKIP_INTRA_LOWVAR = 1 << 5,
192} UENUM1BYTE(MODE_SEARCH_SKIP_LOGIC);
206} UENUM1BYTE(TX_TYPE_PRUNE_MODE);
214 FAST_DETECTION_MAXQ = 1,
215} UENUM1BYTE(OVERSHOOT_DETECTION_CBR);
221 MULTI_WINNER_MODE_OFF = 0,
224 MULTI_WINNER_MODE_FAST = 1,
228 MULTI_WINNER_MODE_DEFAULT = 2,
231 MULTI_WINNER_MODE_LEVELS,
232} UENUM1BYTE(MULTI_WINNER_MODE_TYPE);
235 PRUNE_NEARMV_OFF = 0,
236 PRUNE_NEARMV_LEVEL1 = 1,
237 PRUNE_NEARMV_LEVEL2 = 2,
238 PRUNE_NEARMV_LEVEL3 = 3,
239 PRUNE_NEARMV_MAX = PRUNE_NEARMV_LEVEL3,
240} UENUM1BYTE(PRUNE_NEARMV_LEVEL);
245 TX_SEARCH_DEFAULT = 0,
247 TX_SEARCH_MOTION_MODE,
250} UENUM1BYTE(TX_SEARCH_CASE);
253 TX_TYPE_PRUNE_MODE prune_2d_txfm_mode;
254 int fast_intra_tx_type_search;
261 int fast_inter_tx_type_prob_thresh;
265 int use_reduced_intra_txset;
269 int use_skip_flag_prediction;
272 int ml_tx_split_thresh;
279 int prune_tx_type_using_stats;
281 int prune_tx_type_est_rd;
287 int winner_mode_tx_type_pruning;
300#if CONFIG_RT_ML_PARTITIONING
304} UENUM1BYTE(PARTITION_SEARCH_TYPE);
311} UENUM1BYTE(MAX_PART_PRED_MODE);
317} UENUM1BYTE(MV_PREC_LOGIC);
323} UENUM1BYTE(SUPERRES_AUTO_SEARCH_TYPE);
499typedef struct TPL_SPEED_FEATURES {
507 int gop_length_decision_method;
511 int prune_intra_modes;
513 int reduce_first_step_size;
520 int skip_alike_starting_mv;
523 SUBPEL_FORCE_STOP subpel_force_stop;
526 SEARCH_METHODS search_method;
529 int prune_starting_mv;
532 int prune_ref_frames_in_tpl;
535 int allow_compound_pred;
538 int use_y_only_rate_distortion;
541typedef struct GLOBAL_MOTION_SPEED_FEATURES {
542 GM_SEARCH_TYPE gm_search_type;
547 int prune_ref_frame_for_gm_search;
558 int disable_gm_search_based_on_stats;
561 int num_refinement_steps;
562} GLOBAL_MOTION_SPEED_FEATURES;
564typedef struct PARTITION_SPEED_FEATURES {
565 PARTITION_SEARCH_TYPE partition_search_type;
568 BLOCK_SIZE fixed_partition_size;
573 int prune_ext_partition_types_search_level;
576 int prune_part4_search;
580 int ml_prune_partition;
585 int ml_early_term_after_part_split_level;
590 int less_rectangular_check_level;
593 BLOCK_SIZE use_square_partition_only_threshold;
598 MAX_PART_PRED_MODE auto_max_partition_based_on_simple_motion;
602 BLOCK_SIZE default_min_partition_size;
603 BLOCK_SIZE default_max_partition_size;
609 int adjust_var_based_rd_partitioning;
612 int64_t partition_search_breakout_dist_thr;
613 int partition_search_breakout_rate_thr;
616 int ml_partition_search_breakout_thresh[PARTITION_BLOCK_SIZES];
622 int simple_motion_search_prune_agg;
626 int simple_motion_search_prune_rect;
633 int simple_motion_search_split;
637 int simple_motion_search_early_term_none;
643 int simple_motion_search_reduce_search_steps;
648 BLOCK_SIZE max_intra_bsize;
655 int intra_cnn_based_part_prune_level;
658 int ext_partition_eval_thresh;
661 int rect_partition_eval_thresh;
667 int prune_ext_part_using_split_info;
673 int prune_rectangular_split_based_on_qidx;
685 bool prune_rect_part_using_4x4_var_deviation;
689 int early_term_after_none_split;
695 int ml_predict_breakout_level;
701 int prune_sub_8x8_partition_level;
705 int simple_motion_search_rect_split;
738 int reuse_prev_rd_results_for_part_ab;
742 int reuse_best_prediction_for_part_ab;
752 int use_best_rd_for_pruning;
760 int skip_non_sq_part_based_on_none;
763 int disable_8x8_part_based_on_qidx;
764} PARTITION_SPEED_FEATURES;
766typedef struct MV_SPEED_FEATURES {
768 SEARCH_METHODS search_method;
774 int use_bsize_dependent_search_method;
778 int auto_mv_step_size;
784 SUBPEL_SEARCH_METHOD subpel_search_method;
787 int subpel_iters_per_step;
790 SUBPEL_FORCE_STOP subpel_force_stop;
793 SUBPEL_FORCE_STOP simple_motion_subpel_force_stop;
797 SUBPEL_SEARCH_TYPE use_accurate_subpel_search;
800 int exhaustive_searches_thresh;
803 MESH_PATTERN mesh_patterns[MAX_MESH_STEP];
806 MESH_PATTERN intrabc_mesh_patterns[MAX_MESH_STEP];
809 int reduce_search_range;
815 int use_fullpel_costlist;
820 int obmc_full_pixel_search_level;
823 int full_pixel_search_level;
836 int use_downsampled_sad;
839 int disable_extensive_joint_motion_search;
845 int disable_second_mv;
851 int skip_fullpel_search_using_startmv;
855 WARP_SEARCH_METHOD warp_search_method;
858 int warp_search_iters;
861typedef struct INTER_MODE_SPEED_FEATURES {
868 int inter_mode_rd_model_estimation;
874 int txfm_rd_gate_level[TX_SEARCH_CASES];
877 int reduce_inter_modes;
881 int adaptive_rd_thresh;
884 int prune_inter_modes_if_skippable;
889 int selective_ref_frame;
895 int prune_ref_frame_for_rect_partitions;
901 int alt_ref_search_fp;
912 int prune_comp_ref_frames;
926 int skip_newmv_in_drl;
932 int skip_repeated_ref_mv;
935 int perform_best_rd_based_gating_for_chroma;
939 int reuse_inter_intra_mode;
943 int prune_comp_type_by_model_rd;
947 int prune_comp_type_by_comp_avg;
955 int prune_comp_search_by_single_result;
960 int prune_mode_search_simple_translation;
965 int prune_compound_using_single_ref;
974 int prune_ext_comp_using_neighbors;
977 int skip_ext_comp_nearmv_mode;
984 int prune_comp_using_best_single_mode_ref;
990 int prune_nearest_near_mv_using_refmv_weight;
993 int prune_ref_mv_idx_search;
996 int disable_onesided_comp;
1000 int prune_obmc_prob_thresh;
1003 int prune_warped_prob_thresh;
1006 unsigned int disable_interintra_wedge_var_thresh;
1009 unsigned int disable_interinter_wedge_var_thresh;
1012 int fast_interintra_wedge_search;
1015 int fast_wedge_sign_estimate;
1018 int disable_interinter_wedge_newmv_search;
1021 DIST_WTD_COMP_FLAG use_dist_wtd_comp_flag;
1035 int prune_inter_modes_based_on_tpl;
1039 PRUNE_NEARMV_LEVEL prune_nearmv_using_neighbors;
1044 int model_based_post_interp_filter_breakout;
1049 int reuse_compound_type_decision;
1052 int disable_masked_comp;
1068 int enable_fast_compound_mode_search;
1071 int reuse_mask_search_results;
1074 int enable_fast_wedge_mask_search;
1077 int inter_mode_txfm_breakout;
1083 int limit_inter_mode_cands;
1087 int limit_txfm_eval_per_mode;
1090 int extra_prune_warped;
1101 int skip_arf_compound;
1102} INTER_MODE_SPEED_FEATURES;
1104typedef struct INTERP_FILTER_SPEED_FEATURES {
1107 int use_fast_interpolation_filter_search;
1110 int disable_dual_filter;
1115 int use_interp_filter;
1119 int skip_sharp_interp_filter_search;
1122 int cb_pred_filter_search;
1125 int adaptive_interp_filter_search;
1126} INTERP_FILTER_SPEED_FEATURES;
1128typedef struct INTRA_MODE_SPEED_FEATURES {
1131 int intra_y_mode_mask[TX_SIZES];
1132 int intra_uv_mode_mask[TX_SIZES];
1135 int skip_intra_in_interframe;
1141 int intra_pruning_with_hog;
1147 int chroma_intra_pruning_with_hog;
1150 int disable_smooth_intra;
1161 bool prune_smooth_intra_mode_for_chroma;
1167 int prune_filter_intra_level;
1176 int prune_palette_search_level;
1196 int prune_luma_palette_size_search_level;
1202 int prune_chroma_modes_using_luma_winner;
1218 int cfl_search_range;
1223 int top_intra_model_count_allowed;
1227 int adapt_top_model_rd_count_using_neighbors;
1237 int prune_luma_odd_delta_angles_in_intra;
1249 int early_term_chroma_palette_size_search;
1253 int skip_filter_intra_in_inter_frames;
1254} INTRA_MODE_SPEED_FEATURES;
1256typedef struct TX_SPEED_FEATURES {
1260 int inter_tx_size_search_init_depth_sqr;
1261 int inter_tx_size_search_init_depth_rect;
1262 int intra_tx_size_search_init_depth_sqr;
1263 int intra_tx_size_search_init_depth_rect;
1267 int tx_size_search_lgr_block;
1269 TX_TYPE_SEARCH tx_type_search;
1279 int adaptive_txb_search_level;
1284 int model_based_prune_tx_search_level;
1287 int refine_fast_tx_search_results;
1292 int prune_tx_size_level;
1303 bool prune_intra_tx_depths_using_nn;
1318 bool use_rd_based_breakout_for_intra_tx_search;
1321typedef struct RD_CALC_SPEED_FEATURES {
1323 int simple_model_rd_from_var;
1347 int tx_domain_dist_level;
1350 int tx_domain_dist_thres_level;
1353 TRELLIS_OPT_TYPE optimize_coefficients;
1360 int perform_coeff_opt;
1361} RD_CALC_SPEED_FEATURES;
1363typedef struct WINNER_MODE_SPEED_FEATURES {
1366 int enable_winner_mode_for_coeff_opt;
1370 int enable_winner_mode_for_tx_size_srch;
1378 int tx_size_search_level;
1382 int enable_winner_mode_for_use_tx_domain_dist;
1385 MULTI_WINNER_MODE_TYPE multi_winner_mode_type;
1390 int motion_mode_for_winner_cand;
1397 int dc_blk_pred_level;
1402 int winner_mode_ifs;
1416 int prune_winner_mode_eval_level;
1417} WINNER_MODE_SPEED_FEATURES;
1419typedef struct LOOP_FILTER_SPEED_FEATURES {
1421 LPF_PICK_METHOD lpf_pick;
1425 int use_coarse_filter_level_search;
1433 int dual_sgr_penalty_level;
1436 int enable_sgr_ep_pruning;
1439 int disable_loop_restoration_chroma;
1442 int disable_loop_restoration_luma;
1448 int prune_wiener_based_on_src_var;
1455 int prune_sgr_based_on_wiener;
1458 int reduce_wiener_window_size;
1461 bool disable_wiener_filter;
1464 bool disable_sgr_filter;
1467 bool disable_wiener_coeff_refine_search;
1470 int use_downsampled_wiener_stats;
1471} LOOP_FILTER_SPEED_FEATURES;
1473typedef struct REAL_TIME_SPEED_FEATURES {
1475 int check_intra_pred_nonrd;
1482 int skip_intra_pred;
1489 int estimate_motion_for_var_based_partition;
1496 int nonrd_check_partition_merge_mode;
1499 int nonrd_check_partition_split;
1504 unsigned int mode_search_skip_flags;
1510 int nonrd_prune_ref_frame_search;
1513 int use_nonrd_pick_mode;
1516 int use_nonrd_altref_frame;
1519 int use_comp_ref_nonrd;
1523 int ref_frame_comp_nonrd[3];
1526 int use_real_time_ref_set;
1530 int short_circuit_low_temp_var;
1533 int reuse_inter_pred_nonrd;
1536 int num_inter_modes_for_tx_search;
1539 int use_nonrd_filter_search;
1542 int use_simple_rd_model;
1545 int skip_interp_filter_search;
1552 int hybrid_intra_pickmode;
1555 int source_metrics_sb_nonrd;
1559 OVERSHOOT_DETECTION_CBR overshoot_detection_cbr;
1562 int check_scene_detection;
1566 int prefer_large_partition_blocks;
1569 int use_temporal_noise_estimate;
1575 int fullpel_search_step_param;
1582 int intra_y_mode_bsize_mask_nrd[BLOCK_SIZES];
1590 bool prune_hv_pred_modes_using_src_sad;
1593 int nonrd_aggressive_skip;
1606 int force_large_partition_blocks_intra;
1609 int skip_tx_no_split_var_based_partition;
1613 int skip_newmv_mode_based_on_sse;
1620 int prune_inter_modes_with_golden_ref;
1623 int prune_inter_modes_wrt_gf_arf_based_on_sad;
1627 int prune_inter_modes_using_temp_var;
1634 int reduce_mv_pel_precision_highmotion;
1641 int reduce_mv_pel_precision_lowcomplex;
1644 BLOCK_SIZE prune_intra_mode_based_on_mv_range;
1648 int var_part_split_threshold_shift;
1655 int var_part_based_on_qidx;
1658 int gf_refresh_based_on_qp;
1669 int prune_idtx_nonrd;
1672 int prune_palette_nonrd;
1687 int part_early_exit_zeromv;
1693 int sad_based_adp_altref_lag;
1696 int partition_direct_merging;
1699 int tx_size_level_based_on_qstep;
1709 bool vbp_prune_16x16_split_using_min_max_sub_blk_var;
1724 int screen_content_cdef_filter_qindex_thresh;
1728 bool prune_compoundmode_with_singlecompound_var;
1733 bool frame_level_mode_cost_update;
1743 bool prune_h_pred_using_best_mode_so_far;
1754 bool enable_intra_mode_pruning_using_neighbors;
1763 bool prune_intra_mode_using_best_sad_so_far;
1768 bool check_only_zero_zeromv_on_large_blocks;
1771 bool disable_cdf_update_non_reference_frame;
1774 bool prune_compoundmode_with_singlemode_var;
1778 bool skip_compound_based_on_var;
1785 int set_zeromv_skip_based_on_source_sad;
1790 bool use_adaptive_subpel_search;
1796 bool enable_ref_short_signaling;
1800 bool check_globalmv_on_single_ref;
1801} REAL_TIME_SPEED_FEATURES;
static int prune_zero_mv_with_sse(const aom_variance_fn_ptr_t *fn_ptr, const MACROBLOCK *x, BLOCK_SIZE bsize, const HandleInterModeArgs *args, int prune_zero_mv_with_sse)
Prunes ZeroMV Search Using Best NEWMV's SSE.
Definition rdopt.c:2499
void av1_set_speed_features_framesize_independent(struct AV1_COMP *cpi, int speed)
Frame size independent speed vs quality trade off flags.
void av1_set_speed_features_qindex_dependent(struct AV1_COMP *cpi, int speed)
Q index dependent speed vs quality trade off flags.
void av1_set_speed_features_framesize_dependent(struct AV1_COMP *cpi, int speed)
Frame size dependent speed vs quality trade off flags.
INTERNAL_COST_UPDATE_TYPE
This enum decides internally how often to update the entropy costs.
Definition speed_features.h:341
@ INTERNAL_COST_UPD_OFF
Definition speed_features.h:342
@ INTERNAL_COST_UPD_SBROW_SET
Definition speed_features.h:344
@ INTERNAL_COST_UPD_SBROW
Definition speed_features.h:345
@ INTERNAL_COST_UPD_SB
Definition speed_features.h:346
@ INTERNAL_COST_UPD_TILE
Definition speed_features.h:343
INTER_SEARCH_EARLY_TERM_IDX
This enumeration defines inter search early termination index in non-rd path based on sse value.
Definition speed_features.h:385
@ EARLY_TERM_INDICES
Definition speed_features.h:396
@ EARLY_TERM_IDX_1
Definition speed_features.h:388
@ EARLY_TERM_IDX_4
Definition speed_features.h:394
@ EARLY_TERM_IDX_2
Definition speed_features.h:390
@ EARLY_TERM_DISABLED
Definition speed_features.h:386
@ EARLY_TERM_IDX_3
Definition speed_features.h:392
SIMPLE_MOTION_SEARCH_PRUNE_LEVEL
This enumeration defines a variety of simple motion search based partition prune levels.
Definition speed_features.h:353
@ QIDX_BASED_AGG_LVL1
Definition speed_features.h:359
@ SIMPLE_AGG_LVL3
Definition speed_features.h:358
@ TOTAL_SIMPLE_AGG_LVLS
Definition speed_features.h:362
@ SIMPLE_AGG_LVL1
Definition speed_features.h:356
@ SIMPLE_AGG_LVL0
Definition speed_features.h:355
@ TOTAL_AGG_LVLS
Definition speed_features.h:368
@ SIMPLE_AGG_LVL2
Definition speed_features.h:357
@ TOTAL_QINDEX_BASED_AGG_LVLS
Definition speed_features.h:364
PRUNE_MESH_SEARCH_LEVEL
This enumeration defines a variety of mesh search prune levels.
Definition speed_features.h:375
@ PRUNE_MESH_SEARCH_LVL_1
Definition speed_features.h:377
@ PRUNE_MESH_SEARCH_LVL_2
Definition speed_features.h:378
@ PRUNE_MESH_SEARCH_DISABLED
Definition speed_features.h:376
CDEF_PICK_METHOD
This enumeration defines a variety of CDEF pick methods.
Definition speed_features.h:162
@ CDEF_FAST_SEARCH_LVL2
Definition speed_features.h:165
@ CDEF_FAST_SEARCH_LVL5
Definition speed_features.h:169
@ CDEF_FAST_SEARCH_LVL1
Definition speed_features.h:164
@ CDEF_FULL_SEARCH
Definition speed_features.h:163
@ CDEF_PICK_FROM_Q
Definition speed_features.h:170
@ CDEF_FAST_SEARCH_LVL4
Definition speed_features.h:168
@ CDEF_FAST_SEARCH_LVL3
Definition speed_features.h:166
Top level encoder structure.
Definition encoder.h:2815
int speed
Definition encoder.h:3032
Definition speed_features.h:473
int disable_recon
Skips reconstruction by using source buffers for prediction.
Definition speed_features.h:490
int reduce_mv_step_param
Reduces the mv search window. By default, the initial search window is around MIN(MIN(dims),...
Definition speed_features.h:480
int skip_zeromv_motion_search
Skips the motion search centered on 0,0 mv.
Definition speed_features.h:495
int skip_motion_search_threshold
Skips the motion search when the zero mv has small sse.
Definition speed_features.h:485
Sequence/frame level speed vs quality features.
Definition speed_features.h:402
int adjust_num_frames_for_arf_filtering
Definition speed_features.h:453
int second_alt_ref_filtering
Definition speed_features.h:447
int frame_parameter_update
Definition speed_features.h:404
int weight_calc_level_in_tf
Definition speed_features.h:467
MV_PREC_LOGIC high_precision_mv_usage
Definition speed_features.h:423
int disable_extra_sc_testing
Definition speed_features.h:442
int recode_tolerance
Definition speed_features.h:415
SUPERRES_AUTO_SEARCH_TYPE superres_auto_search_type
Definition speed_features.h:437
int static_segmentation
Definition speed_features.h:432
int accurate_bit_estimate
Definition speed_features.h:460
RECODE_LOOP_TYPE recode_loop
Definition speed_features.h:409
Top level speed vs quality trade off data struture.
Definition speed_features.h:1808
MV_SPEED_FEATURES mv_sf
Definition speed_features.h:1837
TPL_SPEED_FEATURES tpl_sf
Definition speed_features.h:1822
LOOP_FILTER_SPEED_FEATURES lpf_sf
Definition speed_features.h:1872
TX_SPEED_FEATURES tx_sf
Definition speed_features.h:1857
INTER_MODE_SPEED_FEATURES inter_sf
Definition speed_features.h:1842
RD_CALC_SPEED_FEATURES rd_sf
Definition speed_features.h:1862
PARTITION_SPEED_FEATURES part_sf
Definition speed_features.h:1832
GLOBAL_MOTION_SPEED_FEATURES gm_sf
Definition speed_features.h:1827
INTERP_FILTER_SPEED_FEATURES interp_sf
Definition speed_features.h:1847
FIRST_PASS_SPEED_FEATURES fp_sf
Definition speed_features.h:1817
INTRA_MODE_SPEED_FEATURES intra_sf
Definition speed_features.h:1852
WINNER_MODE_SPEED_FEATURES winner_mode_sf
Definition speed_features.h:1867
REAL_TIME_SPEED_FEATURES rt_sf
Definition speed_features.h:1877
HIGH_LEVEL_SPEED_FEATURES hl_sf
Definition speed_features.h:1812