Searched refs:combined_state (Results 1 – 4 of 4) sorted by relevance
/external/libaom/libaom/test/ |
D | noise_model_test.cc | 622 EXPECT_NEAR(0, model.combined_state[c].eqns.x[i], kCoeffEps); in TYPED_TEST_P() 627 ASSERT_EQ(n + 1, model.combined_state[c].eqns.n); in TYPED_TEST_P() 630 EXPECT_NEAR(1, model.combined_state[c].eqns.x[n], kCoeffEps); in TYPED_TEST_P() 644 model.combined_state[0].strength_solver.eqns.x[i] / normalize, in TYPED_TEST_P() 694 EXPECT_NEAR(0, model.combined_state[c].eqns.x[i], kCoeffEps); in TYPED_TEST_P() 698 ASSERT_EQ(n + 1, model.combined_state[c].eqns.n); in TYPED_TEST_P() 702 EXPECT_NEAR(0, model.combined_state[c].eqns.x[n], kCoeffEps); in TYPED_TEST_P() 719 model.combined_state[0].strength_solver.eqns.x[i] / normalize, in TYPED_TEST_P() 789 EXPECT_NEAR(kCoeffs[c][i], model.combined_state[c].eqns.x[i], kCoeffEps); in TYPED_TEST_P() 794 EXPECT_NEAR(0, model.combined_state[c].eqns.x[n], kCoeffEps); in TYPED_TEST_P() [all …]
|
/external/libaom/libaom/aom_dsp/ |
D | noise_model.c | 694 if (!noise_state_init(&model->combined_state[c], n + (c > 0), bit_depth)) { in aom_noise_model_init() 742 equation_system_free(&model->combined_state[c].eqns); in aom_noise_model_free() 745 equation_system_free(&model->combined_state[c].strength_solver.eqns); in aom_noise_model_free() 932 noise_model->combined_state[c].eqns.x, in is_noise_model_different() 933 noise_model->combined_state[c].eqns.n); in is_noise_model_different() 942 &noise_model->combined_state[c].strength_solver.eqns; in is_noise_model_different() 1077 noise_model->combined_state[channel].strength_solver.num_equations > in aom_noise_model_update() 1086 noise_model->combined_state[channel].num_observations += in aom_noise_model_update() 1088 equation_system_add(&noise_model->combined_state[channel].eqns, in aom_noise_model_update() 1090 if (!ar_equation_system_solve(&noise_model->combined_state[channel], in aom_noise_model_update() [all …]
|
D | noise_model.h | 197 aom_noise_state_t combined_state[3]; // Combined state per channel member
|
/external/libaom/libaom/examples/ |
D | noise_model.c | 269 &noise_model->combined_state[c].strength_solver.eqns; in print_debug_info()
|