Lines Matching refs:q_
147 m->q_[i] = m->q_[1]; in ExpandMatrix()
152 m->iq_[j] = (1 << QFIX) / m->q_[j]; in ExpandMatrix()
155 m->zthresh_[j] = ((256 /*+ kCoeffThresh[j]*/ - bias) * m->q_[j] + 127) >> 8; in ExpandMatrix()
156 m->sharpen_[j] = (kFreqSharpening[j] * m->q_[j]) >> 11; in ExpandMatrix()
157 sum += m->q_[j]; in ExpandMatrix()
172 m->y1_.q_[0] = kDcTable[clip(q + enc->dq_y1_dc_, 0, 127)]; in SetupMatrices()
173 m->y1_.q_[1] = kAcTable[clip(q, 0, 127)]; in SetupMatrices()
175 m->y2_.q_[0] = kDcTable[ clip(q + enc->dq_y2_dc_, 0, 127)] * 2; in SetupMatrices()
176 m->y2_.q_[1] = kAcTable2[clip(q + enc->dq_y2_ac_, 0, 127)]; in SetupMatrices()
178 m->uv_.q_[0] = kDcTable[clip(q + enc->dq_uv_dc_, 0, 117)]; in SetupMatrices()
179 m->uv_.q_[1] = kAcTable[clip(q + enc->dq_uv_ac_, 0, 127)]; in SetupMatrices()
505 const int thresh = mtx->q_[1] * mtx->q_[1] / 4; in TrellisQuantizeBlock()
536 const int Q = mtx->q_[j]; in TrellisQuantizeBlock()
634 in[j] = out[n] * mtx->q_[j]; in TrellisQuantizeBlock()