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

Side by Side Diff: webrtc/call/call.cc

Issue 2553863003: Parse FlexFEC RTP headers in Call and add integration with BWE. (Closed)
Patch Set: danilchap comments 2. Created 4 years 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
« no previous file with comments | « webrtc/api/call/flexfec_receive_stream.h ('k') | webrtc/call/flexfec_receive_stream.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2013 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 <string.h> 11 #include <string.h>
12 #include <algorithm> 12 #include <algorithm>
13 #include <map> 13 #include <map>
14 #include <memory> 14 #include <memory>
15 #include <set> 15 #include <set>
16 #include <utility> 16 #include <utility>
17 #include <vector> 17 #include <vector>
18 18
19 #include "webrtc/audio/audio_receive_stream.h" 19 #include "webrtc/audio/audio_receive_stream.h"
20 #include "webrtc/audio/audio_send_stream.h" 20 #include "webrtc/audio/audio_send_stream.h"
21 #include "webrtc/audio/audio_state.h" 21 #include "webrtc/audio/audio_state.h"
22 #include "webrtc/audio/scoped_voe_interface.h" 22 #include "webrtc/audio/scoped_voe_interface.h"
23 #include "webrtc/base/basictypes.h" 23 #include "webrtc/base/basictypes.h"
24 #include "webrtc/base/checks.h" 24 #include "webrtc/base/checks.h"
25 #include "webrtc/base/constructormagic.h" 25 #include "webrtc/base/constructormagic.h"
26 #include "webrtc/base/logging.h" 26 #include "webrtc/base/logging.h"
27 #include "webrtc/base/optional.h"
27 #include "webrtc/base/task_queue.h" 28 #include "webrtc/base/task_queue.h"
28 #include "webrtc/base/thread_annotations.h" 29 #include "webrtc/base/thread_annotations.h"
29 #include "webrtc/base/thread_checker.h" 30 #include "webrtc/base/thread_checker.h"
30 #include "webrtc/base/trace_event.h" 31 #include "webrtc/base/trace_event.h"
31 #include "webrtc/call/bitrate_allocator.h" 32 #include "webrtc/call/bitrate_allocator.h"
32 #include "webrtc/call/call.h" 33 #include "webrtc/call/call.h"
33 #include "webrtc/call/flexfec_receive_stream.h" 34 #include "webrtc/call/flexfec_receive_stream.h"
34 #include "webrtc/config.h" 35 #include "webrtc/config.h"
35 #include "webrtc/logging/rtc_event_log/rtc_event_log.h" 36 #include "webrtc/logging/rtc_event_log/rtc_event_log.h"
36 #include "webrtc/modules/bitrate_controller/include/bitrate_controller.h" 37 #include "webrtc/modules/bitrate_controller/include/bitrate_controller.h"
37 #include "webrtc/modules/congestion_controller/include/congestion_controller.h" 38 #include "webrtc/modules/congestion_controller/include/congestion_controller.h"
38 #include "webrtc/modules/pacing/paced_sender.h" 39 #include "webrtc/modules/pacing/paced_sender.h"
39 #include "webrtc/modules/rtp_rtcp/include/flexfec_receiver.h" 40 #include "webrtc/modules/rtp_rtcp/include/flexfec_receiver.h"
40 #include "webrtc/modules/rtp_rtcp/include/rtp_header_parser.h" 41 #include "webrtc/modules/rtp_rtcp/include/rtp_header_parser.h"
41 #include "webrtc/modules/rtp_rtcp/source/byte_io.h" 42 #include "webrtc/modules/rtp_rtcp/source/byte_io.h"
43 #include "webrtc/modules/rtp_rtcp/source/rtp_header_extension.h"
44 #include "webrtc/modules/rtp_rtcp/source/rtp_header_extensions.h"
45 #include "webrtc/modules/rtp_rtcp/source/rtp_packet_received.h"
42 #include "webrtc/modules/utility/include/process_thread.h" 46 #include "webrtc/modules/utility/include/process_thread.h"
43 #include "webrtc/system_wrappers/include/clock.h" 47 #include "webrtc/system_wrappers/include/clock.h"
44 #include "webrtc/system_wrappers/include/cpu_info.h" 48 #include "webrtc/system_wrappers/include/cpu_info.h"
45 #include "webrtc/system_wrappers/include/critical_section_wrapper.h" 49 #include "webrtc/system_wrappers/include/critical_section_wrapper.h"
46 #include "webrtc/system_wrappers/include/metrics.h" 50 #include "webrtc/system_wrappers/include/metrics.h"
47 #include "webrtc/system_wrappers/include/rw_lock_wrapper.h" 51 #include "webrtc/system_wrappers/include/rw_lock_wrapper.h"
48 #include "webrtc/system_wrappers/include/trace.h" 52 #include "webrtc/system_wrappers/include/trace.h"
49 #include "webrtc/video/call_stats.h" 53 #include "webrtc/video/call_stats.h"
50 #include "webrtc/video/send_delay_stats.h" 54 #include "webrtc/video/send_delay_stats.h"
51 #include "webrtc/video/stats_counter.h" 55 #include "webrtc/video/stats_counter.h"
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 104
101 // Implements PacketReceiver. 105 // Implements PacketReceiver.
102 DeliveryStatus DeliverPacket(MediaType media_type, 106 DeliveryStatus DeliverPacket(MediaType media_type,
103 const uint8_t* packet, 107 const uint8_t* packet,
104 size_t length, 108 size_t length,
105 const PacketTime& packet_time) override; 109 const PacketTime& packet_time) override;
106 110
107 // Implements RecoveredPacketReceiver. 111 // Implements RecoveredPacketReceiver.
108 bool OnRecoveredPacket(const uint8_t* packet, size_t length) override; 112 bool OnRecoveredPacket(const uint8_t* packet, size_t length) override;
109 113
114 void NotifyBweOfReceivedPacket(const RtpPacketReceived& packet);
115
110 void SetBitrateConfig( 116 void SetBitrateConfig(
111 const webrtc::Call::Config::BitrateConfig& bitrate_config) override; 117 const webrtc::Call::Config::BitrateConfig& bitrate_config) override;
112 118
113 void SignalChannelNetworkState(MediaType media, NetworkState state) override; 119 void SignalChannelNetworkState(MediaType media, NetworkState state) override;
114 120
115 void OnTransportOverheadChanged(MediaType media, 121 void OnTransportOverheadChanged(MediaType media,
116 int transport_overhead_per_packet) override; 122 int transport_overhead_per_packet) override;
117 123
118 void OnNetworkRouteChanged(const std::string& transport_name, 124 void OnNetworkRouteChanged(const std::string& transport_name,
119 const rtc::NetworkRoute& network_route) override; 125 const rtc::NetworkRoute& network_route) override;
(...skipping 27 matching lines...) Expand all
147 153
148 VoiceEngine* voice_engine() { 154 VoiceEngine* voice_engine() {
149 internal::AudioState* audio_state = 155 internal::AudioState* audio_state =
150 static_cast<internal::AudioState*>(config_.audio_state.get()); 156 static_cast<internal::AudioState*>(config_.audio_state.get());
151 if (audio_state) 157 if (audio_state)
152 return audio_state->voice_engine(); 158 return audio_state->voice_engine();
153 else 159 else
154 return nullptr; 160 return nullptr;
155 } 161 }
156 162
163 rtc::Optional<RtpPacketReceived> ParseRtpPacket(const uint8_t* packet,
164 size_t length,
165 const PacketTime& packet_time)
166 SHARED_LOCKS_REQUIRED(receive_crit_);
167
157 void UpdateSendHistograms() EXCLUSIVE_LOCKS_REQUIRED(&bitrate_crit_); 168 void UpdateSendHistograms() EXCLUSIVE_LOCKS_REQUIRED(&bitrate_crit_);
158 void UpdateReceiveHistograms(); 169 void UpdateReceiveHistograms();
159 void UpdateHistograms(); 170 void UpdateHistograms();
160 void UpdateAggregateNetworkState(); 171 void UpdateAggregateNetworkState();
161 172
162 Clock* const clock_; 173 Clock* const clock_;
163 174
164 const int num_cpu_cores_; 175 const int num_cpu_cores_;
165 const std::unique_ptr<ProcessThread> module_process_thread_; 176 const std::unique_ptr<ProcessThread> module_process_thread_;
166 const std::unique_ptr<ProcessThread> pacer_thread_; 177 const std::unique_ptr<ProcessThread> pacer_thread_;
(...skipping 18 matching lines...) Expand all
185 // streams. 196 // streams.
186 std::multimap<uint32_t, FlexfecReceiveStream*> flexfec_receive_ssrcs_media_ 197 std::multimap<uint32_t, FlexfecReceiveStream*> flexfec_receive_ssrcs_media_
187 GUARDED_BY(receive_crit_); 198 GUARDED_BY(receive_crit_);
188 std::map<uint32_t, FlexfecReceiveStream*> flexfec_receive_ssrcs_protection_ 199 std::map<uint32_t, FlexfecReceiveStream*> flexfec_receive_ssrcs_protection_
189 GUARDED_BY(receive_crit_); 200 GUARDED_BY(receive_crit_);
190 std::set<FlexfecReceiveStream*> flexfec_receive_streams_ 201 std::set<FlexfecReceiveStream*> flexfec_receive_streams_
191 GUARDED_BY(receive_crit_); 202 GUARDED_BY(receive_crit_);
192 std::map<std::string, AudioReceiveStream*> sync_stream_mapping_ 203 std::map<std::string, AudioReceiveStream*> sync_stream_mapping_
193 GUARDED_BY(receive_crit_); 204 GUARDED_BY(receive_crit_);
194 205
206 // Registered RTP header extensions for each stream.
207 // Note that RTP header extensions are negotiated per track ("m= line") in the
208 // SDP, but we have no notion of tracks at the Call level. We therefore store
209 // the RTP header extensions per SSRC instead, which leads to some storage
210 // overhead.
211 std::map<uint32_t, RtpHeaderExtensionMap> received_rtp_header_extensions_
212 GUARDED_BY(receive_crit_);
213
195 std::unique_ptr<RWLockWrapper> send_crit_; 214 std::unique_ptr<RWLockWrapper> send_crit_;
196 // Audio and Video send streams are owned by the client that creates them. 215 // Audio and Video send streams are owned by the client that creates them.
197 std::map<uint32_t, AudioSendStream*> audio_send_ssrcs_ GUARDED_BY(send_crit_); 216 std::map<uint32_t, AudioSendStream*> audio_send_ssrcs_ GUARDED_BY(send_crit_);
198 std::map<uint32_t, VideoSendStream*> video_send_ssrcs_ GUARDED_BY(send_crit_); 217 std::map<uint32_t, VideoSendStream*> video_send_ssrcs_ GUARDED_BY(send_crit_);
199 std::set<VideoSendStream*> video_send_streams_ GUARDED_BY(send_crit_); 218 std::set<VideoSendStream*> video_send_streams_ GUARDED_BY(send_crit_);
200 219
201 VideoSendStream::RtpStateMap suspended_video_send_ssrcs_; 220 VideoSendStream::RtpStateMap suspended_video_send_ssrcs_;
202 webrtc::RtcEventLog* event_log_; 221 webrtc::RtcEventLog* event_log_;
203 222
204 // The following members are only accessed (exclusively) from one thread and 223 // The following members are only accessed (exclusively) from one thread and
(...skipping 14 matching lines...) Expand all
219 AvgCounter pacer_bitrate_kbps_counter_ GUARDED_BY(&bitrate_crit_); 238 AvgCounter pacer_bitrate_kbps_counter_ GUARDED_BY(&bitrate_crit_);
220 239
221 std::map<std::string, rtc::NetworkRoute> network_routes_; 240 std::map<std::string, rtc::NetworkRoute> network_routes_;
222 241
223 VieRemb remb_; 242 VieRemb remb_;
224 PacketRouter packet_router_; 243 PacketRouter packet_router_;
225 // TODO(nisse): Could be a direct member, except for constness 244 // TODO(nisse): Could be a direct member, except for constness
226 // issues with GetRemoteBitrateEstimator (and maybe others). 245 // issues with GetRemoteBitrateEstimator (and maybe others).
227 const std::unique_ptr<CongestionController> congestion_controller_; 246 const std::unique_ptr<CongestionController> congestion_controller_;
228 const std::unique_ptr<SendDelayStats> video_send_delay_stats_; 247 const std::unique_ptr<SendDelayStats> video_send_delay_stats_;
248 // Cached results from congestion_controller_->GetRemoteBitrateEstimator.
249 // Currently only used by FlexFEC in ParseRtpPacket.
250 RemoteBitrateEstimator* const remote_bitrate_estimator_;
251 RemoteBitrateEstimator* const remote_estimator_proxy_; // Send-side BWE.
229 const int64_t start_ms_; 252 const int64_t start_ms_;
230 // TODO(perkj): |worker_queue_| is supposed to replace 253 // TODO(perkj): |worker_queue_| is supposed to replace
231 // |module_process_thread_|. 254 // |module_process_thread_|.
232 // |worker_queue| is defined last to ensure all pending tasks are cancelled 255 // |worker_queue| is defined last to ensure all pending tasks are cancelled
233 // and deleted before any other members. 256 // and deleted before any other members.
234 rtc::TaskQueue worker_queue_; 257 rtc::TaskQueue worker_queue_;
235 258
236 RTC_DISALLOW_COPY_AND_ASSIGN(Call); 259 RTC_DISALLOW_COPY_AND_ASSIGN(Call);
237 }; 260 };
238 } // namespace internal 261 } // namespace internal
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
277 configured_max_padding_bitrate_bps_(0), 300 configured_max_padding_bitrate_bps_(0),
278 estimated_send_bitrate_kbps_counter_(clock_, nullptr, true), 301 estimated_send_bitrate_kbps_counter_(clock_, nullptr, true),
279 pacer_bitrate_kbps_counter_(clock_, nullptr, true), 302 pacer_bitrate_kbps_counter_(clock_, nullptr, true),
280 remb_(clock_), 303 remb_(clock_),
281 congestion_controller_(new CongestionController(clock_, 304 congestion_controller_(new CongestionController(clock_,
282 this, 305 this,
283 &remb_, 306 &remb_,
284 event_log_, 307 event_log_,
285 &packet_router_)), 308 &packet_router_)),
286 video_send_delay_stats_(new SendDelayStats(clock_)), 309 video_send_delay_stats_(new SendDelayStats(clock_)),
310 remote_bitrate_estimator_(
311 congestion_controller_->GetRemoteBitrateEstimator(false)),
312 remote_estimator_proxy_(
313 congestion_controller_->GetRemoteBitrateEstimator(true)),
287 start_ms_(clock_->TimeInMilliseconds()), 314 start_ms_(clock_->TimeInMilliseconds()),
288 worker_queue_("call_worker_queue") { 315 worker_queue_("call_worker_queue") {
289 RTC_DCHECK(configuration_thread_checker_.CalledOnValidThread()); 316 RTC_DCHECK(configuration_thread_checker_.CalledOnValidThread());
290 RTC_DCHECK(config.event_log != nullptr); 317 RTC_DCHECK(config.event_log != nullptr);
291 RTC_DCHECK_GE(config.bitrate_config.min_bitrate_bps, 0); 318 RTC_DCHECK_GE(config.bitrate_config.min_bitrate_bps, 0);
292 RTC_DCHECK_GE(config.bitrate_config.start_bitrate_bps, 319 RTC_DCHECK_GE(config.bitrate_config.start_bitrate_bps,
293 config.bitrate_config.min_bitrate_bps); 320 config.bitrate_config.min_bitrate_bps);
294 if (config.bitrate_config.max_bitrate_bps != -1) { 321 if (config.bitrate_config.max_bitrate_bps != -1) {
295 RTC_DCHECK_GE(config.bitrate_config.max_bitrate_bps, 322 RTC_DCHECK_GE(config.bitrate_config.max_bitrate_bps,
296 config.bitrate_config.start_bitrate_bps); 323 config.bitrate_config.start_bitrate_bps);
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
338 { 365 {
339 rtc::CritScope lock(&bitrate_crit_); 366 rtc::CritScope lock(&bitrate_crit_);
340 UpdateSendHistograms(); 367 UpdateSendHistograms();
341 } 368 }
342 UpdateReceiveHistograms(); 369 UpdateReceiveHistograms();
343 UpdateHistograms(); 370 UpdateHistograms();
344 371
345 Trace::ReturnTrace(); 372 Trace::ReturnTrace();
346 } 373 }
347 374
375 rtc::Optional<RtpPacketReceived> Call::ParseRtpPacket(
376 const uint8_t* packet,
377 size_t length,
378 const PacketTime& packet_time) {
379 RtpPacketReceived parsed_packet(nullptr);
danilchap 2016/12/15 10:23:47 sorry for incomplete previous comment, there is ac
brandtr 2016/12/16 12:48:52 Done.
380 if (!parsed_packet.Parse(packet, length))
381 return rtc::Optional<RtpPacketReceived>();
382
383 auto it = received_rtp_header_extensions_.find(parsed_packet.Ssrc());
384 if (it != received_rtp_header_extensions_.end()) {
385 // The existence of |it->second| is guaranteed during the lifetime of
386 // |parsed_packet|, due to us holding the |receive_crit_| lock in the
brandtr 2016/12/16 12:48:52 Will update here when the RtpPacket CL has landed.
387 // DeliverRtp method.
388 parsed_packet.IdentifyExtensions(&it->second);
389 }
390
391 int64_t arrival_time_ms;
392 if (packet_time.timestamp != -1) {
393 arrival_time_ms = (packet_time.timestamp + 500) / 1000;
394 } else {
395 arrival_time_ms = clock_->TimeInMilliseconds();
396 }
397 parsed_packet.set_arrival_time_ms(arrival_time_ms);
398
399 return rtc::Optional<RtpPacketReceived>(std::move(parsed_packet));
400 }
401
348 void Call::UpdateHistograms() { 402 void Call::UpdateHistograms() {
349 RTC_HISTOGRAM_COUNTS_100000( 403 RTC_HISTOGRAM_COUNTS_100000(
350 "WebRTC.Call.LifetimeInSeconds", 404 "WebRTC.Call.LifetimeInSeconds",
351 (clock_->TimeInMilliseconds() - start_ms_) / 1000); 405 (clock_->TimeInMilliseconds() - start_ms_) / 1000);
352 } 406 }
353 407
354 void Call::UpdateSendHistograms() { 408 void Call::UpdateSendHistograms() {
355 if (first_packet_sent_ms_ == -1) 409 if (first_packet_sent_ms_ == -1)
356 return; 410 return;
357 int64_t elapsed_sec = 411 int64_t elapsed_sec =
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after
652 ConfigureSync(receive_stream_impl->config().sync_group); 706 ConfigureSync(receive_stream_impl->config().sync_group);
653 } 707 }
654 UpdateAggregateNetworkState(); 708 UpdateAggregateNetworkState();
655 delete receive_stream_impl; 709 delete receive_stream_impl;
656 } 710 }
657 711
658 webrtc::FlexfecReceiveStream* Call::CreateFlexfecReceiveStream( 712 webrtc::FlexfecReceiveStream* Call::CreateFlexfecReceiveStream(
659 const webrtc::FlexfecReceiveStream::Config& config) { 713 const webrtc::FlexfecReceiveStream::Config& config) {
660 TRACE_EVENT0("webrtc", "Call::CreateFlexfecReceiveStream"); 714 TRACE_EVENT0("webrtc", "Call::CreateFlexfecReceiveStream");
661 RTC_DCHECK(configuration_thread_checker_.CalledOnValidThread()); 715 RTC_DCHECK(configuration_thread_checker_.CalledOnValidThread());
662 FlexfecReceiveStream* receive_stream = new FlexfecReceiveStream(config, this); 716
717 RecoveredPacketReceiver* recovered_packet_receiver = this;
718 FlexfecReceiveStream* receive_stream =
719 new FlexfecReceiveStream(config, recovered_packet_receiver);
663 720
664 { 721 {
665 WriteLockScoped write_lock(*receive_crit_); 722 WriteLockScoped write_lock(*receive_crit_);
723
724 RTC_DCHECK(flexfec_receive_streams_.find(receive_stream) ==
725 flexfec_receive_streams_.end());
726 flexfec_receive_streams_.insert(receive_stream);
727
666 for (auto ssrc : config.protected_media_ssrcs) 728 for (auto ssrc : config.protected_media_ssrcs)
667 flexfec_receive_ssrcs_media_.insert(std::make_pair(ssrc, receive_stream)); 729 flexfec_receive_ssrcs_media_.insert(std::make_pair(ssrc, receive_stream));
730
668 RTC_DCHECK(flexfec_receive_ssrcs_protection_.find(config.remote_ssrc) == 731 RTC_DCHECK(flexfec_receive_ssrcs_protection_.find(config.remote_ssrc) ==
669 flexfec_receive_ssrcs_protection_.end()); 732 flexfec_receive_ssrcs_protection_.end());
670 flexfec_receive_ssrcs_protection_[config.remote_ssrc] = receive_stream; 733 flexfec_receive_ssrcs_protection_[config.remote_ssrc] = receive_stream;
671 flexfec_receive_streams_.insert(receive_stream); 734
735 RTC_DCHECK(received_rtp_header_extensions_.find(config.remote_ssrc) ==
736 received_rtp_header_extensions_.end());
737 RtpHeaderExtensionMap rtp_header_extensions(config.rtp_header_extensions);
738 received_rtp_header_extensions_[config.remote_ssrc] = rtp_header_extensions;
672 } 739 }
740
673 // TODO(brandtr): Store config in RtcEventLog here. 741 // TODO(brandtr): Store config in RtcEventLog here.
742
674 return receive_stream; 743 return receive_stream;
675 } 744 }
676 745
677 void Call::DestroyFlexfecReceiveStream( 746 void Call::DestroyFlexfecReceiveStream(
678 webrtc::FlexfecReceiveStream* receive_stream) { 747 webrtc::FlexfecReceiveStream* receive_stream) {
679 TRACE_EVENT0("webrtc", "Call::DestroyFlexfecReceiveStream"); 748 TRACE_EVENT0("webrtc", "Call::DestroyFlexfecReceiveStream");
680 RTC_DCHECK(configuration_thread_checker_.CalledOnValidThread()); 749 RTC_DCHECK(configuration_thread_checker_.CalledOnValidThread());
750
681 RTC_DCHECK(receive_stream != nullptr); 751 RTC_DCHECK(receive_stream != nullptr);
752
682 // There exist no other derived classes of webrtc::FlexfecReceiveStream, 753 // There exist no other derived classes of webrtc::FlexfecReceiveStream,
683 // so this downcast is safe. 754 // so this downcast is safe.
684 FlexfecReceiveStream* receive_stream_impl = 755 FlexfecReceiveStream* receive_stream_impl =
685 static_cast<FlexfecReceiveStream*>(receive_stream); 756 static_cast<FlexfecReceiveStream*>(receive_stream);
757
686 { 758 {
687 WriteLockScoped write_lock(*receive_crit_); 759 WriteLockScoped write_lock(*receive_crit_);
760
761 uint32_t ssrc = receive_stream_impl->GetConfig().remote_ssrc;
762 received_rtp_header_extensions_.erase(ssrc);
763
688 // Remove all SSRCs pointing to the FlexfecReceiveStream to be destroyed. 764 // Remove all SSRCs pointing to the FlexfecReceiveStream to be destroyed.
689 auto media_it = flexfec_receive_ssrcs_media_.begin();
690 while (media_it != flexfec_receive_ssrcs_media_.end()) {
691 if (media_it->second == receive_stream_impl)
692 media_it = flexfec_receive_ssrcs_media_.erase(media_it);
693 else
694 ++media_it;
695 }
696 auto prot_it = flexfec_receive_ssrcs_protection_.begin(); 765 auto prot_it = flexfec_receive_ssrcs_protection_.begin();
697 while (prot_it != flexfec_receive_ssrcs_protection_.end()) { 766 while (prot_it != flexfec_receive_ssrcs_protection_.end()) {
698 if (prot_it->second == receive_stream_impl) 767 if (prot_it->second == receive_stream_impl)
699 prot_it = flexfec_receive_ssrcs_protection_.erase(prot_it); 768 prot_it = flexfec_receive_ssrcs_protection_.erase(prot_it);
700 else 769 else
701 ++prot_it; 770 ++prot_it;
702 } 771 }
772 auto media_it = flexfec_receive_ssrcs_media_.begin();
773 while (media_it != flexfec_receive_ssrcs_media_.end()) {
774 if (media_it->second == receive_stream_impl)
775 media_it = flexfec_receive_ssrcs_media_.erase(media_it);
776 else
777 ++media_it;
778 }
779
703 flexfec_receive_streams_.erase(receive_stream_impl); 780 flexfec_receive_streams_.erase(receive_stream_impl);
704 } 781 }
782
705 delete receive_stream_impl; 783 delete receive_stream_impl;
706 } 784 }
707 785
708 Call::Stats Call::GetStats() const { 786 Call::Stats Call::GetStats() const {
709 // TODO(solenberg): Some test cases in EndToEndTest use this from a different 787 // TODO(solenberg): Some test cases in EndToEndTest use this from a different
710 // thread. Re-enable once that is fixed. 788 // thread. Re-enable once that is fixed.
711 // RTC_DCHECK(configuration_thread_checker_.CalledOnValidThread()); 789 // RTC_DCHECK(configuration_thread_checker_.CalledOnValidThread());
712 Stats stats; 790 Stats stats;
713 // Fetch available send/receive bitrates. 791 // Fetch available send/receive bitrates.
714 uint32_t send_bandwidth = 0; 792 uint32_t send_bandwidth = 0;
(...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after
1068 if (status == DELIVERY_OK) 1146 if (status == DELIVERY_OK)
1069 event_log_->LogRtpHeader(kIncomingPacket, media_type, packet, length); 1147 event_log_->LogRtpHeader(kIncomingPacket, media_type, packet, length);
1070 return status; 1148 return status;
1071 } 1149 }
1072 } 1150 }
1073 if (media_type == MediaType::ANY || media_type == MediaType::VIDEO) { 1151 if (media_type == MediaType::ANY || media_type == MediaType::VIDEO) {
1074 auto it = video_receive_ssrcs_.find(ssrc); 1152 auto it = video_receive_ssrcs_.find(ssrc);
1075 if (it != video_receive_ssrcs_.end()) { 1153 if (it != video_receive_ssrcs_.end()) {
1076 received_bytes_per_second_counter_.Add(static_cast<int>(length)); 1154 received_bytes_per_second_counter_.Add(static_cast<int>(length));
1077 received_video_bytes_per_second_counter_.Add(static_cast<int>(length)); 1155 received_video_bytes_per_second_counter_.Add(static_cast<int>(length));
1156 // TODO(brandtr): Notify the BWE of received media packets here.
1078 auto status = it->second->DeliverRtp(packet, length, packet_time) 1157 auto status = it->second->DeliverRtp(packet, length, packet_time)
1079 ? DELIVERY_OK 1158 ? DELIVERY_OK
1080 : DELIVERY_PACKET_ERROR; 1159 : DELIVERY_PACKET_ERROR;
1081 // Deliver media packets to FlexFEC subsystem. 1160 // Deliver media packets to FlexFEC subsystem. RTP header extensions need
1082 auto it_bounds = flexfec_receive_ssrcs_media_.equal_range(ssrc); 1161 // not be parsed, as FlexFEC is oblivious to the semantic meaning of the
1083 for (auto it = it_bounds.first; it != it_bounds.second; ++it) 1162 // packet contents beyond the 12 byte RTP base header. The BWE is fed
1084 it->second->AddAndProcessReceivedPacket(packet, length); 1163 // information about these media packets from the regular media pipeline.
1164 rtc::Optional<RtpPacketReceived> parsed_packet =
1165 ParseRtpPacket(packet, length, packet_time);
1166 if (parsed_packet) {
1167 auto it_bounds = flexfec_receive_ssrcs_media_.equal_range(ssrc);
1168 for (auto it = it_bounds.first; it != it_bounds.second; ++it)
1169 it->second->AddAndProcessReceivedPacket(*parsed_packet);
1170 }
1085 if (status == DELIVERY_OK) 1171 if (status == DELIVERY_OK)
1086 event_log_->LogRtpHeader(kIncomingPacket, media_type, packet, length); 1172 event_log_->LogRtpHeader(kIncomingPacket, media_type, packet, length);
1087 return status; 1173 return status;
1088 } 1174 }
1089 } 1175 }
1090 if (media_type == MediaType::ANY || media_type == MediaType::VIDEO) { 1176 if (media_type == MediaType::ANY || media_type == MediaType::VIDEO) {
1091 auto it = flexfec_receive_ssrcs_protection_.find(ssrc); 1177 auto it = flexfec_receive_ssrcs_protection_.find(ssrc);
1092 if (it != flexfec_receive_ssrcs_protection_.end()) { 1178 if (it != flexfec_receive_ssrcs_protection_.end()) {
1093 auto status = it->second->AddAndProcessReceivedPacket(packet, length) 1179 rtc::Optional<RtpPacketReceived> parsed_packet =
1094 ? DELIVERY_OK 1180 ParseRtpPacket(packet, length, packet_time);
1095 : DELIVERY_PACKET_ERROR; 1181 if (parsed_packet) {
1096 if (status == DELIVERY_OK) 1182 NotifyBweOfReceivedPacket(*parsed_packet);
1097 event_log_->LogRtpHeader(kIncomingPacket, media_type, packet, length); 1183 auto status =
1098 return status; 1184 it->second->AddAndProcessReceivedPacket(std::move(*parsed_packet))
1185 ? DELIVERY_OK
1186 : DELIVERY_PACKET_ERROR;
1187 if (status == DELIVERY_OK)
1188 event_log_->LogRtpHeader(kIncomingPacket, media_type, packet, length);
1189 return status;
1190 }
1099 } 1191 }
1100 } 1192 }
1101 return DELIVERY_UNKNOWN_SSRC; 1193 return DELIVERY_UNKNOWN_SSRC;
1102 } 1194 }
1103 1195
1104 PacketReceiver::DeliveryStatus Call::DeliverPacket( 1196 PacketReceiver::DeliveryStatus Call::DeliverPacket(
1105 MediaType media_type, 1197 MediaType media_type,
1106 const uint8_t* packet, 1198 const uint8_t* packet,
1107 size_t length, 1199 size_t length,
1108 const PacketTime& packet_time) { 1200 const PacketTime& packet_time) {
(...skipping 11 matching lines...) Expand all
1120 // audio packets with FlexFEC. 1212 // audio packets with FlexFEC.
1121 bool Call::OnRecoveredPacket(const uint8_t* packet, size_t length) { 1213 bool Call::OnRecoveredPacket(const uint8_t* packet, size_t length) {
1122 uint32_t ssrc = ByteReader<uint32_t>::ReadBigEndian(&packet[8]); 1214 uint32_t ssrc = ByteReader<uint32_t>::ReadBigEndian(&packet[8]);
1123 ReadLockScoped read_lock(*receive_crit_); 1215 ReadLockScoped read_lock(*receive_crit_);
1124 auto it = video_receive_ssrcs_.find(ssrc); 1216 auto it = video_receive_ssrcs_.find(ssrc);
1125 if (it == video_receive_ssrcs_.end()) 1217 if (it == video_receive_ssrcs_.end())
1126 return false; 1218 return false;
1127 return it->second->OnRecoveredPacket(packet, length); 1219 return it->second->OnRecoveredPacket(packet, length);
1128 } 1220 }
1129 1221
1222 void Call::NotifyBweOfReceivedPacket(const RtpPacketReceived& packet) {
stefan-webrtc 2016/12/19 11:03:42 Should we make this a method on CongestionControll
brandtr 2016/12/19 13:26:17 Sounds good to me.
1223 const bool transport_wide = packet.HasExtension<TransportSequenceNumber>();
1224 const bool abs_send_time = packet.HasExtension<AbsoluteSendTime>();
1225 const bool t_offset = packet.HasExtension<TransmissionOffset>();
1226
1227 // At least one of the header extensions is needed for the BWE.
1228 if (!transport_wide && !abs_send_time && !t_offset)
brandtr 2016/12/19 13:26:17 Is this too strict for the older BWEs? (For send-
stefan-webrtc 2016/12/19 14:03:31 Yes, too strict. The old BWE can take RTP timestam
brandtr 2016/12/19 14:26:53 Done.
1229 return;
1230
1231 RTPHeader header;
1232 packet.GetHeader(&header);
1233
1234 // Send-side BWE.
1235 if (remote_estimator_proxy_ && transport_wide) {
1236 remote_estimator_proxy_->IncomingPacket(packet.arrival_time_ms(),
1237 packet.payload_size(), header);
1238 return;
1239 }
1240
1241 // Receive-side BWE.
1242 if (remote_bitrate_estimator_) {
1243 remote_bitrate_estimator_->IncomingPacket(packet.arrival_time_ms(),
1244 packet.payload_size(), header);
1245 }
1246 }
1247
1130 } // namespace internal 1248 } // namespace internal
1131 } // namespace webrtc 1249 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/api/call/flexfec_receive_stream.h ('k') | webrtc/call/flexfec_receive_stream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698