Removed unused frame_size param from RtpFrameObject ctor.

Bug: webrtc:10979
Change-Id: Idde493dc7f5165e3ca173d5a38861b444b5904a4
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/153668
Commit-Queue: Philip Eliasson <philipel@webrtc.org>
Reviewed-by: Niels Moller <nisse@webrtc.org>
Reviewed-by: Ilya Nikolaevskiy <ilnik@webrtc.org>
Reviewed-by: Sam Zackrisson <saza@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#29253}
This commit is contained in:
philipel
2019-09-20 12:35:01 +02:00
committed by Commit Bot
parent 48b32b748e
commit 0cff4fce55
6 changed files with 9 additions and 11 deletions

View File

@ -437,8 +437,8 @@ std::vector<std::unique_ptr<RtpFrameObject>> PacketBuffer::FindFrames(
missing_packets_.upper_bound(seq_num));
auto frame = std::make_unique<RtpFrameObject>(
this, start_seq_num, seq_num, frame_size, max_nack_count,
min_recv_time, max_recv_time, RtpPacketInfos(std::move(packet_infos)),
this, start_seq_num, seq_num, max_nack_count, min_recv_time,
max_recv_time, RtpPacketInfos(std::move(packet_infos)),
GetEncodedImageBuffer(frame_size, start_seq_num, seq_num));
found_frames.emplace_back(std::move(frame));