Remove temporary AddRtxInfo member function.

BUG=webrtc:7011

Review-Url: https://codereview.webrtc.org/2657253002
Cr-Commit-Position: refs/heads/master@{#16441}
This commit is contained in:
brandtr 2017-02-06 02:34:25 -08:00 committed by Commit bot
parent d44ce0563f
commit 60f7c633f9

View File

@ -150,13 +150,6 @@ class VideoReceiveStream {
// For RTX to be enabled, both an SSRC and this mapping are needed.
std::map<int, int> rtx_payload_types;
// TODO(brandtr): Remove this member function when internal project has
// been updated.
void AddRtxInfo(int media_pt, int rtx_pt, uint32_t new_rtx_ssrc) {
rtx_ssrc = new_rtx_ssrc;
rtx_payload_types[media_pt] = rtx_pt;
}
// RTP header extensions used for the received stream.
std::vector<RtpExtension> extensions;
} rtp;