• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..30-Mar-2022-

benches/H30-Mar-2022-9685

src/H30-Mar-2022-974718

.cargo-checksum.jsonH A D03-May-202289 11

Cargo.lockH A D30-Mar-202222.8 KiB522464

Cargo.tomlH A D30-Mar-20221.1 KiB3632

README.mdH A D30-Mar-2022925 1812

README.md

1# Audio Mixer
2
3[![Build Status](https://travis-ci.com/ChunMinChang/audio-mixer.svg?branch=master)](https://travis-ci.com/ChunMinChang/audio-mixer)
4
5Mixing audio data from any input channel layout to any output channel layout.
6
7The code here is a refactored version from [cubeb][cubeb]'s [cubeb_mixer(_C/C++_)][cubeb_mixer], which adapts the code from [FFmpeg libswresample's rematrix.c][rematrix] .
8The original implementation is in [cubeb-coreaudio-rs][cubeb-coreaudio-rs]'s [PR23][pr23]
9
10## License
11
12MPL-2
13
14[cubeb]: https://github.com/kinetiknz/cubeb
15[cubeb_mixer]: https://github.com/kinetiknz/cubeb/blob/aa636017aca8f79ebc95fb9f03b9333eaf9fd8fc/src/cubeb_mixer.cpp
16[rematrix]: https://github.com/FFmpeg/FFmpeg/blob/4fa2d5a692f40c398a299acf2c6a20f5b98a3708/libswresample/rematrix.c
17[cubeb-coreaudio-rs]: https://github.com/ChunMinChang/cubeb-coreaudio-rs/
18[pr23]: https://github.com/ChunMinChang/cubeb-coreaudio-rs/pull/23