Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(44)

Side by Side Diff: webrtc/modules/audio_coding/neteq/neteq_impl.cc

Issue 1753293002: Safe numeric library: base/numerics (copied from Chromium) (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: safe_math[_impl].h updated for WebRTC (Check delta with PS3) Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/neteq_impl.h" 11 #include "webrtc/modules/audio_coding/neteq/neteq_impl.h"
12 12
13 #include <assert.h> 13 #include <assert.h>
14 #include <memory.h> // memset 14 #include <memory.h> // memset
15 15
16 #include <algorithm> 16 #include <algorithm>
17 17
18 #include "webrtc/base/checks.h" 18 #include "webrtc/base/checks.h"
19 #include "webrtc/base/logging.h" 19 #include "webrtc/base/logging.h"
20 #include "webrtc/base/safe_conversions.h"
21 #include "webrtc/base/trace_event.h" 20 #include "webrtc/base/trace_event.h"
21 #include "webrtc/base/numerics/safe_conversions.h"
22 #include "webrtc/common_audio/signal_processing/include/signal_processing_librar y.h" 22 #include "webrtc/common_audio/signal_processing/include/signal_processing_librar y.h"
23 #include "webrtc/modules/audio_coding/codecs/audio_decoder.h" 23 #include "webrtc/modules/audio_coding/codecs/audio_decoder.h"
24 #include "webrtc/modules/audio_coding/neteq/accelerate.h" 24 #include "webrtc/modules/audio_coding/neteq/accelerate.h"
25 #include "webrtc/modules/audio_coding/neteq/background_noise.h" 25 #include "webrtc/modules/audio_coding/neteq/background_noise.h"
26 #include "webrtc/modules/audio_coding/neteq/buffer_level_filter.h" 26 #include "webrtc/modules/audio_coding/neteq/buffer_level_filter.h"
27 #include "webrtc/modules/audio_coding/neteq/comfort_noise.h" 27 #include "webrtc/modules/audio_coding/neteq/comfort_noise.h"
28 #include "webrtc/modules/audio_coding/neteq/decision_logic.h" 28 #include "webrtc/modules/audio_coding/neteq/decision_logic.h"
29 #include "webrtc/modules/audio_coding/neteq/decoder_database.h" 29 #include "webrtc/modules/audio_coding/neteq/decoder_database.h"
30 #include "webrtc/modules/audio_coding/neteq/defines.h" 30 #include "webrtc/modules/audio_coding/neteq/defines.h"
31 #include "webrtc/modules/audio_coding/neteq/delay_manager.h" 31 #include "webrtc/modules/audio_coding/neteq/delay_manager.h"
(...skipping 2011 matching lines...) Expand 10 before | Expand all | Expand 10 after
2043 2043
2044 void NetEqImpl::CreateDecisionLogic() { 2044 void NetEqImpl::CreateDecisionLogic() {
2045 decision_logic_.reset(DecisionLogic::Create(fs_hz_, output_size_samples_, 2045 decision_logic_.reset(DecisionLogic::Create(fs_hz_, output_size_samples_,
2046 playout_mode_, 2046 playout_mode_,
2047 decoder_database_.get(), 2047 decoder_database_.get(),
2048 *packet_buffer_.get(), 2048 *packet_buffer_.get(),
2049 delay_manager_.get(), 2049 delay_manager_.get(),
2050 buffer_level_filter_.get())); 2050 buffer_level_filter_.get()));
2051 } 2051 }
2052 } // namespace webrtc 2052 } // namespace webrtc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698