Home
last modified time | relevance | path

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

/external/libvpx/libvpx/vp8/encoder/
Donyx_if.c3583 int q_low; in encode_frame_to_data_rate() local
4164 q_low = cpi->active_best_quality; in encode_frame_to_data_rate()
4416 q_low = cpi->active_best_quality; in encode_frame_to_data_rate()
4470 q_high = (Q > q_low) ? (Q - 1) : q_low; in encode_frame_to_data_rate()
4473 Q = (q_high + q_low) >> 1; in encode_frame_to_data_rate()
4479 q_low = (Q < q_high) ? (Q + 1) : q_high; in encode_frame_to_data_rate()
4482 Q = (q_high + q_low + 1) >> 1; in encode_frame_to_data_rate()
4488 else if (Q < q_low) in encode_frame_to_data_rate()
4489 Q = q_low; in encode_frame_to_data_rate()
4512 q_low = (Q < q_high) ? (Q + 1) : q_high; in encode_frame_to_data_rate()
[all …]
/external/libvpx/libvpx/vp9/encoder/
Dvp9_encoder.c3354 int q = 0, q_low = 0, q_high = 0; local
3376 q_low = bottom_index;
3474 q_high = q > q_low ? q - 1 : q_low;
3478 q = VPXMIN(q, (q_high + q_low) >> 1);
3483 q_low = q < q_high ? q + 1 : q_high;
3487 q = VPXMIN(q, (q_high + q_low + 1) >> 1);
3491 q = clamp(q, q_low, q_high);
3526 q_low = q < q_high ? q + 1 : q_high;
3532 q = (q_high + q_low + 1) / 2;
3540 while (q < q_low && retries < 10) {
[all …]