]> granicus.if.org Git - libvpx/commitdiff
detokenize: make local symbols static.
authorRonald S. Bultje <rbultje@google.com>
Tue, 30 Oct 2012 04:28:08 +0000 (21:28 -0700)
committerRonald S. Bultje <rbultje@google.com>
Tue, 30 Oct 2012 04:28:08 +0000 (21:28 -0700)
Change-Id: Ie80d13ce095faa8bca21bcdca3ca8249d9abc398

vp8/decoder/detokenize.c

index fa56865ace15c31cad8cbb296fba4166c40a4b97..0d4af4bc6580f1223a3aa45d3116118f5f5dbfdd 100644 (file)
@@ -119,8 +119,7 @@ DECLARE_ALIGNED(16, extern const unsigned char, vp8_norm[256]);
 // #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;