X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=wma_common.c;h=1dde83509f2e38e8ba044fc961c381e06b74b7ca;hp=781db5f4a36678f14db97a165b02e8f41df3e8b8;hb=5ff2b0b3a6f9242033c436fb8272245f5594dd8c;hpb=9417eae5ca2b9f10d25f769221e8fd91048bc68a diff --git a/wma_common.c b/wma_common.c index 781db5f4..1dde8350 100644 --- a/wma_common.c +++ b/wma_common.c @@ -116,7 +116,7 @@ int read_asf_header(const char *buf, int loaded, struct asf_header_info *ahi) return 1; } -const uint8_t log2_tab[256] = { +static const uint8_t log2_tab[256] = { 0, 0, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, @@ -142,7 +142,7 @@ const uint8_t log2_tab[256] = { * * \return An integer approximation of log2(v). */ -int wma_log2(unsigned int v) +__a_const int wma_log2(unsigned int v) { int n = 0; if (v & 0xffff0000) {