Pārlūkot izejas kodu

fix phase modulation not to treat phase modulation data as unsigned before multiplying

dds
user pirms 5 gadiem
vecāks
revīzija
ce8348301e
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. +1
    -1
      synth_waveform.cpp

+ 1
- 1
synth_waveform.cpp Parādīt failu

bp = moddata->data; bp = moddata->data;
for (i=0; i < AUDIO_BLOCK_SAMPLES; i++) { for (i=0; i < AUDIO_BLOCK_SAMPLES; i++) {
// more than +/- 180 deg shift by 32 bit overflow of "n" // more than +/- 180 deg shift by 32 bit overflow of "n"
uint32_t n = (uint16_t)(*bp++) * modulation_factor;
uint32_t n = (*bp++) * modulation_factor;
phasedata[i] = ph + n; phasedata[i] = ph + n;
ph += inc; ph += inc;
} }

Notiek ielāde…
Atcelt
Saglabāt