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.

cmAudDspLocal.h 640B

1234567891011121314151617181920212223242526272829303132333435363738
  1. #ifndef cmAudDspLocal_h
  2. #define cmAudDspLocal_h
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. enum
  7. {
  8. kOkAdlRC = cmOkRC,
  9. kAudDspIfFailAdlRC,
  10. kAudDspFailAdlRC,
  11. kFileSysFailAdlRC,
  12. kJsonFailAdlRC
  13. };
  14. typedef cmRC_t cmAdlRC_t;
  15. typedef cmHandle_t cmAdlH_t;
  16. extern cmAdlH_t cmAdlNullHandle;
  17. cmAdlRC_t cmAudDspLocalAllocate(
  18. cmCtx_t* ctx,
  19. cmAdlH_t* hp,
  20. const cmAdIfDispatch_t* recd );
  21. cmAdlRC_t cmAudDspLocalFree( cmAdlH_t* hp );
  22. bool cmAudDspLocalIsValid( cmAdlH_t h );
  23. cmAiH_t cmAudDspLocalIF_Handle( cmAdlH_t h );
  24. #ifdef __cplusplus
  25. }
  26. #endif
  27. #endif