Home
last modified time | relevance | path

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

/external/libaom/libaom/av1/encoder/
Dencoder.c4968 static int get_regulated_q_overshoot(AV1_COMP *const cpi, int q_low, int q_high, in get_regulated_q_overshoot() argument
4977 AOMMAX(q_high, top_index), cm->width, cm->height); in get_regulated_q_overshoot()
4984 AOMMAX(q_high, top_index), cm->width, cm->height); in get_regulated_q_overshoot()
4990 static int get_regulated_q_undershoot(AV1_COMP *const cpi, int q_high, in get_regulated_q_undershoot() argument
5000 while (q_regulated > q_high && retries < 10) { in get_regulated_q_undershoot()
5015 int *const q_high, const int top_index, const int bottom_index, in recode_loop_update_q() argument
5035 *q_high = AOMMAX(*q, *q_high); in recode_loop_update_q()
5076 *q_high = AOMMAX(*q - 1, *q_low); in recode_loop_update_q()
5080 *q = AOMMIN(*q, (*q_high + *q_low) >> 1); in recode_loop_update_q()
5085 *q_low = AOMMIN(*q + 1, *q_high); in recode_loop_update_q()
[all …]
/external/libvpx/libvpx/vp8/encoder/
Donyx_if.c3223 int q_high; in encode_frame_to_data_rate() local
3777 q_high = cpi->active_worst_quality; in encode_frame_to_data_rate()
4004 q_high = cpi->active_worst_quality; in encode_frame_to_data_rate()
4057 q_high = (Q > q_low) ? (Q - 1) : q_low; in encode_frame_to_data_rate()
4060 Q = (q_high + q_low) >> 1; in encode_frame_to_data_rate()
4065 q_low = (Q < q_high) ? (Q + 1) : q_high; in encode_frame_to_data_rate()
4068 Q = (q_high + q_low + 1) >> 1; in encode_frame_to_data_rate()
4072 if (Q > q_high) { in encode_frame_to_data_rate()
4073 Q = q_high; in encode_frame_to_data_rate()
4097 q_low = (Q < q_high) ? (Q + 1) : q_high; in encode_frame_to_data_rate()
[all …]
/external/libvpx/libvpx/vp9/encoder/
Dvp9_encoder.c4198 int q = 0, q_low = 0, q_high = 0; local
4245 q_high = top_index;
4376 q_high = q > q_low ? q - 1 : q_low;
4380 q = VPXMIN(q, (q_high + q_low) >> 1);
4385 q_low = q < q_high ? q + 1 : q_high;
4389 q = VPXMIN(q, (q_high + q_low + 1) >> 1);
4393 q = clamp(q, q_low, q_high);
4398 VPXMAX(q_high, top_index), bottom_index)) {
4425 if ((q == q_high) &&
4433 q_val_high = vp9_convert_qindex_to_q(q_high, cm->bit_depth);
[all …]