Skip to content

Commit 114ec7e

Browse files
committed
Squashed 'libjamesdsp/subtree/' changes from a1bc9c1..5964dd2
5964dd2 Fix unreachable free git-subtree-dir: libjamesdsp/subtree git-subtree-split: 5964dd2a04950ae81eef0c78272ae093118bc449
1 parent d8d9ba6 commit 114ec7e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Main/libjamesdsp/jni/jamesdsp/jdsp/Effects/multimodalEQ.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,11 +94,11 @@ void HSHOResponse(double fs, double fc, unsigned int filterOrder, double gain, d
9494
complexMultiplication(cplxRe[j], cplxIm[j], cplx2Re, cplx2Im, &cplxRe[j], &cplxIm[j]);
9595
}
9696
}
97+
scalar_gain:
9798
free(sRe);
9899
free(sIm);
99100
free(s2Re);
100101
free(s2Im);
101-
scalar_gain:
102102
for (unsigned int j = 0; j < queryPts; j++)
103103
{
104104
cplxRe[j] *= overallGain;
@@ -279,4 +279,4 @@ void MultimodalEqualizerProcess(JamesDSPLib *jdsp, size_t n)
279279
jdsp->tmpBuffer[1][smp] = x2;
280280
}
281281
}
282-
}
282+
}

0 commit comments

Comments
 (0)