Skip to content

Commit

Permalink
+
Browse files Browse the repository at this point in the history
  • Loading branch information
fippo committed Aug 6, 2024
1 parent ca51a2d commit ffb0fb4
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
1 change: 0 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

- CI: Support Node 22 ([PR #1434](https://github.com/versatica/mediasoup/pull/1434)).
- Update ESLint to version 9 ([PR #1435](https://github.com/versatica/mediasoup/pull/1435)).
- Mitigate libsrtp wraparound with loss decryption failure ([PR #1438](https://github.com/versatica/mediasoup/pull/1438)).

### 3.14.9

Expand Down
14 changes: 14 additions & 0 deletions worker/test/src/RTC/TestSeqManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1416,4 +1416,18 @@ SCENARIO("SeqManager", "[rtc][SeqMananger]")
validate(seqManager, inputs);
}

SECTION("receive packets prior to first mapped packet")
{
// clang-format off
std::vector<TestSeqManagerInput<uint16_t>> inputs =
{
{ 4, 4, false, false },
{ 3, 3, false, false },
{ 65535, 65535, false, false },
};
// clang-format on

SeqManager<uint16_t> seqManager;
validate(seqManager, inputs);
}
}

0 comments on commit ffb0fb4

Please sign in to comment.