cleaned code and tuned audio analyzer

This commit is contained in:
2017-05-28 23:09:10 -05:00
parent 473adee281
commit 68422f0453
10 changed files with 37 additions and 11 deletions

View File

@@ -148,4 +148,11 @@ public class WavDecoder {
return samplesRead;
}
public void cleanAndClose() {
try {
readStream.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}