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

/external/libvpx/libvpx/vp8/encoder/
H A Donyx_if.c3266 int q_low; local
3812 q_low = cpi->active_best_quality;
4033 q_low = cpi->active_best_quality;
4087 q_high = (Q > q_low) ? (Q - 1) : q_low;
4090 Q = (q_high + q_low) >> 1;
4094 /* Raise q_low */
4095 q_low = (Q < q_high) ? (Q + 1) : q_high;
4098 Q = (q_high + q_low + 1) >> 1;
4104 } else if (Q < q_low) {
[all...]
/external/libvpx/libvpx/vp9/encoder/
H A 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);
3834 // Raise q_low
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
[all...]

Completed in 63 milliseconds