blob: d5f0f9c0a3c72e6aa0d2e8dcdd1e97a4c91b6b0e [file] [log] [blame]
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001/*
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
henrik.lundin@webrtc.org9c55f0f2014-06-09 08:10:28 +000011#include "webrtc/modules/audio_coding/neteq/expand.h"
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000012
13#include <assert.h>
pbos@webrtc.org12dc1a32013-08-05 16:22:53 +000014#include <string.h> // memset
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000015
16#include <algorithm> // min, max
turaj@webrtc.org7126b382013-07-31 16:05:09 +000017#include <limits> // numeric_limits<T>
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000018
19#include "webrtc/common_audio/signal_processing/include/signal_processing_library.h"
henrik.lundin@webrtc.org9c55f0f2014-06-09 08:10:28 +000020#include "webrtc/modules/audio_coding/neteq/background_noise.h"
21#include "webrtc/modules/audio_coding/neteq/dsp_helper.h"
22#include "webrtc/modules/audio_coding/neteq/random_vector.h"
23#include "webrtc/modules/audio_coding/neteq/sync_buffer.h"
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000024
25namespace webrtc {
26
Karl Wiberg7f6c4d42015-04-09 15:44:22 +020027Expand::Expand(BackgroundNoise* background_noise,
28 SyncBuffer* sync_buffer,
29 RandomVector* random_vector,
30 int fs,
31 size_t num_channels)
32 : random_vector_(random_vector),
33 sync_buffer_(sync_buffer),
34 first_expand_(true),
35 fs_hz_(fs),
36 num_channels_(num_channels),
37 consecutive_expands_(0),
38 background_noise_(background_noise),
39 overlap_length_(5 * fs / 8000),
40 lag_index_direction_(0),
41 current_lag_index_(0),
42 stop_muting_(false),
43 channel_parameters_(new ChannelParameters[num_channels_]) {
44 assert(fs == 8000 || fs == 16000 || fs == 32000 || fs == 48000);
45 assert(fs <= kMaxSampleRate); // Should not be possible.
46 assert(num_channels_ > 0);
47 memset(expand_lags_, 0, sizeof(expand_lags_));
48 Reset();
49}
50
51Expand::~Expand() = default;
52
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000053void Expand::Reset() {
54 first_expand_ = true;
55 consecutive_expands_ = 0;
56 max_lag_ = 0;
57 for (size_t ix = 0; ix < num_channels_; ++ix) {
58 channel_parameters_[ix].expand_vector0.Clear();
59 channel_parameters_[ix].expand_vector1.Clear();
60 }
61}
62
henrik.lundin@webrtc.orgfd11bbf2013-09-30 20:38:44 +000063int Expand::Process(AudioMultiVector* output) {
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000064 int16_t random_vector[kMaxSampleRate / 8000 * 120 + 30];
65 int16_t scaled_random_vector[kMaxSampleRate / 8000 * 125];
66 static const int kTempDataSize = 3600;
67 int16_t temp_data[kTempDataSize]; // TODO(hlundin) Remove this.
68 int16_t* voiced_vector_storage = temp_data;
69 int16_t* voiced_vector = &voiced_vector_storage[overlap_length_];
70 static const int kNoiseLpcOrder = BackgroundNoise::kMaxLpcOrder;
71 int16_t unvoiced_array_memory[kNoiseLpcOrder + kMaxSampleRate / 8000 * 125];
72 int16_t* unvoiced_vector = unvoiced_array_memory + kUnvoicedLpcOrder;
73 int16_t* noise_vector = unvoiced_array_memory + kNoiseLpcOrder;
74
75 int fs_mult = fs_hz_ / 8000;
76
77 if (first_expand_) {
78 // Perform initial setup if this is the first expansion since last reset.
79 AnalyzeSignal(random_vector);
80 first_expand_ = false;
81 } else {
82 // This is not the first expansion, parameters are already estimated.
83 // Extract a noise segment.
84 int16_t rand_length = max_lag_;
turaj@webrtc.org8d1cdaa2014-04-11 18:47:55 +000085 // This only applies to SWB where length could be larger than 256.
86 assert(rand_length <= kMaxSampleRate / 8000 * 120 + 30);
87 GenerateRandomVector(2, rand_length, random_vector);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000088 }
89
90
91 // Generate signal.
92 UpdateLagIndex();
93
94 // Voiced part.
95 // Generate a weighted vector with the current lag.
96 size_t expansion_vector_length = max_lag_ + overlap_length_;
97 size_t current_lag = expand_lags_[current_lag_index_];
98 // Copy lag+overlap data.
99 size_t expansion_vector_position = expansion_vector_length - current_lag -
100 overlap_length_;
101 size_t temp_length = current_lag + overlap_length_;
102 for (size_t channel_ix = 0; channel_ix < num_channels_; ++channel_ix) {
103 ChannelParameters& parameters = channel_parameters_[channel_ix];
104 if (current_lag_index_ == 0) {
105 // Use only expand_vector0.
106 assert(expansion_vector_position + temp_length <=
107 parameters.expand_vector0.Size());
108 memcpy(voiced_vector_storage,
109 &parameters.expand_vector0[expansion_vector_position],
110 sizeof(int16_t) * temp_length);
111 } else if (current_lag_index_ == 1) {
112 // Mix 3/4 of expand_vector0 with 1/4 of expand_vector1.
113 WebRtcSpl_ScaleAndAddVectorsWithRound(
114 &parameters.expand_vector0[expansion_vector_position], 3,
115 &parameters.expand_vector1[expansion_vector_position], 1, 2,
turaj@webrtc.org362a55e2013-09-20 16:25:28 +0000116 voiced_vector_storage, static_cast<int>(temp_length));
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000117 } else if (current_lag_index_ == 2) {
118 // Mix 1/2 of expand_vector0 with 1/2 of expand_vector1.
119 assert(expansion_vector_position + temp_length <=
120 parameters.expand_vector0.Size());
121 assert(expansion_vector_position + temp_length <=
122 parameters.expand_vector1.Size());
123 WebRtcSpl_ScaleAndAddVectorsWithRound(
124 &parameters.expand_vector0[expansion_vector_position], 1,
125 &parameters.expand_vector1[expansion_vector_position], 1, 1,
turaj@webrtc.org362a55e2013-09-20 16:25:28 +0000126 voiced_vector_storage, static_cast<int>(temp_length));
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000127 }
128
129 // Get tapering window parameters. Values are in Q15.
130 int16_t muting_window, muting_window_increment;
131 int16_t unmuting_window, unmuting_window_increment;
132 if (fs_hz_ == 8000) {
133 muting_window = DspHelper::kMuteFactorStart8kHz;
134 muting_window_increment = DspHelper::kMuteFactorIncrement8kHz;
135 unmuting_window = DspHelper::kUnmuteFactorStart8kHz;
136 unmuting_window_increment = DspHelper::kUnmuteFactorIncrement8kHz;
137 } else if (fs_hz_ == 16000) {
138 muting_window = DspHelper::kMuteFactorStart16kHz;
139 muting_window_increment = DspHelper::kMuteFactorIncrement16kHz;
140 unmuting_window = DspHelper::kUnmuteFactorStart16kHz;
141 unmuting_window_increment = DspHelper::kUnmuteFactorIncrement16kHz;
142 } else if (fs_hz_ == 32000) {
143 muting_window = DspHelper::kMuteFactorStart32kHz;
144 muting_window_increment = DspHelper::kMuteFactorIncrement32kHz;
145 unmuting_window = DspHelper::kUnmuteFactorStart32kHz;
146 unmuting_window_increment = DspHelper::kUnmuteFactorIncrement32kHz;
147 } else { // fs_ == 48000
148 muting_window = DspHelper::kMuteFactorStart48kHz;
149 muting_window_increment = DspHelper::kMuteFactorIncrement48kHz;
150 unmuting_window = DspHelper::kUnmuteFactorStart48kHz;
151 unmuting_window_increment = DspHelper::kUnmuteFactorIncrement48kHz;
152 }
153
154 // Smooth the expanded if it has not been muted to a low amplitude and
155 // |current_voice_mix_factor| is larger than 0.5.
156 if ((parameters.mute_factor > 819) &&
157 (parameters.current_voice_mix_factor > 8192)) {
158 size_t start_ix = sync_buffer_->Size() - overlap_length_;
159 for (size_t i = 0; i < overlap_length_; i++) {
160 // Do overlap add between new vector and overlap.
161 (*sync_buffer_)[channel_ix][start_ix + i] =
162 (((*sync_buffer_)[channel_ix][start_ix + i] * muting_window) +
163 (((parameters.mute_factor * voiced_vector_storage[i]) >> 14) *
164 unmuting_window) + 16384) >> 15;
165 muting_window += muting_window_increment;
166 unmuting_window += unmuting_window_increment;
167 }
168 } else if (parameters.mute_factor == 0) {
169 // The expanded signal will consist of only comfort noise if
170 // mute_factor = 0. Set the output length to 15 ms for best noise
171 // production.
172 // TODO(hlundin): This has been disabled since the length of
173 // parameters.expand_vector0 and parameters.expand_vector1 no longer
174 // match with expand_lags_, causing invalid reads and writes. Is it a good
175 // idea to enable this again, and solve the vector size problem?
176// max_lag_ = fs_mult * 120;
177// expand_lags_[0] = fs_mult * 120;
178// expand_lags_[1] = fs_mult * 120;
179// expand_lags_[2] = fs_mult * 120;
180 }
181
182 // Unvoiced part.
183 // Filter |scaled_random_vector| through |ar_filter_|.
184 memcpy(unvoiced_vector - kUnvoicedLpcOrder, parameters.ar_filter_state,
185 sizeof(int16_t) * kUnvoicedLpcOrder);
186 int32_t add_constant = 0;
187 if (parameters.ar_gain_scale > 0) {
188 add_constant = 1 << (parameters.ar_gain_scale - 1);
189 }
190 WebRtcSpl_AffineTransformVector(scaled_random_vector, random_vector,
191 parameters.ar_gain, add_constant,
turaj@webrtc.org362a55e2013-09-20 16:25:28 +0000192 parameters.ar_gain_scale,
193 static_cast<int>(current_lag));
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000194 WebRtcSpl_FilterARFastQ12(scaled_random_vector, unvoiced_vector,
turaj@webrtc.org362a55e2013-09-20 16:25:28 +0000195 parameters.ar_filter, kUnvoicedLpcOrder + 1,
196 static_cast<int>(current_lag));
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000197 memcpy(parameters.ar_filter_state,
198 &(unvoiced_vector[current_lag - kUnvoicedLpcOrder]),
199 sizeof(int16_t) * kUnvoicedLpcOrder);
200
201 // Combine voiced and unvoiced contributions.
202
203 // Set a suitable cross-fading slope.
204 // For lag =
205 // <= 31 * fs_mult => go from 1 to 0 in about 8 ms;
206 // (>= 31 .. <= 63) * fs_mult => go from 1 to 0 in about 16 ms;
207 // >= 64 * fs_mult => go from 1 to 0 in about 32 ms.
208 // temp_shift = getbits(max_lag_) - 5.
209 int temp_shift = (31 - WebRtcSpl_NormW32(max_lag_)) - 5;
210 int16_t mix_factor_increment = 256 >> temp_shift;
211 if (stop_muting_) {
212 mix_factor_increment = 0;
213 }
214
215 // Create combined signal by shifting in more and more of unvoiced part.
216 temp_shift = 8 - temp_shift; // = getbits(mix_factor_increment).
217 size_t temp_lenght = (parameters.current_voice_mix_factor -
218 parameters.voice_mix_factor) >> temp_shift;
219 temp_lenght = std::min(temp_lenght, current_lag);
220 DspHelper::CrossFade(voiced_vector, unvoiced_vector, temp_lenght,
221 &parameters.current_voice_mix_factor,
222 mix_factor_increment, temp_data);
223
224 // End of cross-fading period was reached before end of expanded signal
225 // path. Mix the rest with a fixed mixing factor.
226 if (temp_lenght < current_lag) {
227 if (mix_factor_increment != 0) {
228 parameters.current_voice_mix_factor = parameters.voice_mix_factor;
229 }
Peter Kastingb7e50542015-06-11 12:55:50 -0700230 int16_t temp_scale = 16384 - parameters.current_voice_mix_factor;
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000231 WebRtcSpl_ScaleAndAddVectorsWithRound(
232 voiced_vector + temp_lenght, parameters.current_voice_mix_factor,
233 unvoiced_vector + temp_lenght, temp_scale, 14,
turaj@webrtc.org362a55e2013-09-20 16:25:28 +0000234 temp_data + temp_lenght, static_cast<int>(current_lag - temp_lenght));
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000235 }
236
237 // Select muting slope depending on how many consecutive expands we have
238 // done.
239 if (consecutive_expands_ == 3) {
240 // Let the mute factor decrease from 1.0 to 0.95 in 6.25 ms.
241 // mute_slope = 0.0010 / fs_mult in Q20.
Peter Kastingcb180972015-06-11 12:42:27 -0700242 parameters.mute_slope = std::max(parameters.mute_slope,
243 static_cast<int16_t>(1049 / fs_mult));
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000244 }
245 if (consecutive_expands_ == 7) {
246 // Let the mute factor decrease from 1.0 to 0.90 in 6.25 ms.
247 // mute_slope = 0.0020 / fs_mult in Q20.
Peter Kastingcb180972015-06-11 12:42:27 -0700248 parameters.mute_slope = std::max(parameters.mute_slope,
249 static_cast<int16_t>(2097 / fs_mult));
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000250 }
251
252 // Mute segment according to slope value.
253 if ((consecutive_expands_ != 0) || !parameters.onset) {
254 // Mute to the previous level, then continue with the muting.
255 WebRtcSpl_AffineTransformVector(temp_data, temp_data,
256 parameters.mute_factor, 8192,
turaj@webrtc.org362a55e2013-09-20 16:25:28 +0000257 14, static_cast<int>(current_lag));
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000258
259 if (!stop_muting_) {
260 DspHelper::MuteSignal(temp_data, parameters.mute_slope, current_lag);
261
262 // Shift by 6 to go from Q20 to Q14.
263 // TODO(hlundin): Adding 8192 before shifting 6 steps seems wrong.
264 // Legacy.
turaj@webrtc.org362a55e2013-09-20 16:25:28 +0000265 int16_t gain = static_cast<int16_t>(16384 -
266 (((current_lag * parameters.mute_slope) + 8192) >> 6));
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000267 gain = ((gain * parameters.mute_factor) + 8192) >> 14;
268
269 // Guard against getting stuck with very small (but sometimes audible)
270 // gain.
271 if ((consecutive_expands_ > 3) && (gain >= parameters.mute_factor)) {
272 parameters.mute_factor = 0;
273 } else {
274 parameters.mute_factor = gain;
275 }
276 }
277 }
278
279 // Background noise part.
turaj@webrtc.org8d1cdaa2014-04-11 18:47:55 +0000280 GenerateBackgroundNoise(random_vector,
281 channel_ix,
282 channel_parameters_[channel_ix].mute_slope,
283 TooManyExpands(),
284 current_lag,
285 unvoiced_array_memory);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000286
287 // Add background noise to the combined voiced-unvoiced signal.
288 for (size_t i = 0; i < current_lag; i++) {
289 temp_data[i] = temp_data[i] + noise_vector[i];
290 }
291 if (channel_ix == 0) {
292 output->AssertSize(current_lag);
293 } else {
294 assert(output->Size() == current_lag);
295 }
296 memcpy(&(*output)[channel_ix][0], temp_data,
297 sizeof(temp_data[0]) * current_lag);
298 }
299
300 // Increase call number and cap it.
turaj@webrtc.org8d1cdaa2014-04-11 18:47:55 +0000301 consecutive_expands_ = consecutive_expands_ >= kMaxConsecutiveExpands ?
302 kMaxConsecutiveExpands : consecutive_expands_ + 1;
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000303 return 0;
304}
305
306void Expand::SetParametersForNormalAfterExpand() {
307 current_lag_index_ = 0;
308 lag_index_direction_ = 0;
309 stop_muting_ = true; // Do not mute signal any more.
310}
311
312void Expand::SetParametersForMergeAfterExpand() {
313 current_lag_index_ = -1; /* out of the 3 possible ones */
314 lag_index_direction_ = 1; /* make sure we get the "optimal" lag */
315 stop_muting_ = true;
316}
317
Karl Wiberg7f6c4d42015-04-09 15:44:22 +0200318size_t Expand::overlap_length() const {
319 return overlap_length_;
320}
321
turaj@webrtc.org8d1cdaa2014-04-11 18:47:55 +0000322void Expand::InitializeForAnExpandPeriod() {
323 lag_index_direction_ = 1;
324 current_lag_index_ = -1;
325 stop_muting_ = false;
326 random_vector_->set_seed_increment(1);
327 consecutive_expands_ = 0;
328 for (size_t ix = 0; ix < num_channels_; ++ix) {
329 channel_parameters_[ix].current_voice_mix_factor = 16384; // 1.0 in Q14.
330 channel_parameters_[ix].mute_factor = 16384; // 1.0 in Q14.
331 // Start with 0 gain for background noise.
332 background_noise_->SetMuteFactor(ix, 0);
333 }
334}
335
336bool Expand::TooManyExpands() {
337 return consecutive_expands_ >= kMaxConsecutiveExpands;
338}
339
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000340void Expand::AnalyzeSignal(int16_t* random_vector) {
341 int32_t auto_correlation[kUnvoicedLpcOrder + 1];
342 int16_t reflection_coeff[kUnvoicedLpcOrder];
343 int16_t correlation_vector[kMaxSampleRate / 8000 * 102];
344 int best_correlation_index[kNumCorrelationCandidates];
345 int16_t best_correlation[kNumCorrelationCandidates];
346 int16_t best_distortion_index[kNumCorrelationCandidates];
347 int16_t best_distortion[kNumCorrelationCandidates];
348 int32_t correlation_vector2[(99 * kMaxSampleRate / 8000) + 1];
349 int32_t best_distortion_w32[kNumCorrelationCandidates];
350 static const int kNoiseLpcOrder = BackgroundNoise::kMaxLpcOrder;
351 int16_t unvoiced_array_memory[kNoiseLpcOrder + kMaxSampleRate / 8000 * 125];
352 int16_t* unvoiced_vector = unvoiced_array_memory + kUnvoicedLpcOrder;
353
354 int fs_mult = fs_hz_ / 8000;
355
356 // Pre-calculate common multiplications with fs_mult.
357 int fs_mult_4 = fs_mult * 4;
358 int fs_mult_20 = fs_mult * 20;
359 int fs_mult_120 = fs_mult * 120;
360 int fs_mult_dist_len = fs_mult * kDistortionLength;
361 int fs_mult_lpc_analysis_len = fs_mult * kLpcAnalysisLength;
362
363 const size_t signal_length = 256 * fs_mult;
364 const int16_t* audio_history =
365 &(*sync_buffer_)[0][sync_buffer_->Size() - signal_length];
366
turaj@webrtc.org8d1cdaa2014-04-11 18:47:55 +0000367 // Initialize.
368 InitializeForAnExpandPeriod();
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000369
370 // Calculate correlation in downsampled domain (4 kHz sample rate).
Peter Kastingcb180972015-06-11 12:42:27 -0700371 int16_t correlation_scale;
turaj@webrtc.org58cd3162013-10-31 15:15:55 +0000372 int correlation_length = 51; // TODO(hlundin): Legacy bit-exactness.
373 // If it is decided to break bit-exactness |correlation_length| should be
374 // initialized to the return value of Correlation().
375 Correlation(audio_history, signal_length, correlation_vector,
376 &correlation_scale);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000377
378 // Find peaks in correlation vector.
379 DspHelper::PeakDetection(correlation_vector, correlation_length,
380 kNumCorrelationCandidates, fs_mult,
381 best_correlation_index, best_correlation);
382
383 // Adjust peak locations; cross-correlation lags start at 2.5 ms
384 // (20 * fs_mult samples).
385 best_correlation_index[0] += fs_mult_20;
386 best_correlation_index[1] += fs_mult_20;
387 best_correlation_index[2] += fs_mult_20;
388
389 // Calculate distortion around the |kNumCorrelationCandidates| best lags.
390 int distortion_scale = 0;
391 for (int i = 0; i < kNumCorrelationCandidates; i++) {
392 int16_t min_index = std::max(fs_mult_20,
393 best_correlation_index[i] - fs_mult_4);
394 int16_t max_index = std::min(fs_mult_120 - 1,
395 best_correlation_index[i] + fs_mult_4);
396 best_distortion_index[i] = DspHelper::MinDistortion(
397 &(audio_history[signal_length - fs_mult_dist_len]), min_index,
398 max_index, fs_mult_dist_len, &best_distortion_w32[i]);
399 distortion_scale = std::max(16 - WebRtcSpl_NormW32(best_distortion_w32[i]),
400 distortion_scale);
401 }
402 // Shift the distortion values to fit in 16 bits.
403 WebRtcSpl_VectorBitShiftW32ToW16(best_distortion, kNumCorrelationCandidates,
404 best_distortion_w32, distortion_scale);
405
406 // Find the maximizing index |i| of the cost function
407 // f[i] = best_correlation[i] / best_distortion[i].
turaj@webrtc.org58cd3162013-10-31 15:15:55 +0000408 int32_t best_ratio = std::numeric_limits<int32_t>::min();
Peter Kastingf045e4d2015-06-10 21:15:38 -0700409 int best_index = std::numeric_limits<int>::max();
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000410 for (int i = 0; i < kNumCorrelationCandidates; ++i) {
411 int32_t ratio;
412 if (best_distortion[i] > 0) {
413 ratio = (best_correlation[i] << 16) / best_distortion[i];
turaj@webrtc.org7126b382013-07-31 16:05:09 +0000414 } else if (best_correlation[i] == 0) {
415 ratio = 0; // No correlation set result to zero.
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000416 } else {
turaj@webrtc.org7126b382013-07-31 16:05:09 +0000417 ratio = std::numeric_limits<int32_t>::max(); // Denominator is zero.
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000418 }
419 if (ratio > best_ratio) {
420 best_index = i;
421 best_ratio = ratio;
422 }
423 }
424
425 int distortion_lag = best_distortion_index[best_index];
426 int correlation_lag = best_correlation_index[best_index];
427 max_lag_ = std::max(distortion_lag, correlation_lag);
428
429 // Calculate the exact best correlation in the range between
430 // |correlation_lag| and |distortion_lag|.
431 correlation_length = distortion_lag + 10;
432 correlation_length = std::min(correlation_length, fs_mult_120);
433 correlation_length = std::max(correlation_length, 60 * fs_mult);
434
435 int start_index = std::min(distortion_lag, correlation_lag);
436 int correlation_lags = WEBRTC_SPL_ABS_W16((distortion_lag-correlation_lag))
437 + 1;
438 assert(correlation_lags <= 99 * fs_mult + 1); // Cannot be larger.
439
440 for (size_t channel_ix = 0; channel_ix < num_channels_; ++channel_ix) {
441 ChannelParameters& parameters = channel_parameters_[channel_ix];
442 // Calculate suitable scaling.
443 int16_t signal_max = WebRtcSpl_MaxAbsValueW16(
444 &audio_history[signal_length - correlation_length - start_index
445 - correlation_lags],
446 correlation_length + start_index + correlation_lags - 1);
447 correlation_scale = ((31 - WebRtcSpl_NormW32(signal_max * signal_max))
448 + (31 - WebRtcSpl_NormW32(correlation_length))) - 31;
Peter Kastingcb180972015-06-11 12:42:27 -0700449 correlation_scale = std::max(static_cast<int16_t>(0), correlation_scale);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000450
451 // Calculate the correlation, store in |correlation_vector2|.
452 WebRtcSpl_CrossCorrelation(
453 correlation_vector2,
454 &(audio_history[signal_length - correlation_length]),
455 &(audio_history[signal_length - correlation_length - start_index]),
456 correlation_length, correlation_lags, correlation_scale, -1);
457
458 // Find maximizing index.
459 best_index = WebRtcSpl_MaxIndexW32(correlation_vector2, correlation_lags);
460 int32_t max_correlation = correlation_vector2[best_index];
461 // Compensate index with start offset.
462 best_index = best_index + start_index;
463
464 // Calculate energies.
465 int32_t energy1 = WebRtcSpl_DotProductWithScale(
466 &(audio_history[signal_length - correlation_length]),
467 &(audio_history[signal_length - correlation_length]),
468 correlation_length, correlation_scale);
469 int32_t energy2 = WebRtcSpl_DotProductWithScale(
470 &(audio_history[signal_length - correlation_length - best_index]),
471 &(audio_history[signal_length - correlation_length - best_index]),
472 correlation_length, correlation_scale);
473
474 // Calculate the correlation coefficient between the two portions of the
475 // signal.
Peter Kastingcb180972015-06-11 12:42:27 -0700476 int16_t corr_coefficient;
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000477 if ((energy1 > 0) && (energy2 > 0)) {
478 int energy1_scale = std::max(16 - WebRtcSpl_NormW32(energy1), 0);
479 int energy2_scale = std::max(16 - WebRtcSpl_NormW32(energy2), 0);
480 // Make sure total scaling is even (to simplify scale factor after sqrt).
481 if ((energy1_scale + energy2_scale) & 1) {
482 // If sum is odd, add 1 to make it even.
483 energy1_scale += 1;
484 }
Peter Kastingcb180972015-06-11 12:42:27 -0700485 int16_t scaled_energy1 = energy1 >> energy1_scale;
486 int16_t scaled_energy2 = energy2 >> energy2_scale;
487 int16_t sqrt_energy_product = WebRtcSpl_SqrtFloor(
488 scaled_energy1 * scaled_energy2);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000489 // Calculate max_correlation / sqrt(energy1 * energy2) in Q14.
490 int cc_shift = 14 - (energy1_scale + energy2_scale) / 2;
491 max_correlation = WEBRTC_SPL_SHIFT_W32(max_correlation, cc_shift);
492 corr_coefficient = WebRtcSpl_DivW32W16(max_correlation,
493 sqrt_energy_product);
Peter Kastingcb180972015-06-11 12:42:27 -0700494 corr_coefficient = std::min(static_cast<int16_t>(16384),
495 corr_coefficient); // Cap at 1.0 in Q14.
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000496 } else {
497 corr_coefficient = 0;
498 }
499
500 // Extract the two vectors expand_vector0 and expand_vector1 from
501 // |audio_history|.
turaj@webrtc.org362a55e2013-09-20 16:25:28 +0000502 int16_t expansion_length = static_cast<int16_t>(max_lag_ + overlap_length_);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000503 const int16_t* vector1 = &(audio_history[signal_length - expansion_length]);
504 const int16_t* vector2 = vector1 - distortion_lag;
505 // Normalize the second vector to the same energy as the first.
506 energy1 = WebRtcSpl_DotProductWithScale(vector1, vector1, expansion_length,
507 correlation_scale);
508 energy2 = WebRtcSpl_DotProductWithScale(vector2, vector2, expansion_length,
509 correlation_scale);
510 // Confirm that amplitude ratio sqrt(energy1 / energy2) is within 0.5 - 2.0,
511 // i.e., energy1 / energy1 is within 0.25 - 4.
512 int16_t amplitude_ratio;
513 if ((energy1 / 4 < energy2) && (energy1 > energy2 / 4)) {
514 // Energy constraint fulfilled. Use both vectors and scale them
515 // accordingly.
Peter Kastingcb180972015-06-11 12:42:27 -0700516 int16_t scaled_energy2 = std::max(16 - WebRtcSpl_NormW32(energy2), 0);
517 int16_t scaled_energy1 = scaled_energy2 - 13;
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000518 // Calculate scaled_energy1 / scaled_energy2 in Q13.
519 int32_t energy_ratio = WebRtcSpl_DivW32W16(
520 WEBRTC_SPL_SHIFT_W32(energy1, -scaled_energy1),
bjornv@webrtc.orga5ce7bb2014-10-20 08:24:54 +0000521 energy2 >> scaled_energy2);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000522 // Calculate sqrt ratio in Q13 (sqrt of en1/en2 in Q26).
523 amplitude_ratio = WebRtcSpl_SqrtFloor(energy_ratio << 13);
524 // Copy the two vectors and give them the same energy.
525 parameters.expand_vector0.Clear();
526 parameters.expand_vector0.PushBack(vector1, expansion_length);
527 parameters.expand_vector1.Clear();
528 if (parameters.expand_vector1.Size() <
529 static_cast<size_t>(expansion_length)) {
530 parameters.expand_vector1.Extend(
531 expansion_length - parameters.expand_vector1.Size());
532 }
533 WebRtcSpl_AffineTransformVector(&parameters.expand_vector1[0],
534 const_cast<int16_t*>(vector2),
535 amplitude_ratio,
536 4096,
537 13,
538 expansion_length);
539 } else {
540 // Energy change constraint not fulfilled. Only use last vector.
541 parameters.expand_vector0.Clear();
542 parameters.expand_vector0.PushBack(vector1, expansion_length);
543 // Copy from expand_vector0 to expand_vector1.
henrik.lundin@webrtc.orgf6ab6f82014-09-04 10:58:43 +0000544 parameters.expand_vector0.CopyTo(&parameters.expand_vector1);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000545 // Set the energy_ratio since it is used by muting slope.
546 if ((energy1 / 4 < energy2) || (energy2 == 0)) {
547 amplitude_ratio = 4096; // 0.5 in Q13.
548 } else {
549 amplitude_ratio = 16384; // 2.0 in Q13.
550 }
551 }
552
553 // Set the 3 lag values.
Peter Kastingf045e4d2015-06-10 21:15:38 -0700554 if (distortion_lag == correlation_lag) {
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000555 expand_lags_[0] = distortion_lag;
556 expand_lags_[1] = distortion_lag;
557 expand_lags_[2] = distortion_lag;
558 } else {
559 // |distortion_lag| and |correlation_lag| are not equal; use different
560 // combinations of the two.
561 // First lag is |distortion_lag| only.
562 expand_lags_[0] = distortion_lag;
563 // Second lag is the average of the two.
564 expand_lags_[1] = (distortion_lag + correlation_lag) / 2;
565 // Third lag is the average again, but rounding towards |correlation_lag|.
Peter Kastingf045e4d2015-06-10 21:15:38 -0700566 if (distortion_lag > correlation_lag) {
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000567 expand_lags_[2] = (distortion_lag + correlation_lag - 1) / 2;
568 } else {
569 expand_lags_[2] = (distortion_lag + correlation_lag + 1) / 2;
570 }
571 }
572
573 // Calculate the LPC and the gain of the filters.
574 // Calculate scale value needed for auto-correlation.
575 correlation_scale = WebRtcSpl_MaxAbsValueW16(
576 &(audio_history[signal_length - fs_mult_lpc_analysis_len]),
577 fs_mult_lpc_analysis_len);
578
579 correlation_scale = std::min(16 - WebRtcSpl_NormW32(correlation_scale), 0);
580 correlation_scale = std::max(correlation_scale * 2 + 7, 0);
581
582 // Calculate kUnvoicedLpcOrder + 1 lags of the auto-correlation function.
583 size_t temp_index = signal_length - fs_mult_lpc_analysis_len -
584 kUnvoicedLpcOrder;
585 // Copy signal to temporary vector to be able to pad with leading zeros.
586 int16_t* temp_signal = new int16_t[fs_mult_lpc_analysis_len
587 + kUnvoicedLpcOrder];
588 memset(temp_signal, 0,
589 sizeof(int16_t) * (fs_mult_lpc_analysis_len + kUnvoicedLpcOrder));
590 memcpy(&temp_signal[kUnvoicedLpcOrder],
591 &audio_history[temp_index + kUnvoicedLpcOrder],
592 sizeof(int16_t) * fs_mult_lpc_analysis_len);
593 WebRtcSpl_CrossCorrelation(auto_correlation,
594 &temp_signal[kUnvoicedLpcOrder],
595 &temp_signal[kUnvoicedLpcOrder],
596 fs_mult_lpc_analysis_len, kUnvoicedLpcOrder + 1,
597 correlation_scale, -1);
598 delete [] temp_signal;
599
600 // Verify that variance is positive.
601 if (auto_correlation[0] > 0) {
602 // Estimate AR filter parameters using Levinson-Durbin algorithm;
603 // kUnvoicedLpcOrder + 1 filter coefficients.
604 int16_t stability = WebRtcSpl_LevinsonDurbin(auto_correlation,
605 parameters.ar_filter,
606 reflection_coeff,
607 kUnvoicedLpcOrder);
608
609 // Keep filter parameters only if filter is stable.
610 if (stability != 1) {
611 // Set first coefficient to 4096 (1.0 in Q12).
612 parameters.ar_filter[0] = 4096;
613 // Set remaining |kUnvoicedLpcOrder| coefficients to zero.
614 WebRtcSpl_MemSetW16(parameters.ar_filter + 1, 0, kUnvoicedLpcOrder);
615 }
616 }
617
618 if (channel_ix == 0) {
619 // Extract a noise segment.
620 int16_t noise_length;
621 if (distortion_lag < 40) {
622 noise_length = 2 * distortion_lag + 30;
623 } else {
624 noise_length = distortion_lag + 30;
625 }
626 if (noise_length <= RandomVector::kRandomTableSize) {
627 memcpy(random_vector, RandomVector::kRandomTable,
628 sizeof(int16_t) * noise_length);
629 } else {
630 // Only applies to SWB where length could be larger than
631 // |kRandomTableSize|.
632 memcpy(random_vector, RandomVector::kRandomTable,
633 sizeof(int16_t) * RandomVector::kRandomTableSize);
634 assert(noise_length <= kMaxSampleRate / 8000 * 120 + 30);
635 random_vector_->IncreaseSeedIncrement(2);
636 random_vector_->Generate(
637 noise_length - RandomVector::kRandomTableSize,
638 &random_vector[RandomVector::kRandomTableSize]);
639 }
640 }
641
642 // Set up state vector and calculate scale factor for unvoiced filtering.
643 memcpy(parameters.ar_filter_state,
644 &(audio_history[signal_length - kUnvoicedLpcOrder]),
645 sizeof(int16_t) * kUnvoicedLpcOrder);
646 memcpy(unvoiced_vector - kUnvoicedLpcOrder,
647 &(audio_history[signal_length - 128 - kUnvoicedLpcOrder]),
648 sizeof(int16_t) * kUnvoicedLpcOrder);
bjornv@webrtc.orgc14e3572015-01-12 05:50:52 +0000649 WebRtcSpl_FilterMAFastQ12(&audio_history[signal_length - 128],
650 unvoiced_vector,
651 parameters.ar_filter,
652 kUnvoicedLpcOrder + 1,
653 128);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000654 int16_t unvoiced_prescale;
655 if (WebRtcSpl_MaxAbsValueW16(unvoiced_vector, 128) > 4000) {
656 unvoiced_prescale = 4;
657 } else {
658 unvoiced_prescale = 0;
659 }
660 int32_t unvoiced_energy = WebRtcSpl_DotProductWithScale(unvoiced_vector,
661 unvoiced_vector,
662 128,
663 unvoiced_prescale);
664
665 // Normalize |unvoiced_energy| to 28 or 29 bits to preserve sqrt() accuracy.
666 int16_t unvoiced_scale = WebRtcSpl_NormW32(unvoiced_energy) - 3;
667 // Make sure we do an odd number of shifts since we already have 7 shifts
668 // from dividing with 128 earlier. This will make the total scale factor
669 // even, which is suitable for the sqrt.
670 unvoiced_scale += ((unvoiced_scale & 0x1) ^ 0x1);
671 unvoiced_energy = WEBRTC_SPL_SHIFT_W32(unvoiced_energy, unvoiced_scale);
Peter Kastingb7e50542015-06-11 12:55:50 -0700672 int16_t unvoiced_gain =
673 static_cast<int16_t>(WebRtcSpl_SqrtFloor(unvoiced_energy));
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000674 parameters.ar_gain_scale = 13
675 + (unvoiced_scale + 7 - unvoiced_prescale) / 2;
676 parameters.ar_gain = unvoiced_gain;
677
678 // Calculate voice_mix_factor from corr_coefficient.
679 // Let x = corr_coefficient. Then, we compute:
680 // if (x > 0.48)
681 // voice_mix_factor = (-5179 + 19931x - 16422x^2 + 5776x^3) / 4096;
682 // else
683 // voice_mix_factor = 0;
684 if (corr_coefficient > 7875) {
685 int16_t x1, x2, x3;
Peter Kastingcb180972015-06-11 12:42:27 -0700686 x1 = corr_coefficient; // |corr_coefficient| is in Q14.
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000687 x2 = (x1 * x1) >> 14; // Shift 14 to keep result in Q14.
688 x3 = (x1 * x2) >> 14;
689 static const int kCoefficients[4] = { -5179, 19931, -16422, 5776 };
690 int32_t temp_sum = kCoefficients[0] << 14;
691 temp_sum += kCoefficients[1] * x1;
692 temp_sum += kCoefficients[2] * x2;
693 temp_sum += kCoefficients[3] * x3;
Peter Kastingf045e4d2015-06-10 21:15:38 -0700694 parameters.voice_mix_factor =
695 static_cast<int16_t>(std::min(temp_sum / 4096, 16384));
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000696 parameters.voice_mix_factor = std::max(parameters.voice_mix_factor,
697 static_cast<int16_t>(0));
698 } else {
699 parameters.voice_mix_factor = 0;
700 }
701
702 // Calculate muting slope. Reuse value from earlier scaling of
703 // |expand_vector0| and |expand_vector1|.
704 int16_t slope = amplitude_ratio;
705 if (slope > 12288) {
706 // slope > 1.5.
707 // Calculate (1 - (1 / slope)) / distortion_lag =
708 // (slope - 1) / (distortion_lag * slope).
709 // |slope| is in Q13, so 1 corresponds to 8192. Shift up to Q25 before
710 // the division.
711 // Shift the denominator from Q13 to Q5 before the division. The result of
712 // the division will then be in Q20.
Peter Kastingb7e50542015-06-11 12:55:50 -0700713 int16_t temp_ratio = WebRtcSpl_DivW32W16(
714 (slope - 8192) << 12,
715 static_cast<int16_t>((distortion_lag * slope) >> 8));
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000716 if (slope > 14746) {
717 // slope > 1.8.
718 // Divide by 2, with proper rounding.
719 parameters.mute_slope = (temp_ratio + 1) / 2;
720 } else {
721 // Divide by 8, with proper rounding.
722 parameters.mute_slope = (temp_ratio + 4) / 8;
723 }
724 parameters.onset = true;
725 } else {
726 // Calculate (1 - slope) / distortion_lag.
727 // Shift |slope| by 7 to Q20 before the division. The result is in Q20.
Peter Kastingb7e50542015-06-11 12:55:50 -0700728 parameters.mute_slope = WebRtcSpl_DivW32W16(
729 (8192 - slope) << 7, static_cast<int16_t>(distortion_lag));
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000730 if (parameters.voice_mix_factor <= 13107) {
731 // Make sure the mute factor decreases from 1.0 to 0.9 in no more than
732 // 6.25 ms.
733 // mute_slope >= 0.005 / fs_mult in Q20.
Peter Kastingcb180972015-06-11 12:42:27 -0700734 parameters.mute_slope = std::max(static_cast<int16_t>(5243 / fs_mult),
735 parameters.mute_slope);
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000736 } else if (slope > 8028) {
737 parameters.mute_slope = 0;
738 }
739 parameters.onset = false;
740 }
741 }
742}
743
Karl Wiberg7f6c4d42015-04-09 15:44:22 +0200744Expand::ChannelParameters::ChannelParameters()
745 : mute_factor(16384),
746 ar_gain(0),
747 ar_gain_scale(0),
748 voice_mix_factor(0),
749 current_voice_mix_factor(0),
750 onset(false),
751 mute_slope(0) {
752 memset(ar_filter, 0, sizeof(ar_filter));
753 memset(ar_filter_state, 0, sizeof(ar_filter_state));
754}
755
turaj@webrtc.org362a55e2013-09-20 16:25:28 +0000756int16_t Expand::Correlation(const int16_t* input, size_t input_length,
Peter Kastingcb180972015-06-11 12:42:27 -0700757 int16_t* output, int16_t* output_scale) const {
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000758 // Set parameters depending on sample rate.
759 const int16_t* filter_coefficients;
760 int16_t num_coefficients;
761 int16_t downsampling_factor;
762 if (fs_hz_ == 8000) {
763 num_coefficients = 3;
764 downsampling_factor = 2;
765 filter_coefficients = DspHelper::kDownsample8kHzTbl;
766 } else if (fs_hz_ == 16000) {
767 num_coefficients = 5;
768 downsampling_factor = 4;
769 filter_coefficients = DspHelper::kDownsample16kHzTbl;
770 } else if (fs_hz_ == 32000) {
771 num_coefficients = 7;
772 downsampling_factor = 8;
773 filter_coefficients = DspHelper::kDownsample32kHzTbl;
774 } else { // fs_hz_ == 48000.
775 num_coefficients = 7;
776 downsampling_factor = 12;
777 filter_coefficients = DspHelper::kDownsample48kHzTbl;
778 }
779
780 // Correlate from lag 10 to lag 60 in downsampled domain.
781 // (Corresponds to 20-120 for narrow-band, 40-240 for wide-band, and so on.)
782 static const int kCorrelationStartLag = 10;
783 static const int kNumCorrelationLags = 54;
784 static const int kCorrelationLength = 60;
785 // Downsample to 4 kHz sample rate.
786 static const int kDownsampledLength = kCorrelationStartLag
787 + kNumCorrelationLags + kCorrelationLength;
788 int16_t downsampled_input[kDownsampledLength];
789 static const int kFilterDelay = 0;
790 WebRtcSpl_DownsampleFast(
791 input + input_length - kDownsampledLength * downsampling_factor,
792 kDownsampledLength * downsampling_factor, downsampled_input,
793 kDownsampledLength, filter_coefficients, num_coefficients,
794 downsampling_factor, kFilterDelay);
795
796 // Normalize |downsampled_input| to using all 16 bits.
797 int16_t max_value = WebRtcSpl_MaxAbsValueW16(downsampled_input,
798 kDownsampledLength);
799 int16_t norm_shift = 16 - WebRtcSpl_NormW32(max_value);
800 WebRtcSpl_VectorBitShiftW16(downsampled_input, kDownsampledLength,
801 downsampled_input, norm_shift);
802
803 int32_t correlation[kNumCorrelationLags];
804 static const int kCorrelationShift = 6;
805 WebRtcSpl_CrossCorrelation(
806 correlation,
807 &downsampled_input[kDownsampledLength - kCorrelationLength],
808 &downsampled_input[kDownsampledLength - kCorrelationLength
809 - kCorrelationStartLag],
810 kCorrelationLength, kNumCorrelationLags, kCorrelationShift, -1);
811
812 // Normalize and move data from 32-bit to 16-bit vector.
813 int32_t max_correlation = WebRtcSpl_MaxAbsValueW32(correlation,
814 kNumCorrelationLags);
Peter Kastingb7e50542015-06-11 12:55:50 -0700815 int16_t norm_shift2 = static_cast<int16_t>(
816 std::max(18 - WebRtcSpl_NormW32(max_correlation), 0));
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000817 WebRtcSpl_VectorBitShiftW32ToW16(output, kNumCorrelationLags, correlation,
818 norm_shift2);
819 // Total scale factor (right shifts) of correlation value.
820 *output_scale = 2 * norm_shift + kCorrelationShift + norm_shift2;
821 return kNumCorrelationLags;
822}
823
824void Expand::UpdateLagIndex() {
825 current_lag_index_ = current_lag_index_ + lag_index_direction_;
826 // Change direction if needed.
827 if (current_lag_index_ <= 0) {
828 lag_index_direction_ = 1;
829 }
830 if (current_lag_index_ >= kNumLags - 1) {
831 lag_index_direction_ = -1;
832 }
833}
834
henrik.lundin@webrtc.orgd9faa462014-01-14 10:18:45 +0000835Expand* ExpandFactory::Create(BackgroundNoise* background_noise,
836 SyncBuffer* sync_buffer,
837 RandomVector* random_vector,
838 int fs,
839 size_t num_channels) const {
840 return new Expand(background_noise, sync_buffer, random_vector, fs,
841 num_channels);
842}
843
turaj@webrtc.org8d1cdaa2014-04-11 18:47:55 +0000844// TODO(turajs): This can be moved to BackgroundNoise class.
845void Expand::GenerateBackgroundNoise(int16_t* random_vector,
846 size_t channel,
Peter Kastingcb180972015-06-11 12:42:27 -0700847 int16_t mute_slope,
turaj@webrtc.org8d1cdaa2014-04-11 18:47:55 +0000848 bool too_many_expands,
849 size_t num_noise_samples,
850 int16_t* buffer) {
851 static const int kNoiseLpcOrder = BackgroundNoise::kMaxLpcOrder;
852 int16_t scaled_random_vector[kMaxSampleRate / 8000 * 125];
henrik.lundin@webrtc.orgea257842014-08-07 12:27:37 +0000853 assert(static_cast<size_t>(kMaxSampleRate / 8000 * 125) >= num_noise_samples);
turaj@webrtc.org8d1cdaa2014-04-11 18:47:55 +0000854 int16_t* noise_samples = &buffer[kNoiseLpcOrder];
855 if (background_noise_->initialized()) {
856 // Use background noise parameters.
857 memcpy(noise_samples - kNoiseLpcOrder,
858 background_noise_->FilterState(channel),
859 sizeof(int16_t) * kNoiseLpcOrder);
860
861 int dc_offset = 0;
862 if (background_noise_->ScaleShift(channel) > 1) {
863 dc_offset = 1 << (background_noise_->ScaleShift(channel) - 1);
864 }
865
866 // Scale random vector to correct energy level.
867 WebRtcSpl_AffineTransformVector(
868 scaled_random_vector, random_vector,
869 background_noise_->Scale(channel), dc_offset,
870 background_noise_->ScaleShift(channel),
871 static_cast<int>(num_noise_samples));
872
873 WebRtcSpl_FilterARFastQ12(scaled_random_vector, noise_samples,
874 background_noise_->Filter(channel),
875 kNoiseLpcOrder + 1,
876 static_cast<int>(num_noise_samples));
877
878 background_noise_->SetFilterState(
879 channel,
880 &(noise_samples[num_noise_samples - kNoiseLpcOrder]),
881 kNoiseLpcOrder);
882
883 // Unmute the background noise.
884 int16_t bgn_mute_factor = background_noise_->MuteFactor(channel);
henrik.lundin@webrtc.orgea257842014-08-07 12:27:37 +0000885 NetEq::BackgroundNoiseMode bgn_mode = background_noise_->mode();
886 if (bgn_mode == NetEq::kBgnFade && too_many_expands &&
887 bgn_mute_factor > 0) {
turaj@webrtc.org8d1cdaa2014-04-11 18:47:55 +0000888 // Fade BGN to zero.
889 // Calculate muting slope, approximately -2^18 / fs_hz.
Peter Kastingcb180972015-06-11 12:42:27 -0700890 int16_t mute_slope;
turaj@webrtc.org8d1cdaa2014-04-11 18:47:55 +0000891 if (fs_hz_ == 8000) {
892 mute_slope = -32;
893 } else if (fs_hz_ == 16000) {
894 mute_slope = -16;
895 } else if (fs_hz_ == 32000) {
896 mute_slope = -8;
897 } else {
898 mute_slope = -5;
899 }
900 // Use UnmuteSignal function with negative slope.
901 // |bgn_mute_factor| is in Q14. |mute_slope| is in Q20.
902 DspHelper::UnmuteSignal(noise_samples,
903 num_noise_samples,
904 &bgn_mute_factor,
905 mute_slope,
906 noise_samples);
907 } else if (bgn_mute_factor < 16384) {
henrik.lundin@webrtc.org023f12f2014-08-13 09:45:40 +0000908 // If mode is kBgnOn, or if kBgnFade has started fading,
909 // use regular |mute_slope|.
henrik.lundin@webrtc.orgea257842014-08-07 12:27:37 +0000910 if (!stop_muting_ && bgn_mode != NetEq::kBgnOff &&
911 !(bgn_mode == NetEq::kBgnFade && too_many_expands)) {
turaj@webrtc.org8d1cdaa2014-04-11 18:47:55 +0000912 DspHelper::UnmuteSignal(noise_samples,
913 static_cast<int>(num_noise_samples),
914 &bgn_mute_factor,
915 mute_slope,
916 noise_samples);
917 } else {
918 // kBgnOn and stop muting, or
919 // kBgnOff (mute factor is always 0), or
920 // kBgnFade has reached 0.
921 WebRtcSpl_AffineTransformVector(noise_samples, noise_samples,
922 bgn_mute_factor, 8192, 14,
923 static_cast<int>(num_noise_samples));
924 }
925 }
926 // Update mute_factor in BackgroundNoise class.
927 background_noise_->SetMuteFactor(channel, bgn_mute_factor);
928 } else {
929 // BGN parameters have not been initialized; use zero noise.
930 memset(noise_samples, 0, sizeof(int16_t) * num_noise_samples);
931 }
932}
933
Peter Kastingb7e50542015-06-11 12:55:50 -0700934void Expand::GenerateRandomVector(int16_t seed_increment,
turaj@webrtc.org8d1cdaa2014-04-11 18:47:55 +0000935 size_t length,
936 int16_t* random_vector) {
937 // TODO(turajs): According to hlundin The loop should not be needed. Should be
938 // just as good to generate all of the vector in one call.
939 size_t samples_generated = 0;
940 const size_t kMaxRandSamples = RandomVector::kRandomTableSize;
henrik.lundin@webrtc.orgea257842014-08-07 12:27:37 +0000941 while (samples_generated < length) {
turaj@webrtc.org8d1cdaa2014-04-11 18:47:55 +0000942 size_t rand_length = std::min(length - samples_generated, kMaxRandSamples);
943 random_vector_->IncreaseSeedIncrement(seed_increment);
944 random_vector_->Generate(rand_length, &random_vector[samples_generated]);
945 samples_generated += rand_length;
946 }
947}
henrik.lundin@webrtc.orgd9faa462014-01-14 10:18:45 +0000948
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +0000949} // namespace webrtc