Searched refs:correction_factor (Results 1 – 8 of 8) sorted by relevance
/external/libvpx/libvpx/vp8/encoder/ |
D | ratectrl.c | 280 double correction_factor) { in estimate_bits_at_q() argument 281 int Bpm = (int)(.5 + correction_factor * vp8_bits_per_mb[frame_kind][Q]); in estimate_bits_at_q() 1029 int correction_factor = 100; in vp8_update_rate_correction_factors() local 1078 correction_factor = in vp8_update_rate_correction_factors() 1092 if (correction_factor > 102) { in vp8_update_rate_correction_factors() 1094 correction_factor = in vp8_update_rate_correction_factors() 1095 (int)(100.5 + ((correction_factor - 100) * adjustment_limit)); in vp8_update_rate_correction_factors() 1097 ((rate_correction_factor * correction_factor) / 100); in vp8_update_rate_correction_factors() 1103 } else if (correction_factor < 99) { in vp8_update_rate_correction_factors() 1105 correction_factor = in vp8_update_rate_correction_factors() [all …]
|
D | firstpass.c | 898 double correction_factor; in calc_correction_factor() local 908 correction_factor = pow(error_term, power_term); in calc_correction_factor() 911 correction_factor = (correction_factor < 0.05) in calc_correction_factor() 913 : (correction_factor > 5.0) ? 5.0 : correction_factor; in calc_correction_factor() 915 return correction_factor; in calc_correction_factor()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_aq_cyclicrefresh.h | 84 double correction_factor); 89 double correction_factor);
|
D | vp9_aq_cyclicrefresh.c | 94 double correction_factor) { in vp9_cyclic_refresh_estimate_bits_at_q() argument 108 correction_factor, cm->bit_depth) + in vp9_cyclic_refresh_estimate_bits_at_q() 112 mbs, correction_factor, cm->bit_depth) + in vp9_cyclic_refresh_estimate_bits_at_q() 116 mbs, correction_factor, cm->bit_depth)); in vp9_cyclic_refresh_estimate_bits_at_q() 126 double correction_factor) { in vp9_cyclic_refresh_rc_bits_per_mb() argument 138 correction_factor, cm->bit_depth) + in vp9_cyclic_refresh_rc_bits_per_mb() 141 correction_factor, cm->bit_depth)); in vp9_cyclic_refresh_rc_bits_per_mb()
|
D | vp9_ratectrl.c | 189 double correction_factor, vpx_bit_depth_t bit_depth) { in vp9_rc_bits_per_mb() argument 193 assert(correction_factor <= MAX_BPB_FACTOR && in vp9_rc_bits_per_mb() 194 correction_factor >= MIN_BPB_FACTOR); in vp9_rc_bits_per_mb() 198 return (int)(enumerator * correction_factor / q); in vp9_rc_bits_per_mb() 202 double correction_factor, in vp9_estimate_bits_at_q() argument 205 (int)(vp9_rc_bits_per_mb(frame_type, q, correction_factor, bit_depth)); in vp9_estimate_bits_at_q() 478 int correction_factor = 100; in vp9_rc_update_rate_correction_factors() local 503 correction_factor = (int)((100 * (int64_t)cpi->rc.projected_frame_size) / in vp9_rc_update_rate_correction_factors() 509 0.25 + 0.5 * VPXMIN(1, fabs(log10(0.01 * correction_factor))); in vp9_rc_update_rate_correction_factors() 514 if (correction_factor > 110) in vp9_rc_update_rate_correction_factors() [all …]
|
D | vp9_ratectrl.h | 188 double correction_factor, vpx_bit_depth_t bit_depth); 260 double correction_factor, vpx_bit_depth_t bit_depth);
|
/external/tensorflow/tensorflow/contrib/layers/python/layers/ |
D | layers_test.py | 1772 correction_factor = sample_size / (sample_size - 1) 1773 expected_var *= correction_factor 1774 return expected_var, correction_factor 2121 expected_var, correction_factor = self._addBesselsCorrection( 2158 moving_variance_corrected = moving_variance / correction_factor 2240 expected_var, correction_factor = self._addBesselsCorrection( 2283 moving_variance_corrected = moving_variance / correction_factor 2325 expected_var, correction_factor = self._addBesselsCorrection( 2365 moving_variance_corrected = moving_variance / correction_factor 2472 expected_var, correction_factor = self._addBesselsCorrection( [all …]
|
/external/tensorflow/tensorflow/contrib/slim/python/slim/ |
D | learning_test.py | 270 correction_factor = sample_size / (sample_size - 1) 271 expected_var *= correction_factor
|