summaryrefslogtreecommitdiff
path: root/chromium/media/cast/pacing/paced_sender.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/media/cast/pacing/paced_sender.cc')
-rw-r--r--chromium/media/cast/pacing/paced_sender.cc123
1 files changed, 123 insertions, 0 deletions
diff --git a/chromium/media/cast/pacing/paced_sender.cc b/chromium/media/cast/pacing/paced_sender.cc
new file mode 100644
index 00000000000..d2935f3e65a
--- /dev/null
+++ b/chromium/media/cast/pacing/paced_sender.cc
@@ -0,0 +1,123 @@
+// Copyright 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "media/cast/pacing/paced_sender.h"
+
+#include "base/bind.h"
+#include "base/logging.h"
+#include "base/message_loop/message_loop.h"
+
+namespace media {
+namespace cast {
+
+static const int64 kPacingIntervalMs = 10;
+static const int kPacingMaxBurstsPerFrame = 3;
+
+PacedSender::PacedSender(scoped_refptr<CastThread> cast_thread,
+ PacketSender* transport)
+ : cast_thread_(cast_thread),
+ burst_size_(1),
+ packets_sent_in_burst_(0),
+ transport_(transport),
+ clock_(&default_tick_clock_),
+ weak_factory_(this) {
+ ScheduleNextSend();
+}
+
+PacedSender::~PacedSender() {}
+
+bool PacedSender::SendPacket(const std::vector<uint8>& packet,
+ int num_of_packets_in_frame) {
+ if (!packet_list_.empty()) {
+ // We have a queue put the new packets last in the list.
+ packet_list_.push_back(packet);
+ UpdateBurstSize(num_of_packets_in_frame);
+ return true;
+ }
+ UpdateBurstSize(num_of_packets_in_frame);
+
+ if (packets_sent_in_burst_ >= burst_size_) {
+ packet_list_.push_back(packet);
+ return true;
+ }
+ ++packets_sent_in_burst_;
+ return transport_->SendPacket(&(packet[0]), packet.size());
+}
+
+bool PacedSender::ResendPacket(const std::vector<uint8>& packet,
+ int num_of_packets_to_resend) {
+ if (!packet_list_.empty() || !resend_packet_list_.empty()) {
+ // We have a queue put the resend packets in the list.
+ resend_packet_list_.push_back(packet);
+ UpdateBurstSize(num_of_packets_to_resend);
+ return true;
+ }
+ UpdateBurstSize(num_of_packets_to_resend);
+
+ if (packets_sent_in_burst_ >= burst_size_) {
+ resend_packet_list_.push_back(packet);
+ return true;
+ }
+ ++packets_sent_in_burst_;
+ return transport_->SendPacket(&(packet[0]), packet.size());
+}
+
+bool PacedSender::SendRtcpPacket(const std::vector<uint8>& packet) {
+ // We pass the RTCP packets straight through.
+ return transport_->SendPacket(&(packet[0]), packet.size());
+}
+
+void PacedSender::ScheduleNextSend() {
+ base::TimeDelta time_to_next = time_last_process_ - clock_->NowTicks() +
+ base::TimeDelta::FromMilliseconds(kPacingIntervalMs);
+
+ time_to_next = std::max(time_to_next,
+ base::TimeDelta::FromMilliseconds(0));
+
+ cast_thread_->PostDelayedTask(CastThread::MAIN, FROM_HERE,
+ base::Bind(&PacedSender::SendNextPacketBurst, weak_factory_.GetWeakPtr()),
+ time_to_next);
+}
+
+void PacedSender::SendNextPacketBurst() {
+ int packets_to_send = burst_size_;
+ time_last_process_ = clock_->NowTicks();
+ for (int i = 0; i < packets_to_send; ++i) {
+ SendStoredPacket();
+ }
+ ScheduleNextSend();
+}
+
+void PacedSender::SendStoredPacket() {
+ if (packet_list_.empty() && resend_packet_list_.empty()) return;
+
+ if (!resend_packet_list_.empty()) {
+ // Send our re-send packets first.
+ const std::vector<uint8>& packet = resend_packet_list_.front();
+ transport_->SendPacket(&(packet[0]), packet.size());
+ resend_packet_list_.pop_front();
+ } else {
+ const std::vector<uint8>& packet = packet_list_.front();
+ transport_->SendPacket(&(packet[0]), packet.size());
+ packet_list_.pop_front();
+
+ if (packet_list_.empty()) {
+ burst_size_ = 1; // Reset burst size after we sent the last stored packet
+ packets_sent_in_burst_ = 0;
+ }
+ }
+}
+
+void PacedSender::UpdateBurstSize(int packets_to_send) {
+ packets_to_send = std::max(packets_to_send,
+ static_cast<int>(resend_packet_list_.size() + packet_list_.size()));
+
+ packets_to_send += (kPacingMaxBurstsPerFrame - 1); // Round up.
+
+ burst_size_ = std::max(packets_to_send / kPacingMaxBurstsPerFrame,
+ burst_size_);
+}
+
+} // namespace cast
+} // namespace media