Skip to content
Snippets Groups Projects
Verified Commit abc1a771 authored by Jean-Marc Valin's avatar Jean-Marc Valin
Browse files

Fix stability test

parent 0834ad61
No related branches found
No related tags found
No related merge requests found
......@@ -77,7 +77,7 @@ int check_stability(opus_int16 *A_Q12, int order) {
if( ( i & 0x7 ) == 0 ) {
double amp = 0;
for( j = 0; j < order; j++ ) {
amp += fabs(y[0]);
amp += fabs(y[j]);
}
if( amp < 0.00001 ) {
return 1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment