libcm is a C development framework with an emphasis on audio signal processing applications.
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

cmDspPgmKrChain.h 946B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. #ifndef cmDspPgmKrChain_h
  2. #define cmDspPgmKrChain_h
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. typedef struct
  7. {
  8. const cmChar_t* tlFn;
  9. const cmChar_t* tlPrefixPath;
  10. const cmChar_t* scFn;
  11. const cmChar_t* tksbFn;
  12. const cmChar_t* modFn;
  13. const cmChar_t* measFn;
  14. const cmChar_t* recordDir;
  15. const cmChar_t* midiDevice;
  16. const cmChar_t* midiOutPort;
  17. const cmChar_t* midiOutPort2;
  18. } krRsrc_t;
  19. cmDspRC_t krLoadRsrc(cmDspSysH_t h, cmErr_t* err, krRsrc_t* r);
  20. // connection information for 1 transform channel
  21. typedef struct
  22. {
  23. cmDspInst_t* achan;
  24. cmDspInst_t* kr0; // audio input
  25. cmDspInst_t* kr1;
  26. cmDspInst_t* cmp; // audio output
  27. cmDspInst_t* even_ctl;
  28. } cmDspTlXform_t;
  29. void _cmDspSys_TlXformChain(
  30. cmDspSysH_t h,
  31. cmDspTlXform_t* c,
  32. unsigned preGrpSymId,
  33. unsigned cmpPreGrpSymId,
  34. cmDspInst_t* modp,
  35. unsigned ach,
  36. unsigned mch );
  37. #ifdef __cplusplus
  38. }
  39. #endif
  40. #endif