Index: webrtc/logging/rtc_event_log/rtc_event_log2text.cc |
diff --git a/webrtc/logging/rtc_event_log/rtc_event_log2text.cc b/webrtc/logging/rtc_event_log/rtc_event_log2text.cc |
index d2ee790944364aa9a468c0883cddb8d78048c7d0..da31615698137400b76d9744306a0d1c016f3e08 100644 |
--- a/webrtc/logging/rtc_event_log/rtc_event_log2text.cc |
+++ b/webrtc/logging/rtc_event_log/rtc_event_log2text.cc |
@@ -399,18 +399,18 @@ int main(int argc, char* argv[]) { |
} |
if (parsed_stream.GetEventType(i) == |
webrtc::ParsedRtcEventLog::AUDIO_RECEIVER_CONFIG_EVENT) { |
- webrtc::AudioReceiveStream::Config config; |
+ webrtc::rtclog::StreamConfig config; |
parsed_stream.GetAudioReceiveConfig(i, &config); |
- global_streams.emplace_back(config.rtp.remote_ssrc, |
+ global_streams.emplace_back(config.remote_ssrc, |
webrtc::MediaType::AUDIO, |
webrtc::kIncomingPacket); |
- global_streams.emplace_back(config.rtp.local_ssrc, |
+ global_streams.emplace_back(config.local_ssrc, |
webrtc::MediaType::AUDIO, |
webrtc::kOutgoingPacket); |
if (!FLAGS_noconfig && !FLAGS_noaudio && !FLAGS_noincoming) { |
std::cout << parsed_stream.GetTimestamp(i) << "\tAUDIO_RECV_CONFIG" |
- << "\tssrc=" << config.rtp.remote_ssrc |
- << "\tfeedback_ssrc=" << config.rtp.local_ssrc << std::endl; |
+ << "\tssrc=" << config.remote_ssrc |
+ << "\tfeedback_ssrc=" << config.local_ssrc << std::endl; |
} |
} |
if (parsed_stream.GetEventType(i) == |