mirror of
https://github.com/AndroidAudioMods/ViPERFX_RE.git
synced 2025-06-08 02:29:40 +08:00
23 lines
365 B
C++
23 lines
365 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
class Stereo3DSurround {
|
|
public:
|
|
Stereo3DSurround();
|
|
|
|
void Process(float *samples, uint32_t size);
|
|
void SetMiddleImage(float middleImage);
|
|
void SetStereoWiden(float stereoWiden);
|
|
|
|
private:
|
|
void ConfigureVariables();
|
|
|
|
float stereoWiden;
|
|
float middleImage;
|
|
float coeffLeft;
|
|
float coeffRight;
|
|
};
|
|
|
|
|