HomeSort by relevance Sort by last modified time
    Searched refs:block_finder (Results 1 - 3 of 3) sorted by null

  /external/libaom/libaom/aom_dsp/
noise_model.h 138 /*!\brief Init the block_finder with the given block size, bit_depth */
139 int aom_flat_block_finder_init(aom_flat_block_finder_t *block_finder,
141 void aom_flat_block_finder_free(aom_flat_block_finder_t *block_finder);
145 const aom_flat_block_finder_t *block_finder, const uint8_t *const data,
156 int aom_flat_block_finder_run(const aom_flat_block_finder_t *block_finder,
noise_model.c 422 int aom_flat_block_finder_init(aom_flat_block_finder_t *block_finder,
447 block_finder->A = A;
448 block_finder->AtA_inv = AtA_inv;
449 block_finder->block_size = block_size;
450 block_finder->normalization = (1 << bit_depth) - 1;
451 block_finder->use_highbd = use_highbd;
485 void aom_flat_block_finder_free(aom_flat_block_finder_t *block_finder) {
486 if (!block_finder) return;
487 aom_free(block_finder->A);
488 aom_free(block_finder->AtA_inv)
1382 aom_flat_block_finder_t *block_finder = &block_finder_full; local
    [all...]
  /external/libaom/libaom/examples/
noise_model.c 324 aom_flat_block_finder_t block_finder; local
325 aom_flat_block_finder_init(&block_finder, block_size, args.bit_depth,
366 &block_finder, raw.planes[0], info.frame_width, info.frame_height,

Completed in 447 milliseconds