cmake | ||
example | ||
src | ||
test | ||
.gitignore | ||
CMakeLists.txt | ||
LICENSE | ||
README.md |
libsoundio
C library which provides cross-platform audio input and output. The API is suitable for real-time software such as digital audio workstations as well as consumer software such as music players.
This library is an abstraction; however it prioritizes performance and power over API convenience. Features that only exist in some sound backends are exposed.
This library is a work-in-progress.
Alternatives
- PortAudio
- Does not support PulseAudio.
- Logs messages to stdio and you can't turn that off.
- Does not support channel layouts / channel maps.
- Does not support emitting an event when available devices change.
- Does not let you connect to multiple backends at once.
- Not written by me.
- rtaudio
- It is not a C library.
- It uses exceptions.
- It does not support channel layouts / channel maps.
- Does not support emitting an event when available devices change.
- Does not let you connect to multiple backends at once.
- Not written by me.
- SDL
- Comes with baggage: display, windowing, input handling, and lots more.
- Not designed with real-time low latency audio in mind.
- Listing audio devices is broken.
- Does not support recording devices.
- Does not support channel layouts / channel maps.
- Does not support emitting an event when available devices change.
- Does not let you connect to multiple backends at once.
- Not written by me.
How It Works
libsoundio tries these backends in order. If unable to connect to that backend, due to the backend not being installed, or the server not running, or the platform is wrong, the next backend is tried.
- JACK
- PulseAudio
- ALSA (Linux)
- CoreAudio (OSX)
- ASIO (Windows)
- DirectSound (Windows)
- OSS (BSD)
- Dummy
Contributing
libsoundio is programmed in a tiny subset of C++11:
- No STL.
- No
new
ordelete
. - No
class
. All fields in structs arepublic
. - No exceptions or run-time type information.
- No references.
- No linking against libstdc++.
Don't get tricked - this is a C library, not a C++ library. We just take advantage of a select few C++11 compiler features such as templates, and then link against libc.
Building
Install the dependencies:
- cmake
- ALSA library (optional)
- libjack2 (optional)
- libpulseaudio (optional)
mkdir build
cd build
cmake ..
make
sudo make install
Building for Windows
You can build libsoundio with mxe. Follow the requirements section to install the packages necessary on your system. Then somewhere on your file system:
git clone https://github.com/mxe/mxe
cd mxe
make gcc
Then in the libsoundio source directory (replace "/path/to/mxe" with the appropriate path):
mkdir build-win
cd build-win
cmake .. -DCMAKE_TOOLCHAIN_FILE=/path/to/mxe/usr/i686-w64-mingw32.static/share/cmake/mxe-conf.cmake
make
Running the Tests
make test
For more detailed output:
make
./unit_tests
To see test coverage, install lcov, run make coverage
and then
view coverage/index.html
in a browser.
Roadmap
- implement ALSA (Linux) backend, get examples working
- fix pulseaudio backend since I broke it
- pipe record to playback example working with dummy linux, osx, windows
- pipe record to playback example working with pulseaudio linux
- implement CoreAudio (OSX) backend, get examples working
- implement DirectSound (Windows) backend, get examples working
- implement JACK backend, get examples working
- Avoid calling
panic
in PulseAudio. - implement ASIO (Windows) backend, get examples working
- clean up API and improve documentation
- make sure every function which can return an error documents which errors it can return
- consider doing the public/private struct thing and make
backend_data
a union instead of avoid *
- use a documentation generator and host the docs somewhere
- -fvisibility=hidden and then explicitly export stuff
- Integrate into libgroove and test with Groove Basin
- Consider testing on FreeBSD
- look at microphone example and determine if fewer memcpys can be done
with the audio data
- pulseaudio has peek() drop() which sucks, but what if libsoundio lets you specify how much to peek() and if you don't peek all of it, save the unused to a buffer for you.
- add len arguments to APIs that have char *