libcm is a C development framework with an emphasis on audio signal processing applications.
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

cmDspPgmKrChain.h 921B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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* modp,
  34. unsigned ach,
  35. unsigned mch );
  36. #ifdef __cplusplus
  37. }
  38. #endif
  39. #endif