Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
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
095c88e4
Commit
095c88e4
authored
Jun 15, 2016
by
Debargha Mukherjee
Committed by
Gerrit Code Review
Jun 15, 2016
Browse files
Merge "Fix estimate_wedge_sign with high bit-depth." into nextgenv2
parents
c457fc35
d3df694f
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp10/encoder/rdopt.c
View file @
095c88e4
...
@@ -6578,6 +6578,13 @@ static int estimate_wedge_sign(const VP10_COMP *cpi,
...
@@ -6578,6 +6578,13 @@ static int estimate_wedge_sign(const VP10_COMP *cpi,
uint32_t esq[2][4], var;
uint32_t esq[2][4], var;
int64_t tl, br;
int64_t tl, br;
#if CONFIG_VP9_HIGHBITDEPTH
if (x->e_mbd.cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) {
pred0 = CONVERT_TO_BYTEPTR(pred0);
pred1 = CONVERT_TO_BYTEPTR(pred1);
}
#endif // CONFIG_VP9_HIGHBITDEPTH
var = cpi->fn_ptr[f_index].vf(
var = cpi->fn_ptr[f_index].vf(
src, src_stride,
src, src_stride,
pred0, stride0, &esq[0][0]);
pred0, stride0, &esq[0][0]);
...
...
Write
Preview
Markdown
is supported
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