fix vp8_ namespace issues

Make functions only referenced from one translation unit static. Other
symbols with extern linkage get a vp8/vpx prefix.

Change-Id: I928c7e0d0d36e89ac78cb54ff8bb28748727834f
This commit is contained in:
John Koleszar
2012-05-04 12:23:53 -07:00
parent 22f56b93e5
commit 14d827f44e
7 changed files with 14 additions and 14 deletions

View File

@@ -868,7 +868,7 @@ extern const int vp8_bits_per_mb[2][QINDEX_RANGE];
//
double bitcost( double prob )
static double bitcost( double prob )
{
return -(log( prob ) / log( 2.0 ));
}