Searched refs:q_low (Results 1 – 2 of 2) sorted by relevance
3583 int q_low; in encode_frame_to_data_rate() local4164 q_low = cpi->active_best_quality; in encode_frame_to_data_rate()4416 q_low = cpi->active_best_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()4488 else if (Q < q_low) in encode_frame_to_data_rate()4489 Q = q_low; in encode_frame_to_data_rate()4512 q_low = (Q < q_high) ? (Q + 1) : q_high; in encode_frame_to_data_rate()[all …]
3354 int q = 0, q_low = 0, q_high = 0; local3376 q_low = bottom_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);3526 q_low = q < q_high ? q + 1 : q_high;3532 q = (q_high + q_low + 1) / 2;3540 while (q < q_low && retries < 10) {[all …]