Searched refs:q_low (Results 1 – 2 of 2) sorted by relevance
3333 int q_low; in encode_frame_to_data_rate() local3836 q_low = cpi->active_best_quality; in encode_frame_to_data_rate()4067 q_low = cpi->active_best_quality; in encode_frame_to_data_rate()4121 q_high = (Q > q_low) ? (Q - 1) : q_low; in encode_frame_to_data_rate()4124 Q = (q_high + q_low) >> 1; in encode_frame_to_data_rate()4130 q_low = (Q < q_high) ? (Q + 1) : q_high; in encode_frame_to_data_rate()4133 Q = (q_high + q_low + 1) >> 1; in encode_frame_to_data_rate()4139 else if (Q < q_low) in encode_frame_to_data_rate()4140 Q = q_low; in encode_frame_to_data_rate()4163 q_low = (Q < q_high) ? (Q + 1) : q_high; in encode_frame_to_data_rate()[all …]
2288 int q_low = bottom_index, q_high = top_index; local2373 q_high = q > q_low ? q - 1 : q_low;2377 q = MIN(q, (q_high + q_low) >> 1);2382 q_low = q < q_high ? q + 1 : q_high;2386 q = MIN(q, (q_high + q_low + 1) >> 1);2390 q = clamp(q, q_low, q_high);2411 q_low = q < q_high ? q + 1 : q_high;2417 q = (q_high + q_low + 1) / 2;2425 while (q < q_low && retries < 10) {2436 q_high = q > q_low ? q - 1 : q_low;[all …]