OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 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 | 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 | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
11 #include "webrtc/modules/audio_coding/neteq/expand.h" | 11 #include "webrtc/modules/audio_coding/neteq/expand.h" |
12 | 12 |
13 #include <assert.h> | 13 #include <assert.h> |
14 #include <string.h> // memset | 14 #include <string.h> // memset |
15 | 15 |
16 #include <algorithm> // min, max | 16 #include <algorithm> // min, max |
17 #include <limits> // numeric_limits<T> | 17 #include <limits> // numeric_limits<T> |
18 | 18 |
19 #include "webrtc/base/numerics/safe_conversions.h" | 19 #include "webrtc/base/safe_conversions.h" |
20 #include "webrtc/common_audio/signal_processing/include/signal_processing_librar
y.h" | 20 #include "webrtc/common_audio/signal_processing/include/signal_processing_librar
y.h" |
21 #include "webrtc/modules/audio_coding/neteq/background_noise.h" | 21 #include "webrtc/modules/audio_coding/neteq/background_noise.h" |
22 #include "webrtc/modules/audio_coding/neteq/dsp_helper.h" | 22 #include "webrtc/modules/audio_coding/neteq/dsp_helper.h" |
23 #include "webrtc/modules/audio_coding/neteq/random_vector.h" | 23 #include "webrtc/modules/audio_coding/neteq/random_vector.h" |
24 #include "webrtc/modules/audio_coding/neteq/statistics_calculator.h" | 24 #include "webrtc/modules/audio_coding/neteq/statistics_calculator.h" |
25 #include "webrtc/modules/audio_coding/neteq/sync_buffer.h" | 25 #include "webrtc/modules/audio_coding/neteq/sync_buffer.h" |
26 | 26 |
27 namespace webrtc { | 27 namespace webrtc { |
28 | 28 |
29 Expand::Expand(BackgroundNoise* background_noise, | 29 Expand::Expand(BackgroundNoise* background_noise, |
(...skipping 923 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
953 const size_t kMaxRandSamples = RandomVector::kRandomTableSize; | 953 const size_t kMaxRandSamples = RandomVector::kRandomTableSize; |
954 while (samples_generated < length) { | 954 while (samples_generated < length) { |
955 size_t rand_length = std::min(length - samples_generated, kMaxRandSamples); | 955 size_t rand_length = std::min(length - samples_generated, kMaxRandSamples); |
956 random_vector_->IncreaseSeedIncrement(seed_increment); | 956 random_vector_->IncreaseSeedIncrement(seed_increment); |
957 random_vector_->Generate(rand_length, &random_vector[samples_generated]); | 957 random_vector_->Generate(rand_length, &random_vector[samples_generated]); |
958 samples_generated += rand_length; | 958 samples_generated += rand_length; |
959 } | 959 } |
960 } | 960 } |
961 | 961 |
962 } // namespace webrtc | 962 } // namespace webrtc |
OLD | NEW |