Home
last modified time | relevance | path

Searched refs:num_blocks_h (Results 1 – 2 of 2) sorted by relevance

/external/libaom/libaom/aom_dsp/
Dnoise_model.c564 const int num_blocks_h = (h + block_size - 1) / block_size; in aom_flat_block_finder_run() local
570 num_blocks_w * num_blocks_h * sizeof(*scores)); in aom_flat_block_finder_run()
582 for (by = 0; by < num_blocks_h; ++by) { in aom_flat_block_finder_run()
659 qsort(scores, num_blocks_w * num_blocks_h, sizeof(*scores), &compare_scores); in aom_flat_block_finder_run()
660 const int top_nth_percentile = num_blocks_w * num_blocks_h * 90 / 100; in aom_flat_block_finder_run()
662 for (int i = 0; i < num_blocks_w * num_blocks_h; ++i) { in aom_flat_block_finder_run()
792 int num_blocks_w, int num_blocks_h) { in add_block_observations() argument
805 for (int by = 0; by < num_blocks_h; ++by) { in add_block_observations()
859 int num_blocks_h) { in add_noise_std_observations() argument
868 for (int by = 0; by < num_blocks_h; ++by) { in add_noise_std_observations()
[all …]
/external/libaom/libaom/examples/
Dnoise_model.c192 const int num_blocks_h = (raw->h + block_size - 1) / block_size; in print_variance_y() local
194 for (int by = 0; by < num_blocks_h; by++) { in print_variance_y()
329 const int num_blocks_h = (info.frame_height + block_size - 1) / block_size; in main() local
330 uint8_t *flat_blocks = (uint8_t *)aom_malloc(num_blocks_w * num_blocks_h); in main()
361 int num_flat_blocks = num_blocks_w * num_blocks_h; in main()