mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-15 23:01:21 +01:00

In https://webrtc-review.googlesource.com/c/src/+/1560 we moved WebRTC from src/webrtc to src/ (in order to preserve an healthy git history). This CL takes care of fixing header guards, #include paths, etc... NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true TBR=tommi@webrtc.org Bug: chromium:611808 Change-Id: Iea91618212bee0af16aa3f05071eab8f93706578 Reviewed-on: https://webrtc-review.googlesource.com/1561 Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> Reviewed-by: Henrik Kjellander <kjellander@webrtc.org> Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org> Cr-Commit-Position: refs/heads/master@{#19846}
222 lines
6.8 KiB
C++
222 lines
6.8 KiB
C++
/*
|
|
* Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#include "modules/rtp_rtcp/source/rtp_packet_history.h"
|
|
|
|
#include <algorithm>
|
|
#include <limits>
|
|
#include <utility>
|
|
|
|
#include "modules/rtp_rtcp/source/rtp_packet_to_send.h"
|
|
#include "rtc_base/checks.h"
|
|
#include "rtc_base/logging.h"
|
|
#include "system_wrappers/include/clock.h"
|
|
|
|
namespace webrtc {
|
|
namespace {
|
|
constexpr size_t kMinPacketRequestBytes = 50;
|
|
} // namespace
|
|
constexpr size_t RtpPacketHistory::kMaxCapacity;
|
|
|
|
RtpPacketHistory::RtpPacketHistory(Clock* clock)
|
|
: clock_(clock), store_(false), prev_index_(0) {}
|
|
|
|
RtpPacketHistory::~RtpPacketHistory() {}
|
|
|
|
void RtpPacketHistory::SetStorePacketsStatus(bool enable,
|
|
uint16_t number_to_store) {
|
|
rtc::CritScope cs(&critsect_);
|
|
if (enable) {
|
|
if (store_) {
|
|
LOG(LS_WARNING) << "Purging packet history in order to re-set status.";
|
|
Free();
|
|
}
|
|
RTC_DCHECK(!store_);
|
|
Allocate(number_to_store);
|
|
} else {
|
|
Free();
|
|
}
|
|
}
|
|
|
|
void RtpPacketHistory::Allocate(size_t number_to_store) {
|
|
RTC_DCHECK_GT(number_to_store, 0);
|
|
RTC_DCHECK_LE(number_to_store, kMaxCapacity);
|
|
store_ = true;
|
|
stored_packets_.resize(number_to_store);
|
|
}
|
|
|
|
void RtpPacketHistory::Free() {
|
|
if (!store_) {
|
|
return;
|
|
}
|
|
|
|
stored_packets_.clear();
|
|
|
|
store_ = false;
|
|
prev_index_ = 0;
|
|
}
|
|
|
|
bool RtpPacketHistory::StorePackets() const {
|
|
rtc::CritScope cs(&critsect_);
|
|
return store_;
|
|
}
|
|
|
|
void RtpPacketHistory::PutRtpPacket(std::unique_ptr<RtpPacketToSend> packet,
|
|
StorageType type,
|
|
bool sent) {
|
|
RTC_DCHECK(packet);
|
|
rtc::CritScope cs(&critsect_);
|
|
if (!store_) {
|
|
return;
|
|
}
|
|
|
|
// If index we're about to overwrite contains a packet that has not
|
|
// yet been sent (probably pending in paced sender), we need to expand
|
|
// the buffer.
|
|
if (stored_packets_[prev_index_].packet &&
|
|
stored_packets_[prev_index_].send_time == 0) {
|
|
size_t current_size = static_cast<uint16_t>(stored_packets_.size());
|
|
if (current_size < kMaxCapacity) {
|
|
size_t expanded_size = std::max(current_size * 3 / 2, current_size + 1);
|
|
expanded_size = std::min(expanded_size, kMaxCapacity);
|
|
Allocate(expanded_size);
|
|
// Causes discontinuity, but that's OK-ish. FindSeqNum() will still work,
|
|
// but may be slower - at least until buffer has wrapped around once.
|
|
prev_index_ = current_size;
|
|
}
|
|
}
|
|
|
|
// Store packet.
|
|
if (packet->capture_time_ms() <= 0)
|
|
packet->set_capture_time_ms(clock_->TimeInMilliseconds());
|
|
stored_packets_[prev_index_].sequence_number = packet->SequenceNumber();
|
|
stored_packets_[prev_index_].send_time =
|
|
(sent ? clock_->TimeInMilliseconds() : 0);
|
|
stored_packets_[prev_index_].storage_type = type;
|
|
stored_packets_[prev_index_].has_been_retransmitted = false;
|
|
stored_packets_[prev_index_].packet = std::move(packet);
|
|
|
|
++prev_index_;
|
|
if (prev_index_ >= stored_packets_.size()) {
|
|
prev_index_ = 0;
|
|
}
|
|
}
|
|
|
|
bool RtpPacketHistory::HasRtpPacket(uint16_t sequence_number) const {
|
|
rtc::CritScope cs(&critsect_);
|
|
if (!store_) {
|
|
return false;
|
|
}
|
|
|
|
int unused_index = 0;
|
|
return FindSeqNum(sequence_number, &unused_index);
|
|
}
|
|
|
|
std::unique_ptr<RtpPacketToSend> RtpPacketHistory::GetPacketAndSetSendTime(
|
|
uint16_t sequence_number,
|
|
int64_t min_elapsed_time_ms,
|
|
bool retransmit) {
|
|
rtc::CritScope cs(&critsect_);
|
|
if (!store_) {
|
|
return nullptr;
|
|
}
|
|
|
|
int index = 0;
|
|
if (!FindSeqNum(sequence_number, &index)) {
|
|
LOG(LS_WARNING) << "No match for getting seqNum " << sequence_number;
|
|
return nullptr;
|
|
}
|
|
RTC_DCHECK_EQ(sequence_number,
|
|
stored_packets_[index].packet->SequenceNumber());
|
|
|
|
// Verify elapsed time since last retrieve, but only for retransmissions and
|
|
// always send packet upon first retransmission request.
|
|
int64_t now = clock_->TimeInMilliseconds();
|
|
if (min_elapsed_time_ms > 0 && retransmit &&
|
|
stored_packets_[index].has_been_retransmitted &&
|
|
((now - stored_packets_[index].send_time) < min_elapsed_time_ms)) {
|
|
return nullptr;
|
|
}
|
|
|
|
if (retransmit) {
|
|
if (stored_packets_[index].storage_type == kDontRetransmit) {
|
|
// No bytes copied since this packet shouldn't be retransmitted.
|
|
return nullptr;
|
|
}
|
|
stored_packets_[index].has_been_retransmitted = true;
|
|
}
|
|
stored_packets_[index].send_time = clock_->TimeInMilliseconds();
|
|
return GetPacket(index);
|
|
}
|
|
|
|
std::unique_ptr<RtpPacketToSend> RtpPacketHistory::GetPacket(int index) const {
|
|
const RtpPacketToSend& stored = *stored_packets_[index].packet;
|
|
return std::unique_ptr<RtpPacketToSend>(new RtpPacketToSend(stored));
|
|
}
|
|
|
|
std::unique_ptr<RtpPacketToSend> RtpPacketHistory::GetBestFittingPacket(
|
|
size_t packet_length) const {
|
|
rtc::CritScope cs(&critsect_);
|
|
if (!store_)
|
|
return nullptr;
|
|
int index = FindBestFittingPacket(packet_length);
|
|
if (index < 0)
|
|
return nullptr;
|
|
return GetPacket(index);
|
|
}
|
|
|
|
bool RtpPacketHistory::FindSeqNum(uint16_t sequence_number, int* index) const {
|
|
if (prev_index_ > 0) {
|
|
*index = prev_index_ - 1;
|
|
} else {
|
|
*index = stored_packets_.size() - 1; // Wrap.
|
|
}
|
|
uint16_t temp_sequence_number = stored_packets_[*index].sequence_number;
|
|
|
|
int idx = *index - (temp_sequence_number - sequence_number);
|
|
if (idx >= 0 && idx < static_cast<int>(stored_packets_.size())) {
|
|
*index = idx;
|
|
temp_sequence_number = stored_packets_[*index].sequence_number;
|
|
}
|
|
|
|
if (temp_sequence_number != sequence_number) {
|
|
// We did not found a match, search all.
|
|
for (uint16_t m = 0; m < stored_packets_.size(); m++) {
|
|
if (stored_packets_[m].sequence_number == sequence_number) {
|
|
*index = m;
|
|
temp_sequence_number = stored_packets_[*index].sequence_number;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
return temp_sequence_number == sequence_number &&
|
|
stored_packets_[*index].packet;
|
|
}
|
|
|
|
int RtpPacketHistory::FindBestFittingPacket(size_t size) const {
|
|
if (size < kMinPacketRequestBytes || stored_packets_.empty())
|
|
return -1;
|
|
size_t min_diff = std::numeric_limits<size_t>::max();
|
|
int best_index = -1; // Returned unchanged if we don't find anything.
|
|
for (size_t i = 0; i < stored_packets_.size(); ++i) {
|
|
if (!stored_packets_[i].packet)
|
|
continue;
|
|
size_t stored_size = stored_packets_[i].packet->size();
|
|
size_t diff =
|
|
(stored_size > size) ? (stored_size - size) : (size - stored_size);
|
|
if (diff < min_diff) {
|
|
min_diff = diff;
|
|
best_index = static_cast<int>(i);
|
|
}
|
|
}
|
|
return best_index;
|
|
}
|
|
|
|
} // namespace webrtc
|