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
Xiph.Org
aom-rav1e
Commits
5a7ac03b
Commit
5a7ac03b
authored
Feb 21, 2014
by
Yaowu Xu
Committed by
Gerrit Code Review
Feb 21, 2014
Browse files
Changed a constant array to static const type
Change-Id: I5b3918441f63ceb7889dcf546e9a2d781be4a3cb
parent
f1633e58
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_pickmode.c
View file @
5a7ac03b
...
...
@@ -192,7 +192,7 @@ int64_t vp9_pick_inter_mode(VP9_COMP *cpi, MACROBLOCK *x,
VP9_ALT_FLAG
};
int64_t
best_rd
=
INT64_MAX
;
int64_t
this_rd
;
int64_
t
cost
[
4
]
=
{
0
,
50
,
75
,
100
};
static
const
in
t
cost
[
4
]
=
{
0
,
50
,
75
,
100
};
const
int64_t
inter_mode_thresh
=
300
;
const
int64_t
intra_mode_cost
=
50
;
...
...
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