0
1
mirror of https://github.com/radio95-rnt/fm95.git synced 2026-02-26 19:23:51 +01:00

remove polar stereo

fix
This commit is contained in:
2025-08-05 13:21:40 +02:00
parent 12e54f44e2
commit 6b46716860
4 changed files with 10 additions and 16 deletions

View File

@@ -7,12 +7,11 @@ typedef struct
{
uint8_t multiplier;
Oscillator* osc;
uint8_t polar;
float mono_volume;
float pilot_volume;
float stereo_volume;
} StereoEncoder;
void init_stereo_encoder(StereoEncoder *st, uint8_t multiplier, Oscillator *osc, uint8_t polar, float mono_volume, float pilot_volume, float stereo_volume);
void init_stereo_encoder(StereoEncoder *st, uint8_t multiplier, Oscillator *osc, float mono_volume, float pilot_volume, float stereo_volume);
float stereo_encode(StereoEncoder* st, uint8_t enabled, float left, float right);