瀏覽代碼

Add comment about noise shaping in biquad filter

dds
PaulStoffregen 5 年之前
父節點
當前提交
8d0cb7b413
共有 1 個文件被更改,包括 5 次插入0 次删除
  1. +5
    -0
      filter_biquad.cpp

+ 5
- 0
filter_biquad.cpp 查看文件

@@ -68,6 +68,11 @@ void AudioFilterBiquad::update(void)
bprev = in2;
aprev = pack_16b_16b(
signed_saturate_rshift(sum, 16, 14), out2);
// retaining part of the sum is meant to implement the
// "first order noise shaping" described in this article:
// http://www.earlevel.com/main/2003/02/28/biquads/
// TODO: is logical AND really correct, or maybe it
// should really be signed_saturate_rshift() ???
sum &= 0x3FFF;
bprev = in2;
*data++ = aprev;

Loading…
取消
儲存