mirror of
https://github.com/damp11113/EasyMPX.git
synced 2025-04-27 22:48:09 +00:00
11 lines
257 B
C
11 lines
257 B
C
#ifndef PAMPXFUNC_H
|
|
#define PAMPXFUNC_H
|
|
|
|
#include <cmath>
|
|
|
|
void generateSineWave(float* buffer, int frames, int sampleRate, float frequency, float amplitude = 0.5f);
|
|
|
|
void mix(float* mixedBuffer, const float* buffers[], int numBuffers, int frames);
|
|
|
|
#endif
|