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

Unified Diff: webrtc/call/call.cc

Issue 2353543003: Added logging for audio send/receive stream configs. (Closed)
Patch Set: Added code for parsing the audio send/receive configs. 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | webrtc/call/mock/mock_rtc_event_log.h » ('j') | webrtc/call/rtc_event_log_parser.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/call/call.cc
diff --git a/webrtc/call/call.cc b/webrtc/call/call.cc
index 2cc296dd36e9de80417f817d38e66afae6ccee18..81a206ae607b53b86439f5751182665f07c50223 100644
--- a/webrtc/call/call.cc
+++ b/webrtc/call/call.cc
@@ -378,6 +378,7 @@ webrtc::AudioSendStream* Call::CreateAudioSendStream(
const webrtc::AudioSendStream::Config& config) {
TRACE_EVENT0("webrtc", "Call::CreateAudioSendStream");
RTC_DCHECK(configuration_thread_checker_.CalledOnValidThread());
+ event_log_->LogAudioSendStreamConfig(config);
AudioSendStream* send_stream = new AudioSendStream(
config, config_.audio_state, &worker_queue_, congestion_controller_.get(),
bitrate_allocator_.get());
@@ -415,6 +416,7 @@ webrtc::AudioReceiveStream* Call::CreateAudioReceiveStream(
const webrtc::AudioReceiveStream::Config& config) {
TRACE_EVENT0("webrtc", "Call::CreateAudioReceiveStream");
RTC_DCHECK(configuration_thread_checker_.CalledOnValidThread());
+ event_log_->LogAudioReceiveStreamConfig(config);
AudioReceiveStream* receive_stream =
new AudioReceiveStream(congestion_controller_.get(), config,
config_.audio_state, event_log_.get());
« no previous file with comments | « no previous file | webrtc/call/mock/mock_rtc_event_log.h » ('j') | webrtc/call/rtc_event_log_parser.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698