Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(313)

Side by Side Diff: webrtc/video/rtp_video_stream_receiver.cc

Issue 2974453002: Protected streams report RTP messages directly to the FlexFec streams (Closed)
Patch Set: . Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
11 #include "webrtc/video/rtp_video_stream_receiver.h" 11 #include "webrtc/video/rtp_video_stream_receiver.h"
12 12
13 #include <algorithm>
13 #include <utility> 14 #include <utility>
14 #include <vector> 15 #include <vector>
15 16
16 #include "webrtc/base/checks.h" 17 #include "webrtc/base/checks.h"
17 #include "webrtc/base/location.h" 18 #include "webrtc/base/location.h"
18 #include "webrtc/base/logging.h" 19 #include "webrtc/base/logging.h"
19 #include "webrtc/common_types.h" 20 #include "webrtc/common_types.h"
20 #include "webrtc/config.h" 21 #include "webrtc/config.h"
21 #include "webrtc/media/base/mediaconstants.h" 22 #include "webrtc/media/base/mediaconstants.h"
22 #include "webrtc/modules/pacing/packet_router.h" 23 #include "webrtc/modules/pacing/packet_router.h"
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 new NackModule(clock_, nack_sender, keyframe_request_sender)); 185 new NackModule(clock_, nack_sender, keyframe_request_sender));
185 process_thread_->RegisterModule(nack_module_.get(), RTC_FROM_HERE); 186 process_thread_->RegisterModule(nack_module_.get(), RTC_FROM_HERE);
186 } 187 }
187 188
188 packet_buffer_ = video_coding::PacketBuffer::Create( 189 packet_buffer_ = video_coding::PacketBuffer::Create(
189 clock_, kPacketBufferStartSize, kPacketBufferMaxSixe, this); 190 clock_, kPacketBufferStartSize, kPacketBufferMaxSixe, this);
190 reference_finder_.reset(new video_coding::RtpFrameReferenceFinder(this)); 191 reference_finder_.reset(new video_coding::RtpFrameReferenceFinder(this));
191 } 192 }
192 193
193 RtpVideoStreamReceiver::~RtpVideoStreamReceiver() { 194 RtpVideoStreamReceiver::~RtpVideoStreamReceiver() {
195 RTC_DCHECK(secondary_sinks_.empty());
196
194 if (nack_module_) { 197 if (nack_module_) {
195 process_thread_->DeRegisterModule(nack_module_.get()); 198 process_thread_->DeRegisterModule(nack_module_.get());
196 } 199 }
197 200
198 process_thread_->DeRegisterModule(rtp_rtcp_.get()); 201 process_thread_->DeRegisterModule(rtp_rtcp_.get());
199 202
200 packet_router_->RemoveReceiveRtpModule(rtp_rtcp_.get()); 203 packet_router_->RemoveReceiveRtpModule(rtp_rtcp_.get());
201 UpdateHistograms(); 204 UpdateHistograms();
202 } 205 }
203 206
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
354 ReceivePacket(packet.data(), packet.size(), header, in_order); 357 ReceivePacket(packet.data(), packet.size(), header, in_order);
355 // Update receive statistics after ReceivePacket. 358 // Update receive statistics after ReceivePacket.
356 // Receive statistics will be reset if the payload type changes (make sure 359 // Receive statistics will be reset if the payload type changes (make sure
357 // that the first packet is included in the stats). 360 // that the first packet is included in the stats).
358 if (!packet.recovered()) { 361 if (!packet.recovered()) {
359 // TODO(nisse): We should pass a recovered flag to stats, to aid 362 // TODO(nisse): We should pass a recovered flag to stats, to aid
360 // fixing bug bugs.webrtc.org/6339. 363 // fixing bug bugs.webrtc.org/6339.
361 rtp_receive_statistics_->IncomingPacket( 364 rtp_receive_statistics_->IncomingPacket(
362 header, packet.size(), IsPacketRetransmitted(header, in_order)); 365 header, packet.size(), IsPacketRetransmitted(header, in_order));
363 } 366 }
367
368 for (auto* secondary_sink : secondary_sinks_) {
369 secondary_sink->OnRtpPacket(packet);
danilchap 2017/07/19 12:07:25 can recovered packet trigger secondary_sink? shoul
eladalon 2017/07/21 14:42:08 * This is in line with the behavior before this CL
370 }
371 }
372
373 void RtpVideoStreamReceiver::AddSecondarySink(RtpPacketSinkInterface* sink) {
374 RTC_DCHECK(std::find(secondary_sinks_.cbegin(), secondary_sinks_.cend(),
375 sink) == secondary_sinks_.cend());
376 secondary_sinks_.push_back(sink);
377 }
378
379 void RtpVideoStreamReceiver::RemoveSecondarySink(
380 const RtpPacketSinkInterface* sink) {
381 auto it = std::find(secondary_sinks_.begin(), secondary_sinks_.end(), sink);
382 if (it == secondary_sinks_.end()) {
383 // We might be rolling-back a call whose setup failed mid-way. In such a
384 // case, it's simpler to remove "everything" rather than remember what
385 // has already been added.
386 LOG(LS_WARNING) << "Removal of unknown sink (" << sink << ").";
387 return;
388 }
389 secondary_sinks_.erase(it);
364 } 390 }
365 391
366 int32_t RtpVideoStreamReceiver::RequestKeyFrame() { 392 int32_t RtpVideoStreamReceiver::RequestKeyFrame() {
367 return rtp_rtcp_->RequestKeyFrame(); 393 return rtp_rtcp_->RequestKeyFrame();
368 } 394 }
369 395
370 bool RtpVideoStreamReceiver::IsUlpfecEnabled() const { 396 bool RtpVideoStreamReceiver::IsUlpfecEnabled() const {
371 return config_.rtp.ulpfec.ulpfec_payload_type != -1; 397 return config_.rtp.ulpfec.ulpfec_payload_type != -1;
372 } 398 }
373 399
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after
680 return; 706 return;
681 707
682 if (!sprop_decoder.DecodeSprop(sprop_base64_it->second.c_str())) 708 if (!sprop_decoder.DecodeSprop(sprop_base64_it->second.c_str()))
683 return; 709 return;
684 710
685 tracker_.InsertSpsPpsNalus(sprop_decoder.sps_nalu(), 711 tracker_.InsertSpsPpsNalus(sprop_decoder.sps_nalu(),
686 sprop_decoder.pps_nalu()); 712 sprop_decoder.pps_nalu());
687 } 713 }
688 714
689 } // namespace webrtc 715 } // namespace webrtc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698