浏览代码

Merge pull request #362 from MarkTillotson/fix_phase_modulation

Fix phase modulation
dds
Paul Stoffregen 3 年前
父节点
当前提交
b8a88653f1
没有帐户链接到提交者的电子邮件
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      synth_waveform.cpp

+ 1
- 1
synth_waveform.cpp 查看文件

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

正在加载...
取消
保存