Searched refs:q_high (Results 1 – 2 of 2) sorted by relevance
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);2395 q, MAX(q_high, top_index), bottom_index)) {2408 q_high = rc->worst_quality;2411 q_low = q < q_high ? q + 1 : q_high;2417 q = (q_high + q_low + 1) / 2;[all …]
3334 int q_high; in encode_frame_to_data_rate() local3837 q_high = cpi->active_worst_quality; in encode_frame_to_data_rate()4068 q_high = cpi->active_worst_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()4137 if (Q > q_high) in encode_frame_to_data_rate()4138 Q = q_high; in encode_frame_to_data_rate()4163 q_low = (Q < q_high) ? (Q + 1) : q_high; in encode_frame_to_data_rate()[all …]