Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: José Luis Millán <[email protected]>
Co-authored-by: Iñaki Baz Castillo <[email protected]>
  • Loading branch information
3 people authored Jan 31, 2024
1 parent ea3b19c commit 4bd33f3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

### NEXT

- Make transport-cc feedbac works similarly to webrtc ([PR #1088](https://github.com/versatica/mediasoup/pull/1088) by @penguinol).
- Make transport-cc feedback works similarly to webrtc ([PR #1088](https://github.com/versatica/mediasoup/pull/1088) by @penguinol).

### 3.13.17

Expand Down
2 changes: 1 addition & 1 deletion worker/include/RTC/TransportCongestionControlServer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ namespace RTC
uint8_t unlimitedRembCounter{ 0u };
std::deque<double> packetLossHistory;
double packetLoss{ 0 };
// Whether received any packet with transport wide sequence number.
// Whether any packet with transport wide sequence number was received.
bool transportWideSeqNumberReceived{ false };
uint16_t transportCcFeedbackWideSeqNumStart{ 0u };
std::map<uint16_t, uint64_t, RTC::SeqManager<uint16_t>::SeqLowerThan> mapPacketArrivalTimes;
Expand Down
2 changes: 1 addition & 1 deletion worker/src/RTC/TransportCongestionControlServer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ namespace RTC

if (it != this->mapPacketArrivalTimes.end())
{
// Set base sequence num and reference time
// Set base sequence num and reference time.
this->transportCcFeedbackPacket->SetBase(this->transportCcFeedbackWideSeqNumStart, it->second);

for (; it != this->mapPacketArrivalTimes.end(); ++it)
Expand Down

0 comments on commit 4bd33f3

Please sign in to comment.