This is an implementation of the standard audio API for C++ proposed in P1386.
The latest published revision of this proposal can always be found at https://wg21.link/p1386.
This implementation is still a work in progress and may have some rough edges, but it does attempt to follow the API design presented in P1386. It does not exactly match P1386, though: as we discover issues and improvements, they might be implemented here first before they appear in the next P1386 revision.
Currently, this implementation works on macOS. We plan to get Windows and Linux implementations done as soon as possible.
include contains the audio header, which is the only header users of the library should include. It also contains the header files of the different classes and functions, prefixed with __audio_. Please refer to these header files for a documentation of the API as implemented here. (We plan to set up proper documentation soon.)
examples contains several example apps, which you can compile and run out of the box, and play around with to get a feel for how to use the library:
-
print_deviceslists the currently connected audio devices and their current configurations. -
white_noiseplays white noise through the default output device. -
sine_waveplays a 440 Hz sine wave sound through the default output device. -
level_metermeasures the input volume through the microphone, and continuously outputs the current maximum value on cout.
test contains some unit tests written in Catch2.
This library uses CMake. Build target libstdaudio to build the library. Then, link against it, and include the audio header.