Reusing ROUND_POWER_OF_TWO macro.
Change-Id: I064ba32d5358bfbf080a4300fc1793b345080006
This commit is contained in:
parent
166d8142ac
commit
ff655420b5
@ -107,11 +107,9 @@ static const uint8_t VP9_VAR_OFFS[64] = {
|
||||
static unsigned int get_sby_perpixel_variance(VP9_COMP *cpi, MACROBLOCK *x,
|
||||
BLOCK_SIZE bs) {
|
||||
unsigned int var, sse;
|
||||
var = cpi->fn_ptr[bs].vf(x->plane[0].src.buf,
|
||||
x->plane[0].src.stride,
|
||||
var = cpi->fn_ptr[bs].vf(x->plane[0].src.buf, x->plane[0].src.stride,
|
||||
VP9_VAR_OFFS, 0, &sse);
|
||||
return (var + (1 << (num_pels_log2_lookup[bs] - 1))) >>
|
||||
num_pels_log2_lookup[bs];
|
||||
return ROUND_POWER_OF_TWO(var, num_pels_log2_lookup[bs]);
|
||||
}
|
||||
|
||||
// Original activity measure from Tim T's code.
|
||||
|
Loading…
x
Reference in New Issue
Block a user