From 5ac18af71b0805678fcf78b32b3c7d6aa62bea71 Mon Sep 17 00:00:00 2001 From: peah Date: Wed, 5 Apr 2017 15:10:34 -0700 Subject: [PATCH] Fixed error for missing explicit class initialization error on iOS buildbots TBR=henrik.lundin@webrtc.org BUG=webrtc:6018 Review-Url: https://codereview.webrtc.org/2799813002 Cr-Commit-Position: refs/heads/master@{#17549} --- webrtc/modules/audio_processing/aec3/render_buffer.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/webrtc/modules/audio_processing/aec3/render_buffer.cc b/webrtc/modules/audio_processing/aec3/render_buffer.cc index 65dbc8fc2b..a3700dd150 100644 --- a/webrtc/modules/audio_processing/aec3/render_buffer.cc +++ b/webrtc/modules/audio_processing/aec3/render_buffer.cc @@ -26,7 +26,8 @@ RenderBuffer::RenderBuffer(Aec3Optimization optimization, spectrum_buffer_(num_partitions, std::array()), spectral_sums_(num_ffts_for_spectral_sums.size(), std::array()), - last_block_(num_bands, std::vector(kBlockSize, 0.f)) { + last_block_(num_bands, std::vector(kBlockSize, 0.f)), + fft_() { // Current implementation only allows a maximum of one spectral sum lengths. RTC_DCHECK_EQ(1, num_ffts_for_spectral_sums.size()); spectral_sums_length_ = num_ffts_for_spectral_sums[0];