Audio plugin host https://kx.studio/carla
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.

readme 3.4KB

11 years ago
11 years ago
11 years ago
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. RtAudio - a set of C++ classes that provide a common API for realtime audio input/output across Linux (native ALSA, JACK, PulseAudio and OSS), Macintosh OS X (CoreAudio and JACK), and Windows (DirectSound and ASIO) operating systems.
  2. By Gary P. Scavone, 2001-2013.
  3. This distribution of RtAudio contains the following:
  4. doc: RtAudio documentation (see doc/html/index.html)
  5. tests: example RtAudio programs
  6. include: header and source files necessary for ASIO, DS & OSS compilation
  7. tests/Windows: Visual C++ .net test program workspace and projects
  8. OVERVIEW:
  9. RtAudio is a set of C++ classes that provides a common API (Application Programming Interface) for realtime audio input/output across Linux (native ALSA, JACK, and OSS), Macintosh OS X, SGI, and Windows (DirectSound and ASIO) operating systems. RtAudio significantly simplifies the process of interacting with computer audio hardware. It was designed with the following objectives:
  10. - object-oriented C++ design
  11. - simple, common API across all supported platforms
  12. - only one source and two header files for easy inclusion in programming projects
  13. - allow simultaneous multi-api support
  14. - support dynamic connection of devices
  15. - provide extensive audio device parameter control
  16. - allow audio device capability probing
  17. - automatic internal conversion for data format, channel number compensation, (de)interleaving, and byte-swapping
  18. RtAudio incorporates the concept of audio streams, which represent audio output (playback) and/or input (recording). Available audio devices and their capabilities can be enumerated and then specified when opening a stream. Where applicable, multiple API support can be compiled and a particular API specified when creating an RtAudio instance. See the \ref apinotes section for information specific to each of the supported audio APIs.
  19. FURTHER READING:
  20. For complete documentation on RtAudio, see the doc directory of the distribution or surf to http://www.music.mcgill.ca/~gary/rtaudio/.
  21. LEGAL AND ETHICAL:
  22. The RtAudio license is similar to the MIT License.
  23. RtAudio: a set of realtime audio i/o C++ classes
  24. Copyright (c) 2001-2013 Gary P. Scavone
  25. Permission is hereby granted, free of charge, to any person
  26. obtaining a copy of this software and associated documentation files
  27. (the "Software"), to deal in the Software without restriction,
  28. including without limitation the rights to use, copy, modify, merge,
  29. publish, distribute, sublicense, and/or sell copies of the Software,
  30. and to permit persons to whom the Software is furnished to do so,
  31. subject to the following conditions:
  32. The above copyright notice and this permission notice shall be
  33. included in all copies or substantial portions of the Software.
  34. Any person wishing to distribute modifications to the Software is
  35. asked to send the modifications to the original developer so that
  36. they can be incorporated into the canonical version. This is,
  37. however, not a binding provision of this license.
  38. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  39. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  40. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  41. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
  42. ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
  43. CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  44. WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.