EasyMPX/FMPX generator/PaMPXFunc.h
2024-01-07 22:16:45 +07:00

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