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
5572486e
Commit
5572486e
authored
Oct 19, 2016
by
Sarah Parker
Committed by
Gerrit Code Review
Oct 19, 2016
Browse files
Merge "Adjust gm costing so GLOBAL_ZERO is treated as regular zeromv" into nextgenv2
parents
470efbcf
ae51dd82
Changes
1
Hide whitespace changes
Inline
Side-by-side
av1/encoder/rdopt.c
View file @
5572486e
...
...
@@ -4137,7 +4137,7 @@ static int get_gmbitcost(const Global_Motion_Params *gm,
bits =
(gm->motion_params.wmmat[0].as_int ? ((GM_ABS_TRANS_BITS + 1) * 2) : 0);
}
return (bits << AV1_PROB_COST_SHIFT) + gmtype_cost[gm->gmtype];
return
bits ?
(bits << AV1_PROB_COST_SHIFT) + gmtype_cost[gm->gmtype]
: 0
;
}
#define GLOBAL_MOTION_RATE(ref) \
...
...
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