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
0e905e03
Commit
0e905e03
authored
Apr 24, 2013
by
Deb Mukherjee
Committed by
Gerrit Code Review
Apr 24, 2013
Browse files
Merge "Fix in token allocation with zerogroup expt" into experimental
parents
27bb4777
64e7f017
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/common/vp9_onyxc_int.h
View file @
0e905e03
...
...
@@ -362,6 +362,10 @@ static int get_mb_col(const MACROBLOCKD *xd) {
}
static
int
get_token_alloc
(
int
mb_rows
,
int
mb_cols
)
{
#if CONFIG_CODE_ZEROGROUP
return
mb_rows
*
mb_cols
*
(
24
*
16
*
2
);
#else
return
mb_rows
*
mb_cols
*
(
24
*
16
+
4
);
#endif
}
#endif // VP9_COMMON_VP9_ONYXC_INT_H_
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