2015-03-02 09:05:47 +00:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2015 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.
|
|
|
|
|
*/
|
|
|
|
|
|
2018-01-26 15:09:41 +01:00
|
|
|
#ifndef MODULES_CONGESTION_CONTROLLER_SEND_TIME_HISTORY_H_
|
|
|
|
|
#define MODULES_CONGESTION_CONTROLLER_SEND_TIME_HISTORY_H_
|
2015-03-02 09:05:47 +00:00
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
|
|
2017-09-15 06:47:31 +02:00
|
|
|
#include "modules/include/module_common_types.h"
|
|
|
|
|
#include "rtc_base/basictypes.h"
|
|
|
|
|
#include "rtc_base/constructormagic.h"
|
2015-03-02 09:05:47 +00:00
|
|
|
|
|
|
|
|
namespace webrtc {
|
2016-08-01 09:23:19 -07:00
|
|
|
class Clock;
|
2017-03-06 05:32:21 -08:00
|
|
|
struct PacketFeedback;
|
2015-03-02 09:05:47 +00:00
|
|
|
|
|
|
|
|
class SendTimeHistory {
|
|
|
|
|
public:
|
2017-03-09 07:09:31 -08:00
|
|
|
SendTimeHistory(const Clock* clock, int64_t packet_age_limit_ms);
|
2016-08-01 09:23:19 -07:00
|
|
|
~SendTimeHistory();
|
|
|
|
|
|
|
|
|
|
// Cleanup old entries, then add new packet info with provided parameters.
|
2017-03-15 12:40:25 +01:00
|
|
|
void AddAndRemoveOld(const PacketFeedback& packet);
|
2016-08-01 09:23:19 -07:00
|
|
|
|
|
|
|
|
// Updates packet info identified by |sequence_number| with |send_time_ms|.
|
|
|
|
|
// Return false if not found.
|
|
|
|
|
bool OnSentPacket(uint16_t sequence_number, int64_t send_time_ms);
|
|
|
|
|
|
2017-03-06 05:32:21 -08:00
|
|
|
// Look up PacketFeedback for a sent packet, based on the sequence number, and
|
2016-08-01 09:23:19 -07:00
|
|
|
// populate all fields except for arrival_time. The packet parameter must
|
2015-09-04 04:43:21 -07:00
|
|
|
// thus be non-null and have the sequence_number field set.
|
2017-03-06 05:32:21 -08:00
|
|
|
bool GetFeedback(PacketFeedback* packet_feedback, bool remove);
|
2015-03-02 09:05:47 +00:00
|
|
|
|
Reland of Add functionality which limits the number of bytes on the network. (patchset #1 id:1 of https://codereview.webrtc.org/3001653002/ )
Reason for revert:
Reland
Original issue's description:
> Revert of Add functionality which limits the number of bytes on the network. (patchset #26 id:500001 of https://codereview.webrtc.org/2918323002/ )
>
> Reason for revert:
> Speculative revert to see if this caused regressions in android perf tests.
>
> Original issue's description:
> > Add functionality which limits the number of bytes on the network.
> >
> > The limit is based on the bandwidth delay product, but also adds some additional slack to compensate for the sawtooth-like BWE pattern and the slowness of the encoder rate control. The delay is estimated based on the time from sending a packet until an ack is received. Since acks are received in bursts (feedback is only sent periodically), a min filter is used to estimate the rtt.
> >
> > Whenever the in flight bytes reaches the congestion window, the pacer is paused, which in turn will result in send-side queues growing. Eventually the encoders will be paused as the pacer queue grows large (currently 2 seconds).
> >
> > BUG=webrtc:7926
> >
> > Review-Url: https://codereview.webrtc.org/2918323002
> > Cr-Commit-Position: refs/heads/master@{#19289}
> > Committed: https://chromium.googlesource.com/external/webrtc/+/8497fdde43d920ab1f0cc90362534e5493d23abe
>
> TBR=terelius@webrtc.org,philipel@webrtc.org,tschumim@webrtc.org,gnish@webrtc.org
> # Not skipping CQ checks because original CL landed more than 1 days ago.
> BUG=webrtc:7926
>
> Review-Url: https://codereview.webrtc.org/3001653002
> Cr-Commit-Position: refs/heads/master@{#19339}
> Committed: https://chromium.googlesource.com/external/webrtc/+/64136af364d1fecada49e35b1bfa39ef2641d5d0
TBR=terelius@webrtc.org,philipel@webrtc.org,tschumim@webrtc.org,gnish@webrtc.org
# Not skipping CQ checks because original CL landed more than 1 days ago.
BUG=webrtc:7926
Review-Url: https://codereview.webrtc.org/2994343002
Cr-Commit-Position: refs/heads/master@{#19373}
2017-08-16 08:16:25 -07:00
|
|
|
size_t GetOutstandingBytes(uint16_t local_net_id,
|
|
|
|
|
uint16_t remote_net_id) const;
|
|
|
|
|
|
2015-03-02 09:05:47 +00:00
|
|
|
private:
|
2017-03-09 07:09:31 -08:00
|
|
|
const Clock* const clock_;
|
2016-08-01 09:23:19 -07:00
|
|
|
const int64_t packet_age_limit_ms_;
|
|
|
|
|
SequenceNumberUnwrapper seq_num_unwrapper_;
|
2017-03-06 05:32:21 -08:00
|
|
|
std::map<int64_t, PacketFeedback> history_;
|
Reland of Add functionality which limits the number of bytes on the network. (patchset #1 id:1 of https://codereview.webrtc.org/3001653002/ )
Reason for revert:
Reland
Original issue's description:
> Revert of Add functionality which limits the number of bytes on the network. (patchset #26 id:500001 of https://codereview.webrtc.org/2918323002/ )
>
> Reason for revert:
> Speculative revert to see if this caused regressions in android perf tests.
>
> Original issue's description:
> > Add functionality which limits the number of bytes on the network.
> >
> > The limit is based on the bandwidth delay product, but also adds some additional slack to compensate for the sawtooth-like BWE pattern and the slowness of the encoder rate control. The delay is estimated based on the time from sending a packet until an ack is received. Since acks are received in bursts (feedback is only sent periodically), a min filter is used to estimate the rtt.
> >
> > Whenever the in flight bytes reaches the congestion window, the pacer is paused, which in turn will result in send-side queues growing. Eventually the encoders will be paused as the pacer queue grows large (currently 2 seconds).
> >
> > BUG=webrtc:7926
> >
> > Review-Url: https://codereview.webrtc.org/2918323002
> > Cr-Commit-Position: refs/heads/master@{#19289}
> > Committed: https://chromium.googlesource.com/external/webrtc/+/8497fdde43d920ab1f0cc90362534e5493d23abe
>
> TBR=terelius@webrtc.org,philipel@webrtc.org,tschumim@webrtc.org,gnish@webrtc.org
> # Not skipping CQ checks because original CL landed more than 1 days ago.
> BUG=webrtc:7926
>
> Review-Url: https://codereview.webrtc.org/3001653002
> Cr-Commit-Position: refs/heads/master@{#19339}
> Committed: https://chromium.googlesource.com/external/webrtc/+/64136af364d1fecada49e35b1bfa39ef2641d5d0
TBR=terelius@webrtc.org,philipel@webrtc.org,tschumim@webrtc.org,gnish@webrtc.org
# Not skipping CQ checks because original CL landed more than 1 days ago.
BUG=webrtc:7926
Review-Url: https://codereview.webrtc.org/2994343002
Cr-Commit-Position: refs/heads/master@{#19373}
2017-08-16 08:16:25 -07:00
|
|
|
rtc::Optional<int64_t> latest_acked_seq_num_;
|
2015-03-02 09:05:47 +00:00
|
|
|
|
2016-08-01 09:23:19 -07:00
|
|
|
RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(SendTimeHistory);
|
2015-03-02 09:05:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace webrtc
|
2018-01-26 15:09:41 +01:00
|
|
|
#endif // MODULES_CONGESTION_CONTROLLER_SEND_TIME_HISTORY_H_
|