libcm is a C development framework with an emphasis on audio signal processing applications.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

cmDspPgmKrChain.h 944B

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. } cmDspTlXform_t;
  28. void _cmDspSys_TlXformChain(
  29. cmDspSysH_t h,
  30. cmDspTlXform_t* c,
  31. unsigned preGrpSymId,
  32. unsigned cmpPreGrpSymId,
  33. cmDspInst_t* amp,
  34. cmDspInst_t* modp,
  35. unsigned ach,
  36. unsigned mch );
  37. #ifdef __cplusplus
  38. }
  39. #endif
  40. #endif