Searched refs:q_low (Results 1 – 3 of 3) sorted by relevance
/external/libaom/libaom/av1/encoder/ |
D | encoder.c | 4183 static int get_regulated_q_overshoot(AV1_COMP *const cpi, int q_low, int q_high, in get_regulated_q_overshoot() argument 4195 while (q_regulated < q_low && retries < 10) { in get_regulated_q_overshoot() 4229 int *const q, int *const q_low, in recode_loop_update_q() argument 4268 *q_high = *q > *q_low ? *q - 1 : *q_low; in recode_loop_update_q() 4272 *q = AOMMIN(*q, (*q_high + *q_low) >> 1); in recode_loop_update_q() 4277 *q_low = *q < *q_high ? *q + 1 : *q_high; in recode_loop_update_q() 4281 *q = AOMMIN(*q, (*q_high + *q_low + 1) >> 1); in recode_loop_update_q() 4285 *q = clamp(*q, *q_low, *q_high); in recode_loop_update_q() 4304 *q_low = *q < *q_high ? *q + 1 : *q_high; in recode_loop_update_q() 4310 *q = (*q_high + *q_low + 1) / 2; in recode_loop_update_q() [all …]
|
/external/libvpx/libvpx/vp8/encoder/ |
D | onyx_if.c | 3218 int q_low; in encode_frame_to_data_rate() local 3770 q_low = cpi->active_best_quality; in encode_frame_to_data_rate() 3992 q_low = cpi->active_best_quality; in encode_frame_to_data_rate() 4046 q_high = (Q > q_low) ? (Q - 1) : q_low; in encode_frame_to_data_rate() 4049 Q = (q_high + q_low) >> 1; in encode_frame_to_data_rate() 4054 q_low = (Q < q_high) ? (Q + 1) : q_high; in encode_frame_to_data_rate() 4057 Q = (q_high + q_low + 1) >> 1; in encode_frame_to_data_rate() 4063 } else if (Q < q_low) { in encode_frame_to_data_rate() 4064 Q = q_low; in encode_frame_to_data_rate() 4086 q_low = (Q < q_high) ? (Q + 1) : q_high; in encode_frame_to_data_rate() [all …]
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_encoder.c | 4006 int q = 0, q_low = 0, q_high = 0; local 4051 q_low = bottom_index; 4165 q_high = q > q_low ? q - 1 : q_low; 4169 q = VPXMIN(q, (q_high + q_low) >> 1); 4174 q_low = q < q_high ? q + 1 : q_high; 4178 q = VPXMIN(q, (q_high + q_low + 1) >> 1); 4182 q = clamp(q, q_low, q_high); 4232 q_low = VPXMIN(q + qstep, q_high); 4238 q = (q_high + q_low + 1) / 2; 4246 while (q < q_low && retries < 10) { [all …]
|