shithub: libvpx

Download patch

ref: 2b18c9a09b184e6d5d78706cce57de91aae113cd
parent: 3acfe46e8d8040314b9e5c5ef5079cc49a707d00
author: Yaowu Xu <yaowu@google.com>
date: Wed Aug 12 08:14:17 EDT 2015

Add vpxenc help info

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

Change-Id: Ida4b691052441e68b9352746988027e5a2a26f48

--- a/vpxenc.c
+++ b/vpxenc.c
@@ -211,7 +211,7 @@
   &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 @@
   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"