Elevate NetEq short-term activity statistics to ACM level for logging.

Review URL: https://webrtc-codereview.appspot.com/1313004

git-svn-id: http://webrtc.googlecode.com/svn/trunk@3850 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
turaj@webrtc.org
2013-04-15 16:52:04 +00:00
parent 4b8de90dce
commit 92d1f07551
10 changed files with 151 additions and 1 deletions

View File

@ -181,6 +181,8 @@ int WebRtcNetEQ_PreEmptiveExpand(DSPInst_t *inst,
/* update statistics */
inst->statInst.preemptiveLength += w16_bestIndex;
/* Short-term activity statistics. */
inst->activity_stats.preemptive_expand_bgn_samples += w16_bestIndex;
return 0;
} /* end of special code for BGN mode */
@ -489,7 +491,8 @@ int WebRtcNetEQ_PreEmptiveExpand(DSPInst_t *inst,
/* Update in-call statistics */
inst->statInst.preemptiveLength += w16_bestIndex;
/* Short-term activity statistics. */
inst->activity_stats.preemptive_expand_normal_samples += w16_bestIndex;
return 0;
}
else