Remove unused parameters from VCMReceiver::InsertPacket().
BUG=
R=pbos@webrtc.org
Review URL: https://codereview.webrtc.org/2094183004 .
Cr-Commit-Position: refs/heads/master@{#13309}
diff --git a/webrtc/modules/video_coding/video_receiver.cc b/webrtc/modules/video_coding/video_receiver.cc
index a832e21..d42d053 100644
--- a/webrtc/modules/video_coding/video_receiver.cc
+++ b/webrtc/modules/video_coding/video_receiver.cc
@@ -410,8 +410,7 @@
payloadLength = 0;
}
const VCMPacket packet(incomingPayload, payloadLength, rtpInfo);
- int32_t ret = _receiver.InsertPacket(packet, rtpInfo.type.Video.width,
- rtpInfo.type.Video.height);
+ int32_t ret = _receiver.InsertPacket(packet);
// TODO(holmer): Investigate if this somehow should use the key frame
// request scheduling to throttle the requests.