Print RTCP of unknown RTPFB and PSFB type in rtc_event_log2text.

Bug: None
Change-Id: If51f3d41f0e7b606fc66439b2b7ca4d34a4d206f
Reviewed-on: https://webrtc-review.googlesource.com/7980
Reviewed-by: Elad Alon <eladalon@webrtc.org>
Commit-Queue: Björn Terelius <terelius@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#20241}
This commit is contained in:
Bjorn Terelius 2017-10-10 13:38:21 +02:00 committed by Commit Bot
parent 51e21aaa7a
commit fa4c0c768a

View File

@ -305,6 +305,8 @@ void PrintRtpFeedback(const webrtc::ParsedRtcEventLog& parsed_stream,
break;
}
default:
std::cout << log_timestamp << "\t"
<< "RTCP_RTPFB(UNKNOWN)" << std::endl;
break;
}
}
@ -354,6 +356,8 @@ void PrintPsFeedback(const webrtc::ParsedRtcEventLog& parsed_stream,
break;
}
default:
std::cout << log_timestamp << "\t"
<< "RTCP_PSFB(UNKNOWN)" << std::endl;
break;
}
}