Searched refs:q_high (Results 1 – 3 of 3) sorted by relevance
/external/libaom/libaom/av1/encoder/ |
D | encoder.c | 4183 static int get_regulated_q_overshoot(AV1_COMP *const cpi, int q_low, int q_high, in get_regulated_q_overshoot() argument 4192 AOMMAX(q_high, top_index), cm->width, cm->height); in get_regulated_q_overshoot() 4199 AOMMAX(q_high, top_index), cm->width, cm->height); in get_regulated_q_overshoot() 4205 static int get_regulated_q_undershoot(AV1_COMP *const cpi, int q_high, in get_regulated_q_undershoot() argument 4215 while (q_regulated > q_high && retries < 10) { in get_regulated_q_undershoot() 4230 int *const q_high, const int top_index, in recode_loop_update_q() argument 4268 *q_high = *q > *q_low ? *q - 1 : *q_low; in recode_loop_update_q() 4272 *q = AOMMIN(*q, (*q_high + *q_low) >> 1); in recode_loop_update_q() 4277 *q_low = *q < *q_high ? *q + 1 : *q_high; in recode_loop_update_q() 4281 *q = AOMMIN(*q, (*q_high + *q_low + 1) >> 1); in recode_loop_update_q() [all …]
|
/external/libvpx/libvpx/vp8/encoder/ |
D | onyx_if.c | 3219 int q_high; in encode_frame_to_data_rate() local 3771 q_high = cpi->active_worst_quality; in encode_frame_to_data_rate() 3993 q_high = cpi->active_worst_quality; in encode_frame_to_data_rate() 4046 q_high = (Q > q_low) ? (Q - 1) : q_low; in encode_frame_to_data_rate() 4049 Q = (q_high + q_low) >> 1; in encode_frame_to_data_rate() 4054 q_low = (Q < q_high) ? (Q + 1) : q_high; in encode_frame_to_data_rate() 4057 Q = (q_high + q_low + 1) >> 1; in encode_frame_to_data_rate() 4061 if (Q > q_high) { in encode_frame_to_data_rate() 4062 Q = q_high; in encode_frame_to_data_rate() 4086 q_low = (Q < q_high) ? (Q + 1) : q_high; in encode_frame_to_data_rate() [all …]
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_encoder.c | 4006 int q = 0, q_low = 0, q_high = 0; local 4052 q_high = top_index; 4165 q_high = q > q_low ? q - 1 : q_low; 4169 q = VPXMIN(q, (q_high + q_low) >> 1); 4174 q_low = q < q_high ? q + 1 : q_high; 4178 q = VPXMIN(q, (q_high + q_low + 1) >> 1); 4182 q = clamp(q, q_low, q_high); 4187 VPXMAX(q_high, top_index), bottom_index)) { 4214 if ((q == q_high) && 4222 q_val_high = vp9_convert_qindex_to_q(q_high, cm->bit_depth); [all …]
|