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

Side by Side Diff: webrtc/modules/pacing/paced_sender.cc

Issue 1474533006: Fix bug in calculation of averge queue time in paced sender. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fixed race condition Created 5 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/modules/pacing/paced_sender.h ('k') | webrtc/modules/pacing/paced_sender_unittest.cc » ('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) 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
(...skipping 14 matching lines...) Expand all
25 namespace { 25 namespace {
26 // Time limit in milliseconds between packet bursts. 26 // Time limit in milliseconds between packet bursts.
27 const int64_t kMinPacketLimitMs = 5; 27 const int64_t kMinPacketLimitMs = 5;
28 28
29 // Upper cap on process interval, in case process has not been called in a long 29 // Upper cap on process interval, in case process has not been called in a long
30 // time. 30 // time.
31 const int64_t kMaxIntervalTimeMs = 30; 31 const int64_t kMaxIntervalTimeMs = 30;
32 32
33 } // namespace 33 } // namespace
34 34
35 // TODO(sprang): Move at least PacketQueue and MediaBudget out to separate
36 // files, so that we can more easily test them.
37
35 namespace webrtc { 38 namespace webrtc {
36 namespace paced_sender { 39 namespace paced_sender {
37 struct Packet { 40 struct Packet {
38 Packet(RtpPacketSender::Priority priority, 41 Packet(RtpPacketSender::Priority priority,
39 uint32_t ssrc, 42 uint32_t ssrc,
40 uint16_t seq_number, 43 uint16_t seq_number,
41 int64_t capture_time_ms, 44 int64_t capture_time_ms,
42 int64_t enqueue_time_ms, 45 int64_t enqueue_time_ms,
43 size_t length_in_bytes, 46 size_t length_in_bytes,
44 bool retransmission, 47 bool retransmission,
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 class PacketQueue { 89 class PacketQueue {
87 public: 90 public:
88 explicit PacketQueue(Clock* clock) 91 explicit PacketQueue(Clock* clock)
89 : bytes_(0), 92 : bytes_(0),
90 clock_(clock), 93 clock_(clock),
91 queue_time_sum_(0), 94 queue_time_sum_(0),
92 time_last_updated_(clock_->TimeInMilliseconds()) {} 95 time_last_updated_(clock_->TimeInMilliseconds()) {}
93 virtual ~PacketQueue() {} 96 virtual ~PacketQueue() {}
94 97
95 void Push(const Packet& packet) { 98 void Push(const Packet& packet) {
96 if (!AddToDupeSet(packet)) { 99 if (!AddToDupeSet(packet))
97 return; 100 return;
98 } 101
102 UpdateQueueTime(packet.enqueue_time_ms);
103
99 // Store packet in list, use pointers in priority queue for cheaper moves. 104 // Store packet in list, use pointers in priority queue for cheaper moves.
100 // Packets have a handle to its own iterator in the list, for easy removal 105 // Packets have a handle to its own iterator in the list, for easy removal
101 // when popping from queue. 106 // when popping from queue.
102 packet_list_.push_front(packet); 107 packet_list_.push_front(packet);
103 std::list<Packet>::iterator it = packet_list_.begin(); 108 std::list<Packet>::iterator it = packet_list_.begin();
104 it->this_it = it; // Handle for direct removal from list. 109 it->this_it = it; // Handle for direct removal from list.
105 prio_queue_.push(&(*it)); // Pointer into list. 110 prio_queue_.push(&(*it)); // Pointer into list.
106 bytes_ += packet.bytes; 111 bytes_ += packet.bytes;
107 } 112 }
108 113
109 const Packet& BeginPop() { 114 const Packet& BeginPop() {
110 const Packet& packet = *prio_queue_.top(); 115 const Packet& packet = *prio_queue_.top();
111 prio_queue_.pop(); 116 prio_queue_.pop();
112 return packet; 117 return packet;
113 } 118 }
114 119
115 void CancelPop(const Packet& packet) { prio_queue_.push(&(*packet.this_it)); } 120 void CancelPop(const Packet& packet) { prio_queue_.push(&(*packet.this_it)); }
116 121
117 void FinalizePop(const Packet& packet) { 122 void FinalizePop(const Packet& packet) {
118 RemoveFromDupeSet(packet); 123 RemoveFromDupeSet(packet);
119 bytes_ -= packet.bytes; 124 bytes_ -= packet.bytes;
120 queue_time_sum_ -= (time_last_updated_ - packet.enqueue_time_ms); 125 queue_time_sum_ -= (time_last_updated_ - packet.enqueue_time_ms);
121 packet_list_.erase(packet.this_it); 126 packet_list_.erase(packet.this_it);
127 RTC_DCHECK_EQ(packet_list_.size(), prio_queue_.size());
128 if (packet_list_.empty())
129 RTC_DCHECK_EQ(0u, queue_time_sum_);
122 } 130 }
123 131
124 bool Empty() const { return prio_queue_.empty(); } 132 bool Empty() const { return prio_queue_.empty(); }
125 133
126 size_t SizeInPackets() const { return prio_queue_.size(); } 134 size_t SizeInPackets() const { return prio_queue_.size(); }
127 135
128 uint64_t SizeInBytes() const { return bytes_; } 136 uint64_t SizeInBytes() const { return bytes_; }
129 137
130 int64_t OldestEnqueueTimeMs() const { 138 int64_t OldestEnqueueTimeMs() const {
131 auto it = packet_list_.rbegin(); 139 auto it = packet_list_.rbegin();
132 if (it == packet_list_.rend()) 140 if (it == packet_list_.rend())
133 return 0; 141 return 0;
134 return it->enqueue_time_ms; 142 return it->enqueue_time_ms;
135 } 143 }
136 144
137 int64_t AverageQueueTimeMs() { 145 void UpdateQueueTime(int64_t timestamp_ms) {
138 int64_t now = clock_->TimeInMilliseconds(); 146 RTC_DCHECK_GE(timestamp_ms, time_last_updated_);
139 RTC_DCHECK_GE(now, time_last_updated_); 147 int64_t delta = timestamp_ms - time_last_updated_;
140 int64_t delta = now - time_last_updated_; 148 queue_time_sum_ += delta * packet_list_.size();
stefan-webrtc 2015/11/26 14:18:20 I think it is worth commenting on the importance o
sprang_webrtc 2015/11/26 14:22:25 Done.
141 queue_time_sum_ += delta * prio_queue_.size(); 149 time_last_updated_ = timestamp_ms;
142 time_last_updated_ = now; 150 }
143 return queue_time_sum_ / prio_queue_.size(); 151
152 int64_t AverageQueueTimeMs() const {
153 if (prio_queue_.empty())
154 return 0;
155 return queue_time_sum_ / packet_list_.size();
144 } 156 }
145 157
146 private: 158 private:
147 // Try to add a packet to the set of ssrc/seqno identifiers currently in the 159 // Try to add a packet to the set of ssrc/seqno identifiers currently in the
148 // queue. Return true if inserted, false if this is a duplicate. 160 // queue. Return true if inserted, false if this is a duplicate.
149 bool AddToDupeSet(const Packet& packet) { 161 bool AddToDupeSet(const Packet& packet) {
150 SsrcSeqNoMap::iterator it = dupe_map_.find(packet.ssrc); 162 SsrcSeqNoMap::iterator it = dupe_map_.find(packet.ssrc);
151 if (it == dupe_map_.end()) { 163 if (it == dupe_map_.end()) {
152 // First for this ssrc, just insert. 164 // First for this ssrc, just insert.
153 dupe_map_[packet.ssrc].insert(packet.sequence_number); 165 dupe_map_[packet.ssrc].insert(packet.sequence_number);
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
283 uint16_t sequence_number, 295 uint16_t sequence_number,
284 int64_t capture_time_ms, 296 int64_t capture_time_ms,
285 size_t bytes, 297 size_t bytes,
286 bool retransmission) { 298 bool retransmission) {
287 CriticalSectionScoped cs(critsect_.get()); 299 CriticalSectionScoped cs(critsect_.get());
288 300
289 if (probing_enabled_ && !prober_->IsProbing()) 301 if (probing_enabled_ && !prober_->IsProbing())
290 prober_->SetEnabled(true); 302 prober_->SetEnabled(true);
291 prober_->MaybeInitializeProbe(bitrate_bps_); 303 prober_->MaybeInitializeProbe(bitrate_bps_);
292 304
305 int64_t now_ms = clock_->TimeInMilliseconds();
293 if (capture_time_ms < 0) 306 if (capture_time_ms < 0)
294 capture_time_ms = clock_->TimeInMilliseconds(); 307 capture_time_ms = now_ms;
295 308
296 packets_->Push(paced_sender::Packet( 309 packets_->Push(paced_sender::Packet(priority, ssrc, sequence_number,
297 priority, ssrc, sequence_number, capture_time_ms, 310 capture_time_ms, now_ms, bytes,
298 clock_->TimeInMilliseconds(), bytes, retransmission, packet_counter_++)); 311 retransmission, packet_counter_++));
299 } 312 }
300 313
301 int64_t PacedSender::ExpectedQueueTimeMs() const { 314 int64_t PacedSender::ExpectedQueueTimeMs() const {
302 CriticalSectionScoped cs(critsect_.get()); 315 CriticalSectionScoped cs(critsect_.get());
303 RTC_DCHECK_GT(max_bitrate_kbps_, 0); 316 RTC_DCHECK_GT(max_bitrate_kbps_, 0);
304 return static_cast<int64_t>(packets_->SizeInBytes() * 8 / max_bitrate_kbps_); 317 return static_cast<int64_t>(packets_->SizeInBytes() * 8 / max_bitrate_kbps_);
305 } 318 }
306 319
307 size_t PacedSender::QueueSizePackets() const { 320 size_t PacedSender::QueueSizePackets() const {
308 CriticalSectionScoped cs(critsect_.get()); 321 CriticalSectionScoped cs(critsect_.get());
309 return packets_->SizeInPackets(); 322 return packets_->SizeInPackets();
310 } 323 }
311 324
312 int64_t PacedSender::QueueInMs() const { 325 int64_t PacedSender::QueueInMs() const {
313 CriticalSectionScoped cs(critsect_.get()); 326 CriticalSectionScoped cs(critsect_.get());
314 327
315 int64_t oldest_packet = packets_->OldestEnqueueTimeMs(); 328 int64_t oldest_packet = packets_->OldestEnqueueTimeMs();
316 if (oldest_packet == 0) 329 if (oldest_packet == 0)
317 return 0; 330 return 0;
318 331
319 return clock_->TimeInMilliseconds() - oldest_packet; 332 return clock_->TimeInMilliseconds() - oldest_packet;
320 } 333 }
321 334
335 int64_t PacedSender::AverageQueueTimeMs() {
336 CriticalSectionScoped cs(critsect_.get());
337 packets_->UpdateQueueTime(clock_->TimeInMilliseconds());
338 return packets_->AverageQueueTimeMs();
339 }
340
322 int64_t PacedSender::TimeUntilNextProcess() { 341 int64_t PacedSender::TimeUntilNextProcess() {
323 CriticalSectionScoped cs(critsect_.get()); 342 CriticalSectionScoped cs(critsect_.get());
324 if (prober_->IsProbing()) { 343 if (prober_->IsProbing()) {
325 int64_t ret = prober_->TimeUntilNextProbe(clock_->TimeInMilliseconds()); 344 int64_t ret = prober_->TimeUntilNextProbe(clock_->TimeInMilliseconds());
326 if (ret >= 0) 345 if (ret >= 0)
327 return ret; 346 return ret;
328 } 347 }
329 int64_t elapsed_time_us = clock_->TimeInMicroseconds() - time_last_update_us_; 348 int64_t elapsed_time_us = clock_->TimeInMicroseconds() - time_last_update_us_;
330 int64_t elapsed_time_ms = (elapsed_time_us + 500) / 1000; 349 int64_t elapsed_time_ms = (elapsed_time_us + 500) / 1000;
331 return std::max<int64_t>(kMinPacketLimitMs - elapsed_time_ms, 0); 350 return std::max<int64_t>(kMinPacketLimitMs - elapsed_time_ms, 0);
332 } 351 }
333 352
334 int32_t PacedSender::Process() { 353 int32_t PacedSender::Process() {
335 int64_t now_us = clock_->TimeInMicroseconds(); 354 int64_t now_us = clock_->TimeInMicroseconds();
336 CriticalSectionScoped cs(critsect_.get()); 355 CriticalSectionScoped cs(critsect_.get());
337 int64_t elapsed_time_ms = (now_us - time_last_update_us_ + 500) / 1000; 356 int64_t elapsed_time_ms = (now_us - time_last_update_us_ + 500) / 1000;
338 time_last_update_us_ = now_us; 357 time_last_update_us_ = now_us;
339 if (paused_) 358 if (paused_)
340 return 0; 359 return 0;
341 int target_bitrate_kbps = max_bitrate_kbps_; 360 int target_bitrate_kbps = max_bitrate_kbps_;
342 if (elapsed_time_ms > 0) { 361 if (elapsed_time_ms > 0) {
343 size_t queue_size_bytes = packets_->SizeInBytes(); 362 size_t queue_size_bytes = packets_->SizeInBytes();
344 if (queue_size_bytes > 0) { 363 if (queue_size_bytes > 0) {
345 // Assuming equal size packets and input/output rate, the average packet 364 // Assuming equal size packets and input/output rate, the average packet
346 // has avg_time_left_ms left to get queue_size_bytes out of the queue, if 365 // has avg_time_left_ms left to get queue_size_bytes out of the queue, if
347 // time constraint shall be met. Determine bitrate needed for that. 366 // time constraint shall be met. Determine bitrate needed for that.
367 packets_->UpdateQueueTime(clock_->TimeInMilliseconds());
348 int64_t avg_time_left_ms = std::max<int64_t>( 368 int64_t avg_time_left_ms = std::max<int64_t>(
349 1, kMaxQueueLengthMs - packets_->AverageQueueTimeMs()); 369 1, kMaxQueueLengthMs - packets_->AverageQueueTimeMs());
350 int min_bitrate_needed_kbps = 370 int min_bitrate_needed_kbps =
351 static_cast<int>(queue_size_bytes * 8 / avg_time_left_ms); 371 static_cast<int>(queue_size_bytes * 8 / avg_time_left_ms);
352 if (min_bitrate_needed_kbps > target_bitrate_kbps) 372 if (min_bitrate_needed_kbps > target_bitrate_kbps)
353 target_bitrate_kbps = min_bitrate_needed_kbps; 373 target_bitrate_kbps = min_bitrate_needed_kbps;
354 } 374 }
355 375
356 media_budget_->set_target_rate_kbps(target_bitrate_kbps); 376 media_budget_->set_target_rate_kbps(target_bitrate_kbps);
357 377
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
421 media_budget_->UseBudget(bytes_sent); 441 media_budget_->UseBudget(bytes_sent);
422 padding_budget_->UseBudget(bytes_sent); 442 padding_budget_->UseBudget(bytes_sent);
423 } 443 }
424 } 444 }
425 445
426 void PacedSender::UpdateBytesPerInterval(int64_t delta_time_ms) { 446 void PacedSender::UpdateBytesPerInterval(int64_t delta_time_ms) {
427 media_budget_->IncreaseBudget(delta_time_ms); 447 media_budget_->IncreaseBudget(delta_time_ms);
428 padding_budget_->IncreaseBudget(delta_time_ms); 448 padding_budget_->IncreaseBudget(delta_time_ms);
429 } 449 }
430 } // namespace webrtc 450 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/modules/pacing/paced_sender.h ('k') | webrtc/modules/pacing/paced_sender_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698