Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Yushin Cho
aom-rav1e
Commits
418d6b31
Commit
418d6b31
authored
Oct 29, 2012
by
Ronald S. Bultje
Browse files
detokenize: make local symbols static.
Change-Id: Ie80d13ce095faa8bca21bcdca3ca8249d9abc398
parent
4c6a2d22
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp8/decoder/detokenize.c
View file @
418d6b31
...
...
@@ -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
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment