Searched refs:scaled_error (Results 1 – 8 of 8) sorted by relevance
/external/libaom/av1/encoder/arm/ |
D | temporal_filter_neon_dotprod.c | 184 double scaled_error = in apply_temporal_filter() local 186 scaled_error = AOMMIN(scaled_error, 7); in apply_temporal_filter() 187 const int weight = (int)(exp(-scaled_error) * TF_WEIGHT_SCALE); in apply_temporal_filter() 204 double scaled_error = in apply_temporal_filter() local 206 scaled_error = AOMMIN(scaled_error, 7); in apply_temporal_filter() 208 approx_exp((float)-scaled_error) * TF_WEIGHT_SCALE; in apply_temporal_filter()
|
D | temporal_filter_neon.c | 162 double scaled_error = in apply_temporal_filter() local 164 scaled_error = AOMMIN(scaled_error, 7); in apply_temporal_filter() 165 const int weight = (int)(exp(-scaled_error) * TF_WEIGHT_SCALE); in apply_temporal_filter() 182 double scaled_error = in apply_temporal_filter() local 184 scaled_error = AOMMIN(scaled_error, 7); in apply_temporal_filter() 186 approx_exp((float)-scaled_error) * TF_WEIGHT_SCALE; in apply_temporal_filter()
|
D | highbd_temporal_filter_neon.c | 249 double scaled_error = in highbd_apply_temporal_filter() local 251 scaled_error = AOMMIN(scaled_error, 7); in highbd_apply_temporal_filter() 252 const int weight = (int)(exp(-scaled_error) * TF_WEIGHT_SCALE); in highbd_apply_temporal_filter() 272 double scaled_error = in highbd_apply_temporal_filter() local 274 scaled_error = AOMMIN(scaled_error, 7); in highbd_apply_temporal_filter() 276 approx_exp((float)-scaled_error) * TF_WEIGHT_SCALE; in highbd_apply_temporal_filter()
|
/external/libaom/av1/encoder/x86/ |
D | temporal_filter_sse2.c | 191 double scaled_error = combined_error * d_factor_decayed[subblock_idx]; in apply_temporal_filter() local 192 scaled_error = AOMMIN(scaled_error, 7); in apply_temporal_filter() 193 const int weight = (int)(exp(-scaled_error) * TF_WEIGHT_SCALE); in apply_temporal_filter() 211 double scaled_error = combined_error * d_factor_decayed[subblock_idx]; in apply_temporal_filter() local 212 scaled_error = AOMMIN(scaled_error, 7); in apply_temporal_filter() 214 approx_exp((float)-scaled_error) * TF_WEIGHT_SCALE; in apply_temporal_filter()
|
D | highbd_temporal_filter_sse2.c | 206 double scaled_error = combined_error * d_factor_decayed[subblock_idx]; in highbd_apply_temporal_filter() local 207 scaled_error = AOMMIN(scaled_error, 7); in highbd_apply_temporal_filter() 208 const int weight = (int)(exp(-scaled_error) * TF_WEIGHT_SCALE); in highbd_apply_temporal_filter() 230 double scaled_error = combined_error * d_factor_decayed[subblock_idx]; in highbd_apply_temporal_filter() local 231 scaled_error = AOMMIN(scaled_error, 7); in highbd_apply_temporal_filter() 233 approx_exp((float)-scaled_error) * TF_WEIGHT_SCALE; in highbd_apply_temporal_filter()
|
D | highbd_temporal_filter_avx2.c | 331 double scaled_error = combined_error * d_factor_decayed[subblock_idx]; in highbd_apply_temporal_filter() local 332 scaled_error = AOMMIN(scaled_error, 7); in highbd_apply_temporal_filter() 333 const int weight = (int)(exp(-scaled_error) * TF_WEIGHT_SCALE); in highbd_apply_temporal_filter() 355 double scaled_error = combined_error * d_factor_decayed[subblock_idx]; in highbd_apply_temporal_filter() local 356 scaled_error = AOMMIN(scaled_error, 7); in highbd_apply_temporal_filter() 358 approx_exp((float)-scaled_error) * TF_WEIGHT_SCALE; in highbd_apply_temporal_filter()
|
D | temporal_filter_avx2.c | 430 double scaled_error = combined_error * d_factor_decayed[subblock_idx]; in apply_temporal_filter() local 431 scaled_error = AOMMIN(scaled_error, 7); in apply_temporal_filter() 432 const int weight = (int)(exp(-scaled_error) * TF_WEIGHT_SCALE); in apply_temporal_filter()
|
/external/libaom/av1/encoder/ |
D | temporal_filter.c | 766 double scaled_error = in av1_apply_temporal_filter_c() local 768 scaled_error = AOMMIN(scaled_error, 7); in av1_apply_temporal_filter_c() 771 weight = (int)(exp(-scaled_error) * TF_WEIGHT_SCALE); in av1_apply_temporal_filter_c() 774 approx_exp((float)-scaled_error) * TF_WEIGHT_SCALE; in av1_apply_temporal_filter_c()
|