Lines Matching refs:q_
143 m->q_[i] = m->q_[1]; in ExpandMatrix()
148 m->iq_[j] = (1 << QFIX) / m->q_[j]; in ExpandMatrix()
151 m->zthresh_[j] = ((256 /*+ kCoeffThresh[j]*/ - bias) * m->q_[j] + 127) >> 8; in ExpandMatrix()
152 m->sharpen_[j] = (kFreqSharpening[j] * m->q_[j]) >> 11; in ExpandMatrix()
153 sum += m->q_[j]; in ExpandMatrix()
168 m->y1_.q_[0] = kDcTable[clip(q + enc->dq_y1_dc_, 0, 127)]; in SetupMatrices()
169 m->y1_.q_[1] = kAcTable[clip(q, 0, 127)]; in SetupMatrices()
171 m->y2_.q_[0] = kDcTable[ clip(q + enc->dq_y2_dc_, 0, 127)] * 2; in SetupMatrices()
172 m->y2_.q_[1] = kAcTable2[clip(q + enc->dq_y2_ac_, 0, 127)]; in SetupMatrices()
174 m->uv_.q_[0] = kDcTable[clip(q + enc->dq_uv_dc_, 0, 117)]; in SetupMatrices()
175 m->uv_.q_[1] = kAcTable[clip(q + enc->dq_uv_ac_, 0, 127)]; in SetupMatrices()
437 const int thresh = mtx->q_[1] * mtx->q_[1] / 4; in TrellisQuantizeBlock()
468 const int Q = mtx->q_[j]; in TrellisQuantizeBlock()
566 in[j] = out[n] * mtx->q_[j]; in TrellisQuantizeBlock()