summaryrefslogtreecommitdiff
path: root/tests/audioprobe.cpp
diff options
context:
space:
mode:
authorStephen Sinclair <sinclair@music.mcgill.ca>2013-10-11 02:06:06 +0200
committerStephen Sinclair <sinclair@music.mcgill.ca>2013-10-11 02:06:06 +0200
commit948a7eda7a295de0ac6d677822cd702029705f7a (patch)
treeff7209dc976454025bdfe054f34e4a059979c9dd /tests/audioprobe.cpp
parentfa0759941de32b91fd328c7ec412d2dd3255aa1e (diff)
parentd6fd1442b2fe1bb366c5539354eeb841fc6943a1 (diff)
Merge 4.0.12 into releases
Diffstat (limited to 'tests/audioprobe.cpp')
-rw-r--r--tests/audioprobe.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/audioprobe.cpp b/tests/audioprobe.cpp
index f7246fb..a69437f 100644
--- a/tests/audioprobe.cpp
+++ b/tests/audioprobe.cpp
@@ -20,12 +20,15 @@ int main()
apiMap[RtAudio::WINDOWS_DS] = "Windows Direct Sound";
apiMap[RtAudio::UNIX_JACK] = "Jack Client";
apiMap[RtAudio::LINUX_ALSA] = "Linux ALSA";
+ apiMap[RtAudio::LINUX_PULSE] = "Linux PulseAudio";
apiMap[RtAudio::LINUX_OSS] = "Linux OSS";
apiMap[RtAudio::RTAUDIO_DUMMY] = "RtAudio Dummy";
std::vector< RtAudio::Api > apis;
RtAudio :: getCompiledApi( apis );
+ std::cout << "\nRtAudio Version " << RtAudio::getVersion() << std::endl;
+
std::cout << "\nCompiled APIs:\n";
for ( unsigned int i=0; i<apis.size(); i++ )
std::cout << " " << apiMap[ apis[i] ] << std::endl;