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

Side by Side Diff: webrtc/modules/audio_coding/acm2/call_statistics.cc

Issue 2341293002: Add new decoding statistics for muted output (Closed)
Patch Set: Updates after reviews Created 4 years, 3 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) 2013 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2013 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/call_statistics.h" 11 #include "webrtc/modules/audio_coding/acm2/call_statistics.h"
12 12
13 #include <assert.h> 13 #include "webrtc/base/checks.h"
14 14
15 namespace webrtc { 15 namespace webrtc {
16 16
17 namespace acm2 { 17 namespace acm2 {
18 18
19 void CallStatistics::DecodedByNetEq(AudioFrame::SpeechType speech_type) { 19 void CallStatistics::DecodedByNetEq(AudioFrame::SpeechType speech_type,
20 bool muted) {
20 ++decoding_stat_.calls_to_neteq; 21 ++decoding_stat_.calls_to_neteq;
22 if (muted) {
23 ++decoding_stat_.decoded_muted_output;
24 }
21 switch (speech_type) { 25 switch (speech_type) {
22 case AudioFrame::kNormalSpeech: { 26 case AudioFrame::kNormalSpeech: {
23 ++decoding_stat_.decoded_normal; 27 ++decoding_stat_.decoded_normal;
24 break; 28 break;
25 } 29 }
26 case AudioFrame::kPLC: { 30 case AudioFrame::kPLC: {
27 ++decoding_stat_.decoded_plc; 31 ++decoding_stat_.decoded_plc;
28 break; 32 break;
29 } 33 }
30 case AudioFrame::kCNG: { 34 case AudioFrame::kCNG: {
31 ++decoding_stat_.decoded_cng; 35 ++decoding_stat_.decoded_cng;
32 break; 36 break;
33 } 37 }
34 case AudioFrame::kPLCCNG: { 38 case AudioFrame::kPLCCNG: {
35 ++decoding_stat_.decoded_plc_cng; 39 ++decoding_stat_.decoded_plc_cng;
36 break; 40 break;
37 } 41 }
38 case AudioFrame::kUndefined: { 42 case AudioFrame::kUndefined: {
39 // If the audio is decoded by NetEq, |kUndefined| is not an option. 43 // If the audio is decoded by NetEq, |kUndefined| is not an option.
40 assert(false); 44 RTC_NOTREACHED();
41 } 45 }
42 } 46 }
43 } 47 }
44 48
45 void CallStatistics::DecodedBySilenceGenerator() { 49 void CallStatistics::DecodedBySilenceGenerator() {
46 ++decoding_stat_.calls_to_silence_generator; 50 ++decoding_stat_.calls_to_silence_generator;
47 } 51 }
48 52
49 const AudioDecodingCallStats& CallStatistics::GetDecodingStatistics() const { 53 const AudioDecodingCallStats& CallStatistics::GetDecodingStatistics() const {
50 return decoding_stat_; 54 return decoding_stat_;
51 } 55 }
52 56
53 } // namespace acm2 57 } // namespace acm2
54 58
55 } // namespace webrtc 59 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/modules/audio_coding/acm2/call_statistics.h ('k') | webrtc/modules/audio_coding/acm2/call_statistics_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698