From 632177fa7f3547484ac728bb9ce009225b683fed Mon Sep 17 00:00:00 2001 From: James Zern Date: Thu, 14 May 2015 19:59:32 -0700 Subject: [PATCH] vp8: make some functions static silences missing prototype warnings Change-Id: I9f24a3214c832c982ca0dc5a032316eba48472ff --- vp8/common/postproc.c | 4 ++-- vp8/decoder/onyxd_if.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/vp8/common/postproc.c b/vp8/common/postproc.c index 266431a32..a4e6ae170 100644 --- a/vp8/common/postproc.c +++ b/vp8/common/postproc.c @@ -427,7 +427,7 @@ void vp8_de_noise(VP8_COMMON *cm, } } -double vp8_gaussian(double sigma, double mu, double x) +static double gaussian(double sigma, double mu, double x) { return 1 / (sigma * sqrt(2.0 * 3.14159265)) * (exp(-(x - mu) * (x - mu) / (2 * sigma * sigma))); @@ -455,7 +455,7 @@ static void fillrd(struct postproc_state *state, int q, int a) for (i = -32; i < 32; i++) { - const int v = (int)(.5 + 256 * vp8_gaussian(sigma, 0, i)); + const int v = (int)(.5 + 256 * gaussian(sigma, 0, i)); if (v) { diff --git a/vp8/decoder/onyxd_if.c b/vp8/decoder/onyxd_if.c index d7b8c76dc..9015fcbb4 100644 --- a/vp8/decoder/onyxd_if.c +++ b/vp8/decoder/onyxd_if.c @@ -259,7 +259,7 @@ static int swap_frame_buffers (VP8_COMMON *cm) return err; } -int check_fragments_for_errors(VP8D_COMP *pbi) +static int check_fragments_for_errors(VP8D_COMP *pbi) { if (!pbi->ec_active && pbi->fragments.count <= 1 && pbi->fragments.sizes[0] == 0) -- 2.40.0