Searched refs:q_high (Results 1 – 2 of 2) sorted by relevance
3354 int q = 0, q_low = 0, q_high = 0; local3377 q_high = top_index;3474 q_high = q > q_low ? q - 1 : q_low;3478 q = VPXMIN(q, (q_high + q_low) >> 1);3483 q_low = q < q_high ? q + 1 : q_high;3487 q = VPXMIN(q, (q_high + q_low + 1) >> 1);3491 q = clamp(q, q_low, q_high);3496 q, VPXMAX(q_high, top_index), bottom_index)) {3523 q_high = rc->worst_quality;3526 q_low = q < q_high ? q + 1 : q_high;[all …]
3584 int q_high; in encode_frame_to_data_rate() local4165 q_high = cpi->active_worst_quality; in encode_frame_to_data_rate()4417 q_high = cpi->active_worst_quality; in encode_frame_to_data_rate()4470 q_high = (Q > q_low) ? (Q - 1) : q_low; in encode_frame_to_data_rate()4473 Q = (q_high + q_low) >> 1; in encode_frame_to_data_rate()4479 q_low = (Q < q_high) ? (Q + 1) : q_high; in encode_frame_to_data_rate()4482 Q = (q_high + q_low + 1) >> 1; in encode_frame_to_data_rate()4486 if (Q > q_high) in encode_frame_to_data_rate()4487 Q = q_high; in encode_frame_to_data_rate()4512 q_low = (Q < q_high) ? (Q + 1) : q_high; in encode_frame_to_data_rate()[all …]