Various updates for pulseaudio API and default ALSA device enumeration (gs).
[rtaudio-cdist.git] / tests / audioprobe.cpp
1 /******************************************/
2 /*
3   audioprobe.cpp
4   by Gary P. Scavone, 2001
5
6   Probe audio system and prints device info.
7 */
8 /******************************************/
9
10 #include "RtAudio.h"
11 #include <iostream>
12 #include <map>
13
14 int main()
15 {
16   // Create an api map.
17   std::map<int, std::string> apiMap;
18   apiMap[RtAudio::MACOSX_CORE] = "OS-X Core Audio";
19   apiMap[RtAudio::WINDOWS_ASIO] = "Windows ASIO";
20   apiMap[RtAudio::WINDOWS_DS] = "Windows Direct Sound";
21   apiMap[RtAudio::UNIX_JACK] = "Jack Client";
22   apiMap[RtAudio::LINUX_ALSA] = "Linux ALSA";
23   apiMap[RtAudio::LINUX_PULSE] = "Linux PulseAudio";
24   apiMap[RtAudio::LINUX_OSS] = "Linux OSS";
25   apiMap[RtAudio::RTAUDIO_DUMMY] = "RtAudio Dummy";
26
27   std::vector< RtAudio::Api > apis;
28   RtAudio :: getCompiledApi( apis );
29
30   std::cout << "\nCompiled APIs:\n";
31   for ( unsigned int i=0; i<apis.size(); i++ )
32     std::cout << "  " << apiMap[ apis[i] ] << std::endl;
33
34   RtAudio audio;
35   RtAudio::DeviceInfo info;
36
37   std::cout << "\nCurrent API: " << apiMap[ audio.getCurrentApi() ] << std::endl;
38
39   unsigned int devices = audio.getDeviceCount();
40   std::cout << "\nFound " << devices << " device(s) ...\n";
41
42   for (unsigned int i=0; i<devices; i++) {
43     info = audio.getDeviceInfo(i);
44
45     std::cout << "\nDevice Name = " << info.name << '\n';
46     if ( info.probed == false )
47       std::cout << "Probe Status = UNsuccessful\n";
48     else {
49       std::cout << "Probe Status = Successful\n";
50       std::cout << "Output Channels = " << info.outputChannels << '\n';
51       std::cout << "Input Channels = " << info.inputChannels << '\n';
52       std::cout << "Duplex Channels = " << info.duplexChannels << '\n';
53       if ( info.isDefaultOutput ) std::cout << "This is the default output device.\n";
54       else std::cout << "This is NOT the default output device.\n";
55       if ( info.isDefaultInput ) std::cout << "This is the default input device.\n";
56       else std::cout << "This is NOT the default input device.\n";
57       if ( info.nativeFormats == 0 )
58         std::cout << "No natively supported data formats(?)!";
59       else {
60         std::cout << "Natively supported data formats:\n";
61         if ( info.nativeFormats & RTAUDIO_SINT8 )
62           std::cout << "  8-bit int\n";
63         if ( info.nativeFormats & RTAUDIO_SINT16 )
64           std::cout << "  16-bit int\n";
65         if ( info.nativeFormats & RTAUDIO_SINT24 )
66           std::cout << "  24-bit int\n";
67         if ( info.nativeFormats & RTAUDIO_SINT32 )
68           std::cout << "  32-bit int\n";
69         if ( info.nativeFormats & RTAUDIO_FLOAT32 )
70           std::cout << "  32-bit float\n";
71         if ( info.nativeFormats & RTAUDIO_FLOAT64 )
72           std::cout << "  64-bit float\n";
73       }
74       if ( info.sampleRates.size() < 1 )
75         std::cout << "No supported sample rates found!";
76       else {
77         std::cout << "Supported sample rates = ";
78         for (unsigned int j=0; j<info.sampleRates.size(); j++)
79           std::cout << info.sampleRates[j] << " ";
80       }
81       std::cout << std::endl;
82     }
83   }
84   std::cout << std::endl;
85
86   return 0;
87 }