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
c53f8ca6
Commit
c53f8ca6
authored
Oct 21, 2016
by
Yaowu Xu
Committed by
Gerrit Code Review
Oct 21, 2016
Browse files
Merge "Use MV_FP_SIZE based constant instead of 3." into nextgenv2
parents
67cf85b8
ac499f35
Changes
1
Hide whitespace changes
Inline
Side-by-side
av1/decoder/decodeframe.c
View file @
c53f8ca6
...
...
@@ -217,7 +217,7 @@ static void read_mv_probs(nmv_context *ctx, int allow_hp, aom_reader *r) {
nmv_component
*
const
comp_ctx
=
&
ctx
->
comps
[
i
];
for
(
j
=
0
;
j
<
CLASS0_SIZE
;
++
j
)
update_mv_probs
(
comp_ctx
->
class0_fp
[
j
],
MV_FP_SIZE
-
1
,
r
);
update_mv_probs
(
comp_ctx
->
fp
,
3
,
r
);
update_mv_probs
(
comp_ctx
->
fp
,
MV_FP_SIZE
-
1
,
r
);
}
if
(
allow_hp
)
{
...
...
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