From: Ronald S. Bultje Date: Tue, 30 Oct 2012 04:26:53 +0000 (-0700) Subject: firstpass: make local symbols static. X-Git-Tag: v1.3.0~1217^2~155^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4c6a2d2221afc49189bfd9ade40d61a820d0ad8b;p=libvpx firstpass: make local symbols static. Change-Id: Iee0f707abbfe427b10058f6cf3be21b89d6a6e65 --- diff --git a/vp8/encoder/firstpass.c b/vp8/encoder/firstpass.c index 09d5a762e..2a622ffef 100644 --- a/vp8/encoder/firstpass.c +++ b/vp8/encoder/firstpass.c @@ -798,9 +798,10 @@ void vp8_first_pass(VP8_COMP *cpi) { // -double bitcost(double prob) { +static double bitcost(double prob) { return -(log(prob) / log(2.0)); } + static long long estimate_modemvcost(VP8_COMP *cpi, FIRSTPASS_STATS *fpstats) { int mv_cost; @@ -1911,7 +1912,7 @@ static void assign_std_frame_bits(VP8_COMP *cpi, FIRSTPASS_STATS *this_frame) { } // Make a damped adjustment to the active max q. -int adjust_active_maxq(int old_maxqi, int new_maxqi) { +static int adjust_active_maxq(int old_maxqi, int new_maxqi) { int i; int ret_val = new_maxqi; double old_q;