41 lines
1.0 KiB
Diff
41 lines
1.0 KiB
Diff
diff --git a/lib/psy.c b/lib/psy.c
|
|
index 1310123..98f9bd2 100644
|
|
--- a/lib/psy.c
|
|
+++ b/lib/psy.c
|
|
@@ -599,7 +599,7 @@ static void bark_noise_hybridmp(int n,const long *b,
|
|
XY[i] = tXY;
|
|
}
|
|
|
|
- for (i = 0, x = 0.f;; i++, x += 1.f) {
|
|
+ for (i = 0, x = 0.f; i < n; i++, x += 1.f) {
|
|
|
|
lo = b[i] >> 16;
|
|
hi = b[i] & 0xffff;
|
|
@@ -622,7 +622,7 @@ static void bark_noise_hybridmp(int n,const long *b,
|
|
noise[i] = R - offset;
|
|
}
|
|
|
|
- for ( ;; i++, x += 1.f) {
|
|
+ for ( ; i < n; i++, x += 1.f) {
|
|
|
|
lo = b[i] >> 16;
|
|
hi = b[i] & 0xffff;
|
|
@@ -652,7 +652,7 @@ static void bark_noise_hybridmp(int n,const long *b,
|
|
|
|
if (fixed <= 0) return;
|
|
|
|
- for (i = 0, x = 0.f;; i++, x += 1.f) {
|
|
+ for (i = 0, x = 0.f; i < n; i++, x += 1.f) {
|
|
hi = i + fixed / 2;
|
|
lo = hi - fixed;
|
|
if(lo>=0)break;
|
|
@@ -671,7 +671,7 @@ static void bark_noise_hybridmp(int n,const long *b,
|
|
|
|
if (R - offset < noise[i]) noise[i] = R - offset;
|
|
}
|
|
- for ( ;; i++, x += 1.f) {
|
|
+ for ( ; i < n; i++, x += 1.f) {
|
|
|
|
hi = i + fixed / 2;
|
|
lo = hi - fixed;
|