Lines Matching refs:q_low
3338 int q_low;
3738 q_low = cpi->active_best_quality;
3934 q_low = cpi->active_best_quality;
3986 q_high = (Q > q_low) ? (Q - 1) : q_low;
3989 Q = (q_high + q_low) >> 1;
3994 // Raise q_low
3995 q_low = (Q < q_high) ? (Q + 1) : q_high;
3998 Q = (q_high + q_low + 1) >> 1;
4004 else if (Q < q_low)
4005 Q = q_low;
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;
4056 while (((Q < q_low) || (cpi->zbin_over_quant < zbin_oq_low)) && (Retries < 10))
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;
4101 (Q < q_low) )
4103 q_low = Q;
4120 else if (Q < q_low)
4121 Q = q_low;