Home | History | Annotate | Download | only in lib_src

Lines Matching refs:step

84     pState->decoderL.step = 0;
85 pState->decoderR.step = 0;
132 /* if start of block, fetch new predictor and step index */
144 /* get step index for left channel - upper 8 bits are reserved */
148 { /* dpp: EAS_ReportEx(_EAS_SEVERITY_DETAIL, "Step: Was %d, now %d\n", pState->decoderL.step, sTemp); */ }
150 pState->decoderL.step = sTemp & 0xff;
159 /* get step index for right channel - upper 8 bits are reserved */
163 { /* dpp: EAS_ReportEx(_EAS_SEVERITY_DETAIL, "Step: Was %d, now %d\n", pState->decoderR.step, sTemp); */ }
165 pState->decoderR.step = sTemp & 0xff;
231 stepSize = imaStepSizeTable[pState->step];
233 /* delta = (abs(delta) + 0.5) * step / 4 */
262 /* compute new step size */
263 pState->step += imaIndexTable[nibble];
264 if (pState->step < 0)
265 pState->step = 0;
266 if (pState->step > 88)
267 pState->step = 88;
270 { /* dpp: EAS_ReportEx(_EAS_SEVERITY_DETAIL, "In=%u, Pred=%d, Step=%d\n", nibble, pState->acc, imaStepSizeTable[pState->step]); */ }