Home
last modified time | relevance | path

Searched refs:q_low (Results 1 – 1 of 1) sorted by relevance

/external/libvpx/vp8/encoder/
Donyx_if.c3452 int q_low; in encode_frame_to_data_rate() local
3787 q_low = cpi->best_quality; in encode_frame_to_data_rate()
3971 q_low = cpi->best_quality; in encode_frame_to_data_rate()
4034q_low = (Q < q_high) ? (Q + 1) : q_high; // Raise Qlow as to at least the current value in encode_frame_to_data_rate()
4046 Q = (q_high + q_low + 1) / 2; in encode_frame_to_data_rate()
4065 while (((Q < q_low) || (cpi->zbin_over_quant < zbin_oq_low)) && (Retries < 10)) in encode_frame_to_data_rate()
4078 q_high = (Q > q_low) ? (Q - 1) : q_low; // Lower q_high if not using over quant in encode_frame_to_data_rate()
4088 Q = (q_high + q_low) / 2; in encode_frame_to_data_rate()
4118 else if (Q < q_low) in encode_frame_to_data_rate()
4119 Q = q_low; in encode_frame_to_data_rate()