diff options
Diffstat (limited to 'src/plugins/Effect/soxr/soxresampler.h')
| -rw-r--r-- | src/plugins/Effect/soxr/soxresampler.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/Effect/soxr/soxresampler.h b/src/plugins/Effect/soxr/soxresampler.h index 09e159837..1747548cb 100644 --- a/src/plugins/Effect/soxr/soxresampler.h +++ b/src/plugins/Effect/soxr/soxresampler.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2016 by Ilya Kotov * + * Copyright (C) 2016-2020 by Ilya Kotov * * forkotov02@ya.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -39,10 +39,10 @@ public: private: void freeSoXR(); quint32 m_overSamplingFs; - float *m_out; - size_t m_out_samples; + float *m_out = nullptr; + size_t m_out_samples = 0; soxr_quality_spec_t m_quality; - soxr_t m_soxr; + soxr_t m_soxr = nullptr; }; |
