Searched refs:q_high (Results 1 – 2 of 2) sorted by relevance
1734 int q_low = bottom_index, q_high = top_index; in encode_with_recode_loop() local1806 q_high = q > q_low ? q - 1 : q_low; in encode_with_recode_loop()1810 q = MIN(q, (q_high + q_low) >> 1); in encode_with_recode_loop()1815 q_low = q < q_high ? q + 1 : q_high; in encode_with_recode_loop()1819 q = MIN(q, (q_high + q_low + 1) >> 1); in encode_with_recode_loop()1823 q = clamp(q, q_low, q_high); in encode_with_recode_loop()1828 q, MAX(q_high, top_index), bottom_index)) { in encode_with_recode_loop()1841 q_high = rc->worst_quality; in encode_with_recode_loop()1844 q_low = q < q_high ? q + 1 : q_high; in encode_with_recode_loop()1850 q = (q_high + q_low + 1) / 2; in encode_with_recode_loop()[all …]
3373 int q_high; in encode_frame_to_data_rate() local3879 q_high = cpi->active_worst_quality; in encode_frame_to_data_rate()4113 q_high = cpi->active_worst_quality; in encode_frame_to_data_rate()4166 q_high = (Q > q_low) ? (Q - 1) : q_low; in encode_frame_to_data_rate()4169 Q = (q_high + q_low) >> 1; in encode_frame_to_data_rate()4175 q_low = (Q < q_high) ? (Q + 1) : q_high; in encode_frame_to_data_rate()4178 Q = (q_high + q_low + 1) >> 1; in encode_frame_to_data_rate()4182 if (Q > q_high) in encode_frame_to_data_rate()4183 Q = q_high; in encode_frame_to_data_rate()4208 q_low = (Q < q_high) ? (Q + 1) : q_high; in encode_frame_to_data_rate()[all …]