소스 검색

put pointer assignment after test

I put the line I had moved into the loop the wrong side of the test
conditional.
dds
robsoles 11 년 전
부모
커밋
d90ea2c06f
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      filter_biquad.cpp

+ 1
- 1
filter_biquad.cpp 파일 보기

@@ -35,8 +35,8 @@ void AudioFilterBiquad::update(void)
uint32_t *data, *end;
int32_t *state;
block = receiveWritable();
data = (uint32_t *)(block->data);
if (!block) return;
data = (uint32_t *)(block->data);
end = data + AUDIO_BLOCK_SAMPLES/2;
state = (int32_t *)definition;
do {

Loading…
취소
저장