Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
aom-rav1e
Commits
364b92dc
Commit
364b92dc
authored
Jan 05, 2015
by
Yaowu Xu
Browse files
Fix compiler warnigns for msvc2013
Change-Id: I1e32bf8f6872a6fb7e9cabe86483e94805e2f790
parent
fe23539d
Changes
2
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_encodemb.c
View file @
364b92dc
...
...
@@ -93,7 +93,7 @@ typedef struct vp9_token_state {
int
rate
;
int
error
;
int
next
;
signed
char
token
;
int16_t
token
;
short
qc
;
}
vp9_token_state
;
...
...
vp9/encoder/vp9_tokenize.h
View file @
364b92dc
...
...
@@ -65,7 +65,7 @@ extern const int16_t vp9_cat6_low_cost[256];
extern
const
int16_t
vp9_cat6_high_cost
[
128
];
extern
const
int16_t
vp9_cat6_high10_high_cost
[
512
];
extern
const
int16_t
vp9_cat6_high12_high_cost
[
2048
];
static
INLINE
int16_t
vp9_get_cost
(
u
int
8
_t
token
,
EXTRABIT
extrabits
,
static
INLINE
int16_t
vp9_get_cost
(
int
16
_t
token
,
EXTRABIT
extrabits
,
const
int16_t
*
cat6_high_table
)
{
if
(
token
!=
CATEGORY6_TOKEN
)
return
vp9_extra_bits
[
token
].
cost
[
extrabits
];
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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