diff options
author | Paul Adenot <[email protected]> | 2022-12-13 19:30:46 +0100 |
---|---|---|
committer | Paul Adenot <[email protected]> | 2022-12-14 18:33:27 +0100 |
commit | 304ef97245244e98cf8e3324eb348d9c01717f59 (patch) | |
tree | 95b65e257f356346d3d03c92c39140021170b8b2 /CMakeLists.txt | |
parent | e4da2d47c3499320142145f3dbc27204b2d51a59 (diff) | |
download | cubeb-304ef97245244e98cf8e3324eb348d9c01717f59.tar.gz cubeb-304ef97245244e98cf8e3324eb348d9c01717f59.zip |
Add a triple_buffer class that allows publishing data in a wait-free manner from a real-time thread to another thread.
It's largely inspired from the crate cubeb-coreaudio-rs uses, but ported to
C++.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index e7de39f..11951cf 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -400,6 +400,7 @@ if(BUILD_TESTS) cubeb_add_test(duplex) cubeb_add_test(logging) + cubeb_add_test(triple_buffer) if (USE_WASAPI) cubeb_add_test(overload_callback) |