PaulStoffregen 4 年前
父节点
当前提交
0d6a9b8a44
共有 2 个文件被更改,包括 4 次插入4 次删除
  1. +2
    -2
      output_pt8211.cpp
  2. +2
    -2
      output_pt8211_2.cpp

+ 2
- 2
output_pt8211.cpp 查看文件

@@ -237,7 +237,7 @@ void AudioOutputPT8211::isr(void)
oldL = val;
}
#elif defined(AUDIO_PT8211_INTERPOLATION_CIC)
for (int i=0; i< AUDIO_BLOCK_SAMPLES / 2; i++, offsetL++, offsetR++) {
for (int i=0; i< AUDIO_BLOCK_SAMPLES / 2; i++, offsetL++) {
int32_t valL = blockL->data[offsetL];

int32_t combL[3] = {0};
@@ -296,7 +296,7 @@ void AudioOutputPT8211::isr(void)
oldR = val;
}
#elif defined(AUDIO_PT8211_INTERPOLATION_CIC)
for (int i=0; i< AUDIO_BLOCK_SAMPLES / 2; i++, offsetL++, offsetR++) {
for (int i=0; i< AUDIO_BLOCK_SAMPLES / 2; i++, offsetR++) {
int32_t valR = blockR->data[offsetR];

int32_t combR[3] = {0};

+ 2
- 2
output_pt8211_2.cpp 查看文件

@@ -206,7 +206,7 @@ void AudioOutputPT8211_2::isr(void)
oldL = val;
}
#elif defined(AUDIO_PT8211_INTERPOLATION_CIC)
for (int i=0; i< AUDIO_BLOCK_SAMPLES / 2; i++, offsetL++, offsetR++) {
for (int i=0; i< AUDIO_BLOCK_SAMPLES / 2; i++, offsetL++) {
int32_t valL = blockL->data[offsetL];

int32_t combL[3] = {0};
@@ -265,7 +265,7 @@ void AudioOutputPT8211_2::isr(void)
oldR = val;
}
#elif defined(AUDIO_PT8211_INTERPOLATION_CIC)
for (int i=0; i< AUDIO_BLOCK_SAMPLES / 2; i++, offsetL++, offsetR++) {
for (int i=0; i< AUDIO_BLOCK_SAMPLES / 2; i++, offsetR++) {
int32_t valR = blockR->data[offsetR];

int32_t combR[3] = {0};

正在加载...
取消
保存