Lines Matching refs:topMdct
204 int band, bottomMdct, topMdct, bin, useLP; in sbrDecoder_drcApplySlot() local
319 topMdct = (bandTop[band] + 1) << 2; in sbrDecoder_drcApplySlot()
325 topQmf = fMultIfloor((FIXP_DBL)0x4444445, topMdct); in sbrDecoder_drcApplySlot()
327 topMdct = 30 * topQmf; in sbrDecoder_drcApplySlot()
330 topMdct &= ~0x1f; in sbrDecoder_drcApplySlot()
333 topQmf = topMdct >> 5; in sbrDecoder_drcApplySlot()
381 if (topMdct < 0) { in sbrDecoder_drcApplySlot()
382 topMdct = 0; in sbrDecoder_drcApplySlot()
384 if (topMdct >= frameSize) { in sbrDecoder_drcApplySlot()
385 topMdct = frameSize - 1; in sbrDecoder_drcApplySlot()
390 topMdct = fMultIfloor((FIXP_DBL)0x78000000, in sbrDecoder_drcApplySlot()
391 fMultIfloor((FIXP_DBL)0x22222223, topMdct) << 2); in sbrDecoder_drcApplySlot()
395 stopWinIdx = fMultIceil(invFrameSizeDiv8 - (FIXP_DBL)1, topMdct) + 1; in sbrDecoder_drcApplySlot()
398 topMdct &= ~0x03; in sbrDecoder_drcApplySlot()
401 stopWinIdx = fMultIceil(invFrameSizeDiv8, topMdct) + 1; in sbrDecoder_drcApplySlot()
415 ((topMdct % (numQmfSubSamples << 2)) << 5)); in sbrDecoder_drcApplySlot()
427 (FIXP_DBL)(topMdct << (DFRACT_BITS - 12))); in sbrDecoder_drcApplySlot()
475 bottomMdct = topMdct; in sbrDecoder_drcApplySlot()