Home
last modified time | relevance | path

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

/external/libaom/libaom/aom_dsp/
Dnoise_util.h22 struct aom_noise_tx_t;
27 struct aom_noise_tx_t *aom_noise_tx_malloc(int block_size);
28 void aom_noise_tx_free(struct aom_noise_tx_t *aom_noise_tx);
33 void aom_noise_tx_forward(struct aom_noise_tx_t *aom_noise_tx,
40 void aom_noise_tx_filter(struct aom_noise_tx_t *aom_noise_tx, const float *psd);
45 void aom_noise_tx_inverse(struct aom_noise_tx_t *aom_noise_tx, float *data);
48 void aom_noise_tx_add_energy(const struct aom_noise_tx_t *aom_noise_tx,
Dnoise_util.c30 struct aom_noise_tx_t { struct
38 struct aom_noise_tx_t *aom_noise_tx_malloc(int block_size) { in aom_noise_tx_malloc() argument
39 struct aom_noise_tx_t *noise_tx = in aom_noise_tx_malloc()
40 (struct aom_noise_tx_t *)aom_malloc(sizeof(struct aom_noise_tx_t)); in aom_noise_tx_malloc()
87 void aom_noise_tx_forward(struct aom_noise_tx_t *noise_tx, const float *data) { in aom_noise_tx_forward()
91 void aom_noise_tx_filter(struct aom_noise_tx_t *noise_tx, const float *psd) { in aom_noise_tx_filter()
111 void aom_noise_tx_inverse(struct aom_noise_tx_t *noise_tx, float *data) { in aom_noise_tx_inverse()
119 void aom_noise_tx_add_energy(const struct aom_noise_tx_t *noise_tx, in aom_noise_tx_add_energy()
130 void aom_noise_tx_free(struct aom_noise_tx_t *noise_tx) { in aom_noise_tx_free()
Dnoise_model.c1336 struct aom_noise_tx_t *tx_full = NULL; in aom_wiener_denoise_2d()
1337 struct aom_noise_tx_t *tx_chroma = NULL; in aom_wiener_denoise_2d()
1385 struct aom_noise_tx_t *tx = in aom_wiener_denoise_2d()
/external/libaom/libaom/test/
Dnoise_model_test.cc81 struct aom_noise_tx_t *tx = aom_noise_tx_malloc(block_size); in get_noise_psd()