diff --git a/INSTALL.md b/INSTALL.md index b197bc7..cd0d4c0 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -32,7 +32,7 @@ Several options can be passed to configure, including: --with-alsa = choose native ALSA API support (default, linux only) --with-oss = choose native OSS API support (unixes only) --with-jack = choose native JACK server API support (linux and macintosh OS-X) - --with-core = choose OS-X Core Audio API (macintosh OS-X only) + --with-core = choose OS-X CoreAudio API (macintosh OS-X only) --with-asio = choose ASIO API support (windows only) --with-ds = choose DirectSound API support (windows only) --with-wasapi = choose Windows Audio Session API support (windows only) diff --git a/doc/doxygen/usage.txt b/doc/doxygen/usage.txt index c441d1e..649960a 100644 --- a/doc/doxygen/usage.txt +++ b/doc/doxygen/usage.txt @@ -57,7 +57,7 @@ Several options can be supplied to the configure script to customize th
  • --with-alsa to choose native ALSA API support (default, linux only)
  • --with-oss to choose native OSS audio API support (linux only, no native OSS MIDI support)
  • --with-jack to choose native JACK API support (linux and Macintosh OS-X)
  • -
  • --with-core to choose Core Audio API support (Macintosh OS-X)
  • +
  • --with-core to choose CoreAudio API support (Macintosh OS-X)
  • --with-asio to choose ASIO Audio API support (Windows)
  • --with-ds to choose Windows Direct Sound Audio API support (Windows)
  • @@ -75,7 +75,7 @@ For those who wish to create their own system-specific Makefiles: diff --git a/include/RtAudio.h b/include/RtAudio.h index a9fa650..5e072cd 100644 --- a/include/RtAudio.h +++ b/include/RtAudio.h @@ -271,7 +271,7 @@ class RtAudio LINUX_PULSE, /*!< The Linux PulseAudio API. */ LINUX_OSS, /*!< The Linux Open Sound System API. */ UNIX_JACK, /*!< The Jack Low-Latency Audio Server API. */ - MACOSX_CORE, /*!< Macintosh OS-X Core Audio API. */ + MACOSX_CORE, /*!< Macintosh OS-X CoreAudio API. */ WINDOWS_WASAPI, /*!< The Microsoft WASAPI API. */ WINDOWS_ASIO, /*!< The Steinberg Audio Stream I/O API. */ WINDOWS_DS, /*!< The Microsoft Direct Sound API. */ diff --git a/projects/examples/audioprobe.cpp b/projects/examples/audioprobe.cpp index f7246fb..1ece884 100644 --- a/projects/examples/audioprobe.cpp +++ b/projects/examples/audioprobe.cpp @@ -15,7 +15,7 @@ int main() { // Create an api map. std::map apiMap; - apiMap[RtAudio::MACOSX_CORE] = "OS-X Core Audio"; + apiMap[RtAudio::MACOSX_CORE] = "OS-X CoreAudio"; apiMap[RtAudio::WINDOWS_ASIO] = "Windows ASIO"; apiMap[RtAudio::WINDOWS_DS] = "Windows Direct Sound"; apiMap[RtAudio::UNIX_JACK] = "Jack Client";