Home | History | Annotate | Download | only in encoder

Lines Matching full:q_high

3339     int q_high;
3739 q_high = cpi->active_worst_quality;
3935 q_high = cpi->active_worst_quality;
3985 // Lower q_high
3986 q_high = (Q > q_low) ? (Q - 1) : q_low;
3989 Q = (q_high + q_low) >> 1;
3995 q_low = (Q < q_high) ? (Q + 1) : q_high;
3998 Q = (q_high + q_low + 1) >> 1;
4002 if (Q > q_high)
4003 Q = q_high;
4025 q_low = (Q < q_high) ? (Q + 1) : q_high; // Raise Qlow as to at least the current value
4037 Q = (q_high + q_low + 1) / 2;
4070 q_high = (Q > q_low) ? (Q - 1) : q_low; // Lower q_high if not using over quant
4080 Q = (q_high + q_low) / 2;
4106 while (((Q > q_high) || (cpi->zbin_over_quant > zbin_oq_high)) && (Retries < 10))
4118 if (Q > q_high)
4119 Q = q_high;