Chromium Code Reviews| Index: webrtc/audio/audio_send_stream.cc |
| diff --git a/webrtc/audio/audio_send_stream.cc b/webrtc/audio/audio_send_stream.cc |
| index f8ee3ab565d52f91cdce7ea8523fc2ccc00493d5..e6b58328b6728b7e1d27934582c0b6b85fa1bdc6 100644 |
| --- a/webrtc/audio/audio_send_stream.cc |
| +++ b/webrtc/audio/audio_send_stream.cc |
| @@ -279,6 +279,10 @@ webrtc::AudioSendStream::Stats AudioSendStream::GetStats() const { |
| stats.audio_level = base->transmit_mixer()->AudioLevelFullRange(); |
| RTC_DCHECK_LE(0, stats.audio_level); |
| + // TODO(zstein): Consistent use of input/output in names. |
|
Taylor Brandstetter
2017/07/06 17:57:56
Can this be fixed before this CL lands? I'd consis
Zach Stein
2017/07/06 18:07:34
Done.
|
| + stats.total_output_energy = base->transmit_mixer()->GetTotalInputEnergy(); |
| + stats.total_output_duration = base->transmit_mixer()->GetTotalInputDuration(); |
| + |
| RTC_DCHECK(audio_state_->audio_processing()); |
| auto audio_processing_stats = |
| audio_state_->audio_processing()->GetStatistics(); |