Home
last modified time | relevance | path

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

/external/libvpx/vp8/encoder/
Donyx_if.c3453 int q_high; in encode_frame_to_data_rate() local
3788 q_high = cpi->worst_quality; in encode_frame_to_data_rate()
3972 q_high = cpi->worst_quality; in encode_frame_to_data_rate()
4034 … q_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()
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()
4104 … while (((Q > q_high) || (cpi->zbin_over_quant > zbin_oq_high)) && (Retries < 10)) in encode_frame_to_data_rate()
4116 if (Q > q_high) in encode_frame_to_data_rate()
4117 Q = q_high; in encode_frame_to_data_rate()