• Home
  • Raw
  • Download

Lines Matching refs:maxPolyphony

286     pVoiceMgr->maxPolyphony = (EAS_U16) MAX_SYNTH_VOICES;  in VMInitialize()
391 pSynth->poolAlloc[0] = (EAS_U8) pEASData->pVoiceMgr->maxPolyphony; in VMInitMIDI()
471 if (pSynth->maxPolyphony < pVoiceMgr->maxPolyphony) in VMReset()
472 pSynth->poolAlloc[0] = (EAS_U8) pVoiceMgr->maxPolyphony; in VMReset()
474 pSynth->poolAlloc[0] = (EAS_U8) pSynth->maxPolyphony; in VMReset()
712 EAS_INT maxPolyphony; in VMMIPUpdateChannelMuting() local
722 if (pSynth->maxPolyphony) in VMMIPUpdateChannelMuting()
723 maxPolyphony = pSynth->maxPolyphony; in VMMIPUpdateChannelMuting()
725 maxPolyphony = pVoiceMgr->maxPolyphony; in VMMIPUpdateChannelMuting()
732 if ((pSynth->channels[i].mip != 0) && (pSynth->channels[i].mip <= maxPolyphony)) in VMMIPUpdateChannelMuting()
1666 if ((pSynth->maxPolyphony == 0) || (pVoiceMgr->maxPolyphony < pSynth->maxPolyphony)) in VMStartVoice()
1667 maxSynthPoly = pVoiceMgr->maxPolyphony; in VMStartVoice()
1669 maxSynthPoly = pSynth->maxPolyphony; in VMStartVoice()
1672 if ((pVoiceMgr->activeVoices < pVoiceMgr->maxPolyphony) && in VMStartVoice()
3069 pVoiceMgr->maxPolyphony = pVoiceMgr->maxPolyphonyPrimary + pVoiceMgr->maxPolyphonySecondary; in VMSetSynthPolyphony()
3081 if (pVoiceMgr->maxPolyphony == polyphonyCount) in VMSetSynthPolyphony()
3084 pVoiceMgr->maxPolyphony = (EAS_U16) polyphonyCount; in VMSetSynthPolyphony()
3214 *pPolyphonyCount = pVoiceMgr->maxPolyphony; in VMGetSynthPolyphony()
3250 pSynth->maxPolyphony = 0; in VMSetPolyphony()
3255 pSynth->maxPolyphony = (EAS_U16) polyphonyCount; in VMSetPolyphony()
3258 if (polyphonyCount > pVoiceMgr->maxPolyphony) in VMSetPolyphony()
3259 polyphonyCount = pVoiceMgr->maxPolyphony; in VMSetPolyphony()
3368 *pPolyphonyCount = (EAS_U16) pSynth->maxPolyphony; in VMGetPolyphony()