• Home
  • Raw
  • Download

Lines Matching refs:intFrame

532     S_WT_INT_FRAME intFrame;  in WT_UpdateVoice()  local
548 intFrame.prevGain = pVoice->gain; in WT_UpdateVoice()
560 WT_UpdateFilter(pWTVoice, &intFrame, pArt); in WT_UpdateVoice()
562 intFrame.frame.k = 0; in WT_UpdateVoice()
566 intFrame.frame.gainTarget = WT_UpdateGain(pVoice, pWTVoice, pArt, pChannel, pWTRegion->gain); in WT_UpdateVoice()
576 intFrame.frame.phaseIncrement = WT_UpdatePhaseInc(pWTVoice, pArt, pChannel, temp); in WT_UpdateVoice()
587 if (intFrame.frame.phaseIncrement > temp) { in WT_UpdateVoice()
588 ALOGW("%p phaseIncrement=%d", pWTVoice, (int)intFrame.frame.phaseIncrement); in WT_UpdateVoice()
589 intFrame.frame.phaseIncrement %= temp; in WT_UpdateVoice()
594 intFrame.pAudioBuffer = pVoiceMgr->voiceBuffer; in WT_UpdateVoice()
595 intFrame.pMixBuffer = pMixBuffer; in WT_UpdateVoice()
596 intFrame.numSamples = numSamples; in WT_UpdateVoice()
600 done = WT_CheckSampleEnd(pWTVoice, &intFrame, (EAS_BOOL) (voiceNum >= NUM_PRIMARY_VOICES)); in WT_UpdateVoice()
604 if (intFrame.numSamples < 0) intFrame.numSamples = 0; in WT_UpdateVoice()
606 if (intFrame.numSamples > BUFFER_SIZE_IN_MONO_SAMPLES) in WT_UpdateVoice()
607 intFrame.numSamples = BUFFER_SIZE_IN_MONO_SAMPLES; in WT_UpdateVoice()
613 WT_ProcessVoice(pWTVoice, &intFrame); in WT_UpdateVoice()
617 WTE_ProcessVoice(voiceNum - NUM_PRIMARY_VOICES, &intFrame.frame, pVoiceMgr->pFrameBuffer); in WT_UpdateVoice()
619 WT_ProcessVoice(pWTVoice, &intFrame); in WT_UpdateVoice()
633 pVoice->gain = (EAS_I16) intFrame.frame.gainTarget; in WT_UpdateVoice()