mirror of
https://github.com/n5ac/smartsdr-dsp.git
synced 2025-12-06 03:01:59 +01:00
Solve no right-channel audio when in binaural mode
This commit is contained in:
parent
569fc2455a
commit
484b4f6da0
|
|
@ -516,7 +516,7 @@ static void* _sched_waveform_thread(void* param)
|
|||
// put the fsample into the outbound packet
|
||||
|
||||
((Complex*)buf_desc->buf_ptr)[i].real = fsample;
|
||||
((Complex*)buf_desc->buf_ptr)[i].imag = 0;
|
||||
((Complex*)buf_desc->buf_ptr)[i].imag = fsample;
|
||||
|
||||
}
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Reference in a new issue