wu@webrtc.org | 24301a6 | 2013-12-13 19:17:43 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2013 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 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame^] | 11 | #include "modules/audio_coding/acm2/call_statistics.h" |
wu@webrtc.org | 24301a6 | 2013-12-13 19:17:43 +0000 | [diff] [blame] | 12 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame^] | 13 | #include "rtc_base/checks.h" |
wu@webrtc.org | 24301a6 | 2013-12-13 19:17:43 +0000 | [diff] [blame] | 14 | |
| 15 | namespace webrtc { |
| 16 | |
| 17 | namespace acm2 { |
| 18 | |
henrik.lundin | 6348978 | 2016-09-20 01:47:12 -0700 | [diff] [blame] | 19 | void CallStatistics::DecodedByNetEq(AudioFrame::SpeechType speech_type, |
| 20 | bool muted) { |
wu@webrtc.org | 24301a6 | 2013-12-13 19:17:43 +0000 | [diff] [blame] | 21 | ++decoding_stat_.calls_to_neteq; |
henrik.lundin | 6348978 | 2016-09-20 01:47:12 -0700 | [diff] [blame] | 22 | if (muted) { |
| 23 | ++decoding_stat_.decoded_muted_output; |
| 24 | } |
wu@webrtc.org | 24301a6 | 2013-12-13 19:17:43 +0000 | [diff] [blame] | 25 | switch (speech_type) { |
| 26 | case AudioFrame::kNormalSpeech: { |
| 27 | ++decoding_stat_.decoded_normal; |
| 28 | break; |
| 29 | } |
| 30 | case AudioFrame::kPLC: { |
| 31 | ++decoding_stat_.decoded_plc; |
| 32 | break; |
| 33 | } |
| 34 | case AudioFrame::kCNG: { |
| 35 | ++decoding_stat_.decoded_cng; |
| 36 | break; |
| 37 | } |
| 38 | case AudioFrame::kPLCCNG: { |
| 39 | ++decoding_stat_.decoded_plc_cng; |
| 40 | break; |
| 41 | } |
| 42 | case AudioFrame::kUndefined: { |
| 43 | // If the audio is decoded by NetEq, |kUndefined| is not an option. |
henrik.lundin | 6348978 | 2016-09-20 01:47:12 -0700 | [diff] [blame] | 44 | RTC_NOTREACHED(); |
wu@webrtc.org | 24301a6 | 2013-12-13 19:17:43 +0000 | [diff] [blame] | 45 | } |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | void CallStatistics::DecodedBySilenceGenerator() { |
| 50 | ++decoding_stat_.calls_to_silence_generator; |
| 51 | } |
| 52 | |
| 53 | const AudioDecodingCallStats& CallStatistics::GetDecodingStatistics() const { |
| 54 | return decoding_stat_; |
| 55 | } |
| 56 | |
| 57 | } // namespace acm2 |
| 58 | |
| 59 | } // namespace webrtc |