Add vpxenc help info

1. information on --test-decode
2. vp10 specific parameters, currently shared with vp9

Change-Id: Ida4b691052441e68b9352746988027e5a2a26f48
This commit is contained in:
Yaowu Xu 2015-08-12 12:14:17 -07:00
parent 3acfe46e8d
commit 2b18c9a09b

View File

@ -211,7 +211,7 @@ static const arg_def_t *main_args[] = {
&outputfile, &codecarg, &passes, &pass_arg, &fpf_name, &limit, &skip,
&deadline, &best_dl, &good_dl, &rt_dl,
&quietarg, &verbosearg, &psnrarg, &use_webm, &use_ivf, &out_part, &q_hist_n,
&rate_hist_n, &disable_warnings, &disable_warning_prompt,
&rate_hist_n, &disable_warnings, &disable_warning_prompt, &recontest,
NULL
};
@ -496,7 +496,15 @@ void usage_exit(void) {
arg_show_usage(stderr, vp8_args);
#endif
#if CONFIG_VP9_ENCODER || CONFIG_VP10_ENCODER
fprintf(stderr, "\nVP9 Specific Options:\n");
// TODO(yaowu: split vp9 and vp10 option when necessary.
fprintf(stderr, "\n");
#if CONFIG_VP9_ENCODER
fprintf(stderr, "VP9 ");
#endif
#if CONFIG_VP10_ENCODER
fprintf(stderr, "VP10 ");
#endif
fprintf(stderr, "Specific Options:\n");
arg_show_usage(stderr, vp9_args);
#endif
fprintf(stderr, "\nStream timebase (--timebase):\n"