Home
last modified time | relevance | path

Searched refs:pDLS (Results 1 – 9 of 9) sorted by relevance

/dports/audio/drumstick/drumstick-2.5.0/library/rt-backends/eassynth/sonivox/lib_src/
H A Deas_mdls.c242 S_DLS *pDLS; member
696 if (dls.pDLS) { in DLSParser()
713 *ppDLS = dls.pDLS; in DLSParser()
715 DumpDLS(dls.pDLS); in DLSParser()
744 if (pDLS) in DLSCleanup()
746 if (pDLS->refCount) in DLSCleanup()
763 if (pDLS) in DLSAddRef()
764 pDLS->refCount++; in DLSAddRef()
856 if (!pDLSData->pDLS) in Parse_ptbl()
1532 if (pDLSData->pDLS) in Parse_ins()
[all …]
H A Deas_dlssynth.c59 pDLSArt = &pSynth->pDLS->pDLSArticulations[pWTVoice->artIndex]; in DLS_MuteVoice()
87 pDLSArt = &pSynth->pDLS->pDLSArticulations[pWTVoice->artIndex]; in DLS_ReleaseVoice()
118 pDLSArt = &pSynth->pDLS->pDLSArticulations[pWTVoice->artIndex]; in DLS_SustainPedal()
318 pDLSRegion = &pSynth->pDLS->pDLSRegions[regionIndex & REGION_INDEX_MASK]; in DLS_StartVoice()
320 pDLSArt = &pSynth->pDLS->pDLSArticulations[pWTVoice->artIndex]; in DLS_StartVoice()
348 …pWTVoice->phaseAccum = (EAS_U32) pSynth->pDLS->pDLSSamples + pSynth->pDLS->pDLSSampleOffsets[pDLSR… in DLS_StartVoice()
355 …pWTVoice->loopStart = pWTVoice->loopEnd = pWTVoice->phaseAccum + pSynth->pDLS->pDLSSampleLen[pDLSR… in DLS_StartVoice()
390 pDLSRegion = &pSynth->pDLS->pDLSRegions[pVoice->regionIndex & REGION_INDEX_MASK]; in DLS_UpdateVoice()
392 pDLSArt = &pSynth->pDLS->pDLSArticulations[pWTVoice->artIndex]; in DLS_UpdateVoice()
H A Deas_mdls.h283 …LSParser (EAS_HW_DATA_HANDLE hwInstData, EAS_FILE_HANDLE fileHandle, EAS_I32 offset, S_DLS **pDLS);
284 EAS_RESULT DLSCleanup (EAS_HW_DATA_HANDLE hwInstData, S_DLS *pDLS);
285 void DLSAddRef (S_DLS *pDLS);
H A Deas_xmf.c221 …(pEASData->hwInstData, pXMFData->fileHandle, pXMFData->dlsOffset, &pXMFData->pDLS)) != EAS_SUCCESS) in XMF_Prepare()
233 if (pXMFData->pDLS == NULL) in XMF_Prepare()
237 result = VMSetDLSLib(((S_SMF_DATA*) pXMFData->pSMFData)->pSynth, pXMFData->pDLS); in XMF_Prepare()
240 DLSAddRef(pXMFData->pDLS); in XMF_Prepare()
342 if (pXMFData->pDLS) in XMF_Close()
343 DLSCleanup(pEASData->hwInstData, pXMFData->pDLS); in XMF_Close()
H A Deas_voicemgt.c381 pSynth->pDLS = pEASData->pVoiceMgr->pGlobalDLS; in VMInitMIDI()
382 DLSAddRef(pSynth->pDLS); in VMInitMIDI()
2642 if (pDLS == NULL) in VMFindDLSProgram()
2649 for (i = 0, p = pDLS->pDLSPrograms; i < pDLS->numDLSPrograms; i++, p++) in VMFindDLSProgram()
2732 if (VMFindDLSProgram(pSynth->pDLS, bank, program, &regionIndex) != EAS_SUCCESS) in VMProgramChange()
3580 EAS_RESULT VMSetGlobalDLSLib (EAS_DATA_HANDLE pEASData, EAS_DLSLIB_HANDLE pDLS) in VMSetGlobalDLSLib() argument
3586 pEASData->pVoiceMgr->pGlobalDLS = pDLS; in VMSetGlobalDLSLib()
3606 EAS_RESULT VMSetDLSLib (S_SYNTH *pSynth, EAS_DLSLIB_HANDLE pDLS) in VMSetDLSLib() argument
3608 pSynth->pDLS = pDLS; in VMSetDLSLib()
3699 if (pSynth->pDLS != NULL) in VMMIDIShutdown()
[all …]
H A Deas_xmfdata.h52 S_DLS *pDLS; member
H A Deas_vm_protos.h856 EAS_RESULT VMSetGlobalDLSLib (EAS_DATA_HANDLE pEASData, EAS_DLSLIB_HANDLE pDLS);
857 EAS_RESULT VMSetDLSLib (S_SYNTH *pSynth, EAS_DLSLIB_HANDLE pDLS);
H A Deas_synth.h311 S_DLS *pDLS; member
H A Deas_public.c2455 EAS_DLSLIB_HANDLE pDLS; in EAS_LoadDLSCollection() local
2468 result = DLSParser(pEASData->hwInstData, fileHandle, 0, &pDLS); in EAS_LoadDLSCollection()
2476 … result = EAS_IntSetStrmParam(pEASData, pStream, PARSER_DATA_DLS_COLLECTION, (EAS_I32) pDLS); in EAS_LoadDLSCollection()
2480 result = VMSetGlobalDLSLib(pEASData, pDLS); in EAS_LoadDLSCollection()