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.

cmDocMain.h 1017B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /*! \mainpage cm Manual
  2. To modify this page edit cmDocMain.h
  3. \section building Building
  4. \subsection debug_mode Debug/Release Compile Mode
  5. By default the project builds in debug mode. To build in release mode define NDEBUG
  6. on the compiler command line. The existence of NDEBUG is tested in cmGlobal.h and
  7. the value of the preprocessor variable #cmDEBUG_FL is set to 0 if NDEBUG was defined
  8. and 1 otherwise. Code which depends on the debug/release mode then tests the value of
  9. #cmDEBUG_FL.
  10. The cm library is a set of C routines for working audio signals.
  11. \section foundation Foundation
  12. \subsection mem Memory Management
  13. \subsection output Output and Error Reporting
  14. \subsection files File Management
  15. \subsection cfg Program Configuration and Data
  16. \subsection step1 Step 1: Opening the box
  17. */
  18. /*!
  19. \defgroup base Base
  20. @{
  21. @}
  22. \defgroup rt Real-time
  23. @{
  24. @}
  25. \defgroup audio Audio
  26. @{
  27. @}
  28. \defgroup dsp Signal Processing
  29. @{
  30. @}
  31. \defgroup gr Graphics
  32. @{
  33. @}
  34. */