Home
last modified time | relevance | path

Searched refs:sum_weights (Results 1 – 4 of 4) sorted by relevance

/external/libvpx/libvpx/vp8/encoder/
Donyx_int.h672 double sum_weights[VPX_TS_MAX_LAYERS]; member
Dfirstpass.c292 double sum_weights = 0.0; in simple_weight() local
301 sum_weights += weight_table[*src]; in simple_weight()
308 sum_weights /= (source->y_height * source->y_width); in simple_weight()
310 return sum_weights; in simple_weight()
Donyx_if.c2143 100 * pow(cpi->sum_ssim[i] / cpi->sum_weights[i], 8.0); in vp8_remove_compressor()
5230 cpi->sum_weights[i] += weight; in vp8_get_compressed_data()
/external/libaom/libaom/aom_dsp/
Dnoise_model.c639 double sum_weights = weights[0] * var + weights[1] * ratio + in aom_flat_block_finder_run() local
643 sum_weights = fclamp(sum_weights, -25.0, 100.0); in aom_flat_block_finder_run()
644 const float score = (float)(1.0 / (1 + exp(-sum_weights))); in aom_flat_block_finder_run()