diff options
| author | Vasile Vilvoiu <vasi@vilvoiu.ro> | 2021-07-16 19:48:58 +0300 |
|---|---|---|
| committer | Vasile Vilvoiu <vasi@vilvoiu.ro> | 2021-07-16 19:48:58 +0300 |
| commit | b13609afcdf66d781db70fb75f6869a052a49079 (patch) | |
| tree | 3bb316cdf8275ecb8aa443b2ff525c6411063453 | |
| parent | 47bbfdbf1e2a6193157397938e76b16a1f60e789 (diff) | |
Fix branch on uninitialized value.
| -rw-r--r-- | src/configuration.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/configuration.cpp b/src/configuration.cpp index 85b1faa..14bcacb 100644 --- a/src/configuration.cpp +++ b/src/configuration.cpp @@ -24,6 +24,7 @@ Configuration::Configuration() this->block_size_ = 256; this->rate_ = 44100; this->datatype_ = DataType::kSignedInt16; + this->has_complex_input_ = false; this->prescale_factor_ = 1.0f; this->fft_width_ = 1024; |
