Clean up RTCPSender.

Reformat to current code style, remove non-const references, use
scoped_ptr, remove empty comments and dead code, etc..

BUG=
R=stefan@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/49019004

Cr-Commit-Position: refs/heads/master@{#9086}
This commit is contained in:
Erik Språng
2015-04-27 13:32:52 +02:00
parent 3c391cbabb
commit 61be2a4016
4 changed files with 1175 additions and 1345 deletions

View File

@ -500,12 +500,6 @@ void ModuleRtpRtcpImpl::SetRTCPStatus(const RTCPMethod method) {
rtcp_receiver_.SetRTCPStatus(method);
}
// Only for internal test.
uint32_t ModuleRtpRtcpImpl::LastSendReport(
int64_t& last_rtcptime) {
return rtcp_sender_.LastSendReport(last_rtcptime);
}
int32_t ModuleRtpRtcpImpl::SetCNAME(const char c_name[RTCP_CNAME_SIZE]) {
return rtcp_sender_.SetCNAME(c_name);
}