Lines Matching refs:maxShift
201 int col, int numQmfSubSamples, int maxShift) { in sbrDecoder_drcApplySlot() argument
360 if (hDrcData->prevFact_exp < maxShift) { in sbrDecoder_drcApplySlot()
361 drcFact1_mag >>= maxShift - hDrcData->prevFact_exp; in sbrDecoder_drcApplySlot()
363 if (fact_exp < maxShift) { in sbrDecoder_drcApplySlot()
364 drcFact2_mag >>= maxShift - fact_exp; in sbrDecoder_drcApplySlot()
476 if (fact_exp < maxShift) { in sbrDecoder_drcApplySlot()
477 drcFact_mag >>= maxShift - fact_exp; in sbrDecoder_drcApplySlot()
513 int maxShift = 0; in sbrDecoder_drcApply() local
524 if (hDrcData->prevFact_exp > maxShift) { in sbrDecoder_drcApply()
525 maxShift = hDrcData->prevFact_exp; in sbrDecoder_drcApply()
527 if (hDrcData->currFact_exp > maxShift) { in sbrDecoder_drcApply()
528 maxShift = hDrcData->currFact_exp; in sbrDecoder_drcApply()
530 if (hDrcData->nextFact_exp > maxShift) { in sbrDecoder_drcApply()
531 maxShift = hDrcData->nextFact_exp; in sbrDecoder_drcApply()
539 numQmfSubSamples, maxShift); in sbrDecoder_drcApply()
542 *scaleFactor += maxShift; in sbrDecoder_drcApply()