From f331de64e2f874a42957027421f6adaf8b4122fc Mon Sep 17 00:00:00 2001 From: Rasmus Brandt Date: Tue, 8 Jan 2019 15:02:18 +0100 Subject: [PATCH] Remove unused VideoReceiveStream::Config::AddRtxBinding. Looks unused now? Bug: None Change-Id: Ic1567f17ee08278ff45f8d185ab8859515a840c7 Reviewed-on: https://webrtc-review.googlesource.com/c/116488 Reviewed-by: Niels Moller Commit-Queue: Rasmus Brandt Cr-Commit-Position: refs/heads/master@{#26172} --- call/video_receive_stream.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/call/video_receive_stream.h b/call/video_receive_stream.h index 8388356f35..54af2bd60b 100644 --- a/call/video_receive_stream.h +++ b/call/video_receive_stream.h @@ -180,11 +180,6 @@ class VideoReceiveStream { // Map from rtx payload type -> media payload type. // For RTX to be enabled, both an SSRC and this mapping are needed. std::map rtx_associated_payload_types; - // TODO(nisse): This is a temporary accessor function to enable - // reversing and renaming of the rtx_payload_types mapping. - void AddRtxBinding(int rtx_payload_type, int media_payload_type) { - rtx_associated_payload_types[rtx_payload_type] = media_payload_type; - } // RTP header extensions used for the received stream. std::vector extensions;