aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCheng Chen <chengchen@google.com>2024-03-07 17:10:41 -0800
committerWan-Teh Chang <wtc@google.com>2024-03-08 18:52:41 +0000
commit1bf5bfaeb39f482a1357bc9a362a9a464624b0f9 (patch)
treea69999497e79bd6572f46ea586fe7a6fa4c28e54
parent56ae0ede9ea68e41593cb70377d5d2845ca0e70d (diff)
downloadlibaom-1bf5bfaeb39f482a1357bc9a362a9a464624b0f9.tar.gz
Match the order of control args
Make the order of av1_ctrl_args the same as av1_arg_ctrl_map. BUG=aomedia:3545 Change-Id: If697c235cd844495db59f400284d0b7c5117de79 (cherry picked from commit 97e6d48dcaaf5bd80cce959013e249bfeecf7110)
-rw-r--r--apps/aomenc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/aomenc.c b/apps/aomenc.c
index c3f5c33e6..3e334cbae 100644
--- a/apps/aomenc.c
+++ b/apps/aomenc.c
@@ -442,12 +442,12 @@ const arg_def_t *av1_ctrl_args[] = {
#endif
&g_av1_codec_arg_defs.dv_cost_upd_freq,
&g_av1_codec_arg_defs.partition_info_path,
- &g_av1_codec_arg_defs.enable_rate_guide_deltaq,
- &g_av1_codec_arg_defs.rate_distribution_info,
&g_av1_codec_arg_defs.enable_directional_intra,
&g_av1_codec_arg_defs.enable_tx_size_search,
&g_av1_codec_arg_defs.loopfilter_control,
&g_av1_codec_arg_defs.auto_intra_tools_off,
+ &g_av1_codec_arg_defs.enable_rate_guide_deltaq,
+ &g_av1_codec_arg_defs.rate_distribution_info,
NULL,
};