summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohann <johannkoenig@google.com>2018-12-20 16:54:37 +0000
committerJohann <johannkoenig@google.com>2018-12-21 15:50:36 +0000
commit7badbcc42127dbf5042fa1dc27c522e7149b2624 (patch)
tree741ea1668e911d82e9eafae39df572caede681de
parentd12f5d3ef79d5f375ea5819a1ce6824d4c2b4377 (diff)
downloadlibvpx-7badbcc42127dbf5042fa1dc27c522e7149b2624.tar
libvpx-7badbcc42127dbf5042fa1dc27c522e7149b2624.tar.gz
libvpx-7badbcc42127dbf5042fa1dc27c522e7149b2624.tar.bz2
libvpx-7badbcc42127dbf5042fa1dc27c522e7149b2624.zip
vpx{dec,enc}: resolve missing declarations
BUG=webm:1584 Change-Id: I81e53e579e6fd22b7b21f432256abbe91bf77b15
-rw-r--r--vpxdec.c2
-rw-r--r--vpxenc.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/vpxdec.c b/vpxdec.c
index eaa28bd84..7f544d4bc 100644
--- a/vpxdec.c
+++ b/vpxdec.c
@@ -175,7 +175,7 @@ static INLINE int libyuv_scale(vpx_image_t *src, vpx_image_t *dst,
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);
diff --git a/vpxenc.c b/vpxenc.c
index 9fd36af33..b7841522d 100644
--- a/vpxenc.c
+++ b/vpxenc.c
@@ -560,7 +560,7 @@ static const int vp9_arg_ctrl_map[] = { VP8E_SET_CPUUSED,
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();