aboutsummaryrefslogtreecommitdiff
path: root/media
diff options
context:
space:
mode:
authorMirko Bonadei <mbonadei@webrtc.org>2020-04-10 23:57:57 +0200
committerCommit Bot <commit-bot@chromium.org>2020-04-13 13:33:27 +0000
commit2c9926498f979c77837ee9548f6f107478fd37b0 (patch)
treecf07912366919bf8237306472b2b4231b845afd0 /media
parent9ef32bb3300632dc4f283df6e5e237a5dce31a24 (diff)
downloadwebrtc-2c9926498f979c77837ee9548f6f107478fd37b0.tar.gz
Remove std::vector<BandwidthEstimationInfo> template instantiation.
Bug: webrtc:10198 Change-Id: Ice162176ba333599f0c3c9520c704aa3d23c694d Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/173336 Reviewed-by: Stefan Holmer <stefan@webrtc.org> Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org> Cr-Commit-Position: refs/heads/master@{#31053}
Diffstat (limited to 'media')
-rw-r--r--media/base/media_channel.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/media/base/media_channel.h b/media/base/media_channel.h
index c2c1b56aab..4758cf52ba 100644
--- a/media/base/media_channel.h
+++ b/media/base/media_channel.h
@@ -714,15 +714,11 @@ struct VideoMediaInfo {
void Clear() {
senders.clear();
receivers.clear();
- bw_estimations.clear();
send_codecs.clear();
receive_codecs.clear();
}
std::vector<VideoSenderInfo> senders;
std::vector<VideoReceiverInfo> receivers;
- // Deprecated.
- // TODO(holmer): Remove once upstream projects no longer use this.
- std::vector<BandwidthEstimationInfo> bw_estimations;
RtpCodecParametersMap send_codecs;
RtpCodecParametersMap receive_codecs;
};