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
6e21ca76
Commit
6e21ca76
authored
Oct 11, 2013
by
Dmitry Kovalev
Committed by
Gerrit Code Review
Oct 11, 2013
Browse files
Merge "Removing vp9_tree_p typedef."
parents
9c8f3063
98400c1b
Changes
3
Hide whitespace changes
Inline
Side-by-side
vp9/common/vp9_entropy.h
View file @
6e21ca76
...
...
@@ -49,7 +49,7 @@ extern const vp9_tree_index vp9_coefmodel_tree[];
extern
struct
vp9_token
vp9_coef_encodings
[
MAX_ENTROPY_TOKENS
];
typedef
struct
{
vp9_tree_
p
tree
;
vp9_tree_
index
*
tree
;
const
vp9_prob
*
prob
;
int
len
;
int
base_val
;
...
...
vp9/common/vp9_treecoder.h
View file @
6e21ca76
...
...
@@ -30,7 +30,7 @@ typedef int8_t vp9_tree_index;
Index > 0 means need another bit, specification at index.
Nonnegative indices are always even; processing begins at node 0. */
typedef
const
vp9_tree_index
vp9_tree
[]
,
*
vp9_tree_p
;
typedef
const
vp9_tree_index
vp9_tree
[];
struct
vp9_token
{
int
value
;
...
...
vp9/encoder/vp9_modecosts.c
View file @
6e21ca76
...
...
@@ -17,7 +17,7 @@
void
vp9_init_mode_costs
(
VP9_COMP
*
c
)
{
VP9_COMMON
*
const
cm
=
&
c
->
common
;
const
vp9_tree_
p
KT
=
vp9_intra_mode_tree
;
const
vp9_tree_
index
*
KT
=
vp9_intra_mode_tree
;
int
i
,
j
;
for
(
i
=
0
;
i
<
INTRA_MODES
;
i
++
)
{
...
...
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