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

Unified Diff: webrtc/voice_engine/transmit_mixer.cc

Issue 2964593002: Adding stats that can be used to compute output audio levels. (Closed)
Patch Set: Add test coverage in AudioSendStreamTest. Created 3 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/voice_engine/transmit_mixer.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/voice_engine/transmit_mixer.cc
diff --git a/webrtc/voice_engine/transmit_mixer.cc b/webrtc/voice_engine/transmit_mixer.cc
index 6796f8457c5e5b3060920c6be9995b8f739612b2..b620d6f6ebd3b0369cd12c20333033aa57c38b65 100644
--- a/webrtc/voice_engine/transmit_mixer.cc
+++ b/webrtc/voice_engine/transmit_mixer.cc
@@ -308,6 +308,20 @@ TransmitMixer::PrepareDemux(const void* audioSamples,
// --- Measure audio level of speech after all processing.
_audioLevel.ComputeLevel(_audioFrame);
+
+ // See the description for "totalAudioEnergy" in the WebRTC stats spec
+ // (https://w3c.github.io/webrtc-stats/#dom-rtcmediastreamtrackstats-totalaudioenergy)
+ // for an explanation of these formulas. In short, we need a value that can
+ // be used to compute RMS audio levels over different time intervals, by
+ // taking the difference between the results from two getStats calls. To do
+ // this, the value needs to be of units "squared sample value * time".
+ double additional_energy =
+ static_cast<double>(_audioLevel.LevelFullRange()) / INT16_MAX;
+ additional_energy *= additional_energy;
+ double sample_duration = static_cast<double>(nSamples) / samplesPerSec;
+ totalInputEnergy_ += additional_energy * sample_duration;
+ totalInputDuration_ += sample_duration;
+
return 0;
}
@@ -851,6 +865,14 @@ int16_t TransmitMixer::AudioLevelFullRange() const
return _audioLevel.LevelFullRange();
}
+double TransmitMixer::GetTotalInputEnergy() const {
+ return totalInputEnergy_;
+}
+
+double TransmitMixer::GetTotalInputDuration() const {
+ return totalInputDuration_;
+}
+
bool TransmitMixer::IsRecordingCall()
{
return _fileCallRecording;
« no previous file with comments | « webrtc/voice_engine/transmit_mixer.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698