commit | b8ba4d8109f394413c6b37402aa21ff24e186126 | [log] [tgz] |
---|---|---|
author | roosa@google.com <roosa@google.com@4adac7df-926f-26a2-2b94-8c16560cd09d> | Fri Dec 14 00:06:18 2012 +0000 |
committer | roosa@google.com <roosa@google.com@4adac7df-926f-26a2-2b94-8c16560cd09d> | Fri Dec 14 00:06:18 2012 +0000 |
tree | bf09ce0e604ae0445c43cfdf911fa6288f0e3a73 | |
parent | c454fab03bc9856a16bd5df828bd8f1594cde0a2 [diff] [blame] |
Add number of inserted samples to NetEq statistics. BUG= Review URL: https://webrtc-codereview.appspot.com/964030 git-svn-id: http://webrtc.googlecode.com/svn/trunk@3289 4adac7df-926f-26a2-2b94-8c16560cd09d
diff --git a/webrtc/modules/audio_coding/neteq/dsp.c b/webrtc/modules/audio_coding/neteq/dsp.c index d9873da..82c54ea 100644 --- a/webrtc/modules/audio_coding/neteq/dsp.c +++ b/webrtc/modules/audio_coding/neteq/dsp.c
@@ -365,12 +365,11 @@ int WebRtcNetEQ_ClearInCallStats(DSPInst_t *inst) { - /* Reset statistics counters */ inst->statInst.accelerateLength = 0; inst->statInst.expandLength = 0; inst->statInst.preemptiveLength = 0; - + inst->statInst.addedSamples = 0; return (0); } @@ -394,7 +393,6 @@ /* Reset statistics counters */ inst->statInst.expandedVoiceSamples = 0; inst->statInst.expandedNoiseSamples = 0; - return (0); }