shithub: libvpx

Download patch

ref: 2f7c4d276a321868210cc522dd85ff60a3e7c111
parent: 170a4bb4b8869c919f6f631eeb073357859a1003
parent: 7badbcc42127dbf5042fa1dc27c522e7149b2624
author: Johann Koenig <johannkoenig@google.com>
date: Fri Dec 21 14:29:38 EST 2018

Merge "vpx{dec,enc}: resolve missing declarations"

--- a/vpxdec.c
+++ b/vpxdec.c
@@ -175,7 +175,7 @@
                    dst->d_h, mode);
 }
 #endif
-void show_help(FILE *fout, int shorthelp) {
+static void show_help(FILE *fout, int shorthelp) {
   int i;
 
   fprintf(fout, "Usage: %s <options> filename\n\n", exec_name);
--- a/vpxenc.c
+++ b/vpxenc.c
@@ -560,7 +560,7 @@
 
 static const arg_def_t *no_args[] = { NULL };
 
-void show_help(FILE *fout, int shorthelp) {
+static void show_help(FILE *fout, int shorthelp) {
   int i;
   const int num_encoder = get_vpx_encoder_count();