Remove unnecessary static_cast in rtp_video_stream_receiver2

Bug: None
Change-Id: I8f7424c877e07ee585d46adc81b777577c43d796
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/231697
Reviewed-by: Ilya Nikolaevskiy <ilnik@webrtc.org>
Commit-Queue: Evan Shrubsole <eshr@google.com>
Cr-Commit-Position: refs/heads/main@{#34977}
This commit is contained in:
Evan Shrubsole 2021-09-10 17:09:51 +02:00 committed by WebRTC LUCI CQ
parent 7a4ab1a063
commit a43ffb32f2

View File

@ -861,8 +861,7 @@ void RtpVideoStreamReceiver2::OnAssembledFrame(
void RtpVideoStreamReceiver2::OnCompleteFrames(
RtpFrameReferenceFinder::ReturnVector frames) {
for (auto& frame : frames) {
RtpFrameObject* rtp_frame = static_cast<RtpFrameObject*>(frame.get());
last_seq_num_for_pic_id_[rtp_frame->Id()] = rtp_frame->last_seq_num();
last_seq_num_for_pic_id_[frame->Id()] = frame->last_seq_num();
last_completed_picture_id_ =
std::max(last_completed_picture_id_, frame->Id());