| 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/acm2/audio_coding_module_impl.h" | 11 #include "webrtc/modules/audio_coding/acm2/audio_coding_module_impl.h" |
| 12 | 12 |
| 13 #include <assert.h> | 13 #include <assert.h> |
| 14 #include <stdlib.h> | 14 #include <stdlib.h> |
| 15 #include <vector> | 15 #include <vector> |
| 16 | 16 |
| 17 #include "webrtc/base/checks.h" | 17 #include "webrtc/base/checks.h" |
| 18 #include "webrtc/base/safe_conversions.h" | 18 #include "webrtc/base/numerics/safe_conversions.h" |
| 19 #include "webrtc/engine_configurations.h" | 19 #include "webrtc/engine_configurations.h" |
| 20 #include "webrtc/modules/audio_coding/include/audio_coding_module_typedefs.h" | 20 #include "webrtc/modules/audio_coding/include/audio_coding_module_typedefs.h" |
| 21 #include "webrtc/modules/audio_coding/acm2/acm_common_defs.h" | 21 #include "webrtc/modules/audio_coding/acm2/acm_common_defs.h" |
| 22 #include "webrtc/modules/audio_coding/acm2/acm_resampler.h" | 22 #include "webrtc/modules/audio_coding/acm2/acm_resampler.h" |
| 23 #include "webrtc/modules/audio_coding/acm2/call_statistics.h" | 23 #include "webrtc/modules/audio_coding/acm2/call_statistics.h" |
| 24 #include "webrtc/system_wrappers/include/logging.h" | 24 #include "webrtc/system_wrappers/include/logging.h" |
| 25 #include "webrtc/system_wrappers/include/metrics.h" | 25 #include "webrtc/system_wrappers/include/metrics.h" |
| 26 #include "webrtc/system_wrappers/include/rw_lock_wrapper.h" | 26 #include "webrtc/system_wrappers/include/rw_lock_wrapper.h" |
| 27 #include "webrtc/system_wrappers/include/trace.h" | 27 #include "webrtc/system_wrappers/include/trace.h" |
| 28 #include "webrtc/typedefs.h" | 28 #include "webrtc/typedefs.h" |
| (...skipping 788 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 817 return receiver_.LeastRequiredDelayMs(); | 817 return receiver_.LeastRequiredDelayMs(); |
| 818 } | 818 } |
| 819 | 819 |
| 820 void AudioCodingModuleImpl::GetDecodingCallStatistics( | 820 void AudioCodingModuleImpl::GetDecodingCallStatistics( |
| 821 AudioDecodingCallStats* call_stats) const { | 821 AudioDecodingCallStats* call_stats) const { |
| 822 receiver_.GetDecodingCallStatistics(call_stats); | 822 receiver_.GetDecodingCallStatistics(call_stats); |
| 823 } | 823 } |
| 824 | 824 |
| 825 } // namespace acm2 | 825 } // namespace acm2 |
| 826 } // namespace webrtc | 826 } // namespace webrtc |
| OLD | NEW |