mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-04-10 05:04:43 +02:00
Fix compiler warnings
This commit is contained in:
parent
7faada24a8
commit
aa01dca0a8
1 changed files with 3 additions and 3 deletions
|
@ -771,7 +771,7 @@ int AudioSRC::multirateFilter1(const float* input0, float* output0, int inputFra
|
|||
|
||||
float coef = c0[j];
|
||||
|
||||
acc0 += input0[i + j] * c0[j];
|
||||
acc0 += input0[i + j] * coef;
|
||||
}
|
||||
|
||||
output0[outputFrames] = acc0;
|
||||
|
@ -835,8 +835,8 @@ int AudioSRC::multirateFilter2(const float* input0, const float* input1, float*
|
|||
|
||||
float coef = c0[j];
|
||||
|
||||
acc0 += input0[i + j] * c0[j];
|
||||
acc1 += input1[i + j] * c0[j];
|
||||
acc0 += input0[i + j] * coef;
|
||||
acc1 += input1[i + j] * coef;
|
||||
}
|
||||
|
||||
output0[outputFrames] = acc0;
|
||||
|
|
Loading…
Reference in a new issue