diff options
Diffstat (limited to 'Externals/FreeSurround/source/FreeSurroundDecoder.cpp')
| -rw-r--r-- | Externals/FreeSurround/source/FreeSurroundDecoder.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Externals/FreeSurround/source/FreeSurroundDecoder.cpp b/Externals/FreeSurround/source/FreeSurroundDecoder.cpp index b65734a5cb..10b45ff753 100644 --- a/Externals/FreeSurround/source/FreeSurroundDecoder.cpp +++ b/Externals/FreeSurround/source/FreeSurroundDecoder.cpp @@ -31,10 +31,8 @@ DPL2FSDecoder::DPL2FSDecoder() { } DPL2FSDecoder::~DPL2FSDecoder() { -#pragma warning(suppress : 4150) - delete forward; -#pragma warning(suppress : 4150) - delete inverse; + kiss_fftr_free(forward); + kiss_fftr_free(inverse); } void DPL2FSDecoder::Init(channel_setup chsetup, unsigned int blsize, |
