| 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 1fa694de690d71ec081cb0fbda0538cc740eab8a..76fc95e1de3a1a9f85926336aa73661a88b864af 100644
|
| --- a/webrtc/logging/rtc_event_log/rtc_event_log2text.cc
|
| +++ b/webrtc/logging/rtc_event_log/rtc_event_log2text.cc
|
| @@ -364,20 +364,20 @@ int main(int argc, char* argv[]) {
|
| for (size_t i = 0; i < parsed_stream.GetNumberOfEvents(); i++) {
|
| if (parsed_stream.GetEventType(i) ==
|
| webrtc::ParsedRtcEventLog::VIDEO_RECEIVER_CONFIG_EVENT) {
|
| - webrtc::VideoReceiveStream::Config config(nullptr);
|
| + webrtc::rtclog::StreamConfig config;
|
| parsed_stream.GetVideoReceiveConfig(i, &config);
|
|
|
| - global_streams.emplace_back(config.rtp.remote_ssrc,
|
| + global_streams.emplace_back(config.remote_ssrc,
|
| webrtc::MediaType::VIDEO,
|
| webrtc::kIncomingPacket);
|
| - global_streams.emplace_back(config.rtp.local_ssrc,
|
| + global_streams.emplace_back(config.local_ssrc,
|
| webrtc::MediaType::VIDEO,
|
| webrtc::kOutgoingPacket);
|
|
|
| if (!FLAGS_noconfig && !FLAGS_novideo && !FLAGS_noincoming) {
|
| std::cout << parsed_stream.GetTimestamp(i) << "\tVIDEO_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) ==
|
|
|