ref: 418d6b317dba35c1c114d97f069d0a0cd3a82a6a
parent: 4c6a2d2221afc49189bfd9ade40d61a820d0ad8b
author: Ronald S. Bultje <rbultje@google.com>
date: Mon Oct 29 17:28:08 EDT 2012
detokenize: make local symbols static. Change-Id: Ie80d13ce095faa8bca21bcdca3ca8249d9abc398
--- a/vp8/decoder/detokenize.c
+++ b/vp8/decoder/detokenize.c
@@ -119,8 +119,7 @@
// #define PREV_CONTEXT_INC(val) (vp8_prev_token_class[(val)])
#define PREV_CONTEXT_INC(val) (vp8_prev_token_class[(val)>10?10:(val)])
-
-int get_token(int v) {
+static int get_token(int v) {
if (v < 0) v = -v;
if (v == 0) return ZERO_TOKEN;
else if (v == 1) return ONE_TOKEN;
--
⑨