0
1
mirror of https://github.com/radio95-rnt/fm95.git synced 2026-02-26 19:23:51 +01:00
This commit is contained in:
2026-02-15 18:23:22 +01:00
parent 6330cbe3a3
commit 12f6887bc2
2 changed files with 2 additions and 2 deletions

View File

@@ -38,7 +38,7 @@ float stereo_encode(StereoEncoder* st, uint8_t enabled, float left, float right,
*audio = (mid*half_audio);
if(st->stereo_hilbert) {
float stereo = (crealf(stereo_hilbert) * signalx2cos) + (cimagf(stereo_hilbert) * signalx2);
*audio += (stereo * half_audio)
*audio += (stereo * half_audio);
} else *audio += ((side*signalx2) * half_audio);
return (signalx1*st->pilot_volume);
}