소스 검색

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…
취소
저장