Issue 2594: My kingdom for more wavelets - various speedups, memory reductions, GUI changes and level numbering PP3 change.

This commit is contained in:
DrSlony
2015-02-22 01:35:30 +01:00
parent 32dae1856a
commit 43db722ece
22 changed files with 1316 additions and 908 deletions

View File

@@ -25,11 +25,12 @@ namespace rtengine {
wavelet_decomposition::~wavelet_decomposition()
{
for(int i = 0; i <= lvltot; i++) {
delete wavelet_decomp[i];
if(wavelet_decomp[i] != NULL)
delete wavelet_decomp[i];
}
delete[] wavfilt_anal;
delete[] wavfilt_synth;
if(coeff0)
delete[] wavfilt_synth;
if(coeff0)
delete [] coeff0;
}