mirror of
https://github.com/damp11113/EasyMPX.git
synced 2025-04-27 06:28:10 +00:00
10 lines
295 B
C++
10 lines
295 B
C++
#ifndef PAMPXFUNC_H
|
|
#define PAMPXFUNC_H
|
|
|
|
#include <vector>
|
|
|
|
std::vector<float> mixChannels(const std::vector<float>& leftChannel, const std::vector<float>& rightChannel);
|
|
std::vector<float> subtractChannels(const std::vector<float>& leftChannel, const std::vector<float>& rightChannel);
|
|
|
|
#endif
|