diff options
author | Paul Adenot <[email protected]> | 2016-02-02 18:01:18 +0100 |
---|---|---|
committer | Paul Adenot <[email protected]> | 2016-02-06 06:29:22 +0100 |
commit | 1f13325871742e406e8b15deaff10d256fa1cd29 (patch) | |
tree | 97a106b94ce49786a63bce79ed6dedb402e2a13d /.gitignore | |
parent | c438f775a69cdc8ba6d7d543073c3ccf982050b8 (diff) | |
download | cubeb-1f13325871742e406e8b15deaff10d256fa1cd29.tar.gz cubeb-1f13325871742e406e8b15deaff10d256fa1cd29.zip |
Add an auto pointer and an auto array class
The auto pointer frees in the dtor.
The auto array has a number of feature that are useful to work with real-time
streaming audio: push back and pop front (because we're dealing with temporal
data), insert silence, auto resize, no compaction when it's resized down, bound
check, direct internal access to work nicely with other APIs.
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -47,6 +47,8 @@ test/test_tone test/test_tone.exe test/test_devices test/test_devices.exe +test/test_utils +test/test_utils.exe include/cubeb/cubeb-stdint.h test-suite.log test/test_sanity.log |