diff options
author | Paul Adenot <[email protected]> | 2016-02-02 18:24:16 +0100 |
---|---|---|
committer | Paul Adenot <[email protected]> | 2016-02-06 06:29:23 +0100 |
commit | c888e581c18eb94a73747e329d038a421c1d6e57 (patch) | |
tree | 83c13b8dd3d2ed626010e81d28fb9c7cfad2e1c2 /.gitignore | |
parent | 1f13325871742e406e8b15deaff10d256fa1cd29 (diff) | |
download | cubeb-c888e581c18eb94a73747e329d038a421c1d6e57.tar.gz cubeb-c888e581c18eb94a73747e329d038a421c1d6e57.zip |
Add a resampler that can synchronously resample audio.
Depending on if its used for input or output audio, it can be used in two
different ways, so it has to expose its input buffer to minimise copy (when the
input of the resampler is output audio, directly written inside an audio
callback), and to be able to expose an internal buffer so that the output of
the resampling process can directly be passed to a callback.
When created, additional latency can be added to the pipeline so that multiple
resamplers of different filter length (=latency) can be synchronized.
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -2,6 +2,10 @@ *.o *.swp *~ +*.trs +*.raw +*.wav +*.log .deps .dirstamp .libs @@ -47,10 +51,11 @@ test/test_tone test/test_tone.exe test/test_devices test/test_devices.exe +test/test_resampler +test/test_resampler.exe test/test_utils test/test_utils.exe include/cubeb/cubeb-stdint.h test-suite.log test/test_sanity.log test/test_sanity.trs - |