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.c3266 int q_low; in encode_frame_to_data_rate() local
3812 q_low = cpi->active_best_quality; in encode_frame_to_data_rate()
4033 q_low = cpi->active_best_quality; in encode_frame_to_data_rate()
4087 q_high = (Q > q_low) ? (Q - 1) : q_low; in encode_frame_to_data_rate()
4090 Q = (q_high + q_low) >> 1; in encode_frame_to_data_rate()
4095 q_low = (Q < q_high) ? (Q + 1) : q_high; in encode_frame_to_data_rate()
4098 Q = (q_high + q_low + 1) >> 1; in encode_frame_to_data_rate()
4104 } else if (Q < q_low) { in encode_frame_to_data_rate()
4105 Q = q_low; in encode_frame_to_data_rate()
4127 q_low = (Q < q_high) ? (Q + 1) : q_high; in encode_frame_to_data_rate()
[all …]
/external/libvpx/libvpx/vp9/encoder/
Dvp9_encoder.c3673 int q = 0, q_low = 0, q_high = 0; local
3714 q_low = bottom_index;
3826 q_high = q > q_low ? q - 1 : q_low;
3830 q = VPXMIN(q, (q_high + q_low) >> 1);
3835 q_low = q < q_high ? q + 1 : q_high;
3839 q = VPXMIN(q, (q_high + q_low + 1) >> 1);
3843 q = clamp(q, q_low, q_high);
3887 q_low = VPXMIN(q + qstep, q_high);
3894 q = (q_high + q_low + 1) / 2;
3902 while (q < q_low && retries < 10) {
[all …]