Lines Matching defs:program

1812             /* last region in program? */
1837 /* last region in program? */
2351 program change, bank select, channel volume CC7, pan CC10
2570 * Look up an individual program in sound library. This function
2571 * searches the bank list for a program, then the individual program
2608 /* search for program */
2626 * Look up an individual program in sound library. This function
2627 * searches the bank list for a program, then the individual program
2648 /* search for program */
2666 * Change the instrument (program) for the given channel.
2668 * Depending on the program number, and the bank selected for this channel, the
2669 * program may be in ROM, RAM (from SMAF or CMX related RAM wavetable), or
2687 void VMProgramChange (S_VOICE_MGR *pVoiceMgr, S_SYNTH *pSynth, EAS_U8 channel, EAS_U8 program)
2694 { /* dpp: EAS_ReportEx(_EAS_SEVERITY_DETAIL, "VMProgramChange: vSynthNum=%d, channel=%d, program=%d\n", pSynth->vSynthNum, channel, program); */ }
2722 prgChg.program = program;
2731 /* first check for DLS program that may overlay the internal instrument */
2732 if (VMFindDLSProgram(pSynth->pDLS, bank, program, &regionIndex) != EAS_SUCCESS)
2739 if (VMFindProgram(pSynth->pEAS, bank, program, &regionIndex) != EAS_SUCCESS)
2748 if (VMFindProgram(pSynth->pEAS, bank, program, &regionIndex) != EAS_SUCCESS)
2750 /* switch to program 0 in the default bank */
2753 { /* dpp: EAS_ReportEx(_EAS_SEVERITY_WARNING, "VMProgramChange: No program @ %03d:%03d:%03d\n",
2754 (bank >> 8) & 0x7f, bank & 0x7f, program); */ }
2759 /* we have our new program change for this channel */
2760 pChannel->programNum = program;