mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-14 14:20:45 +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}
75 lines
2.3 KiB
C++
75 lines
2.3 KiB
C++
/*
|
|
* Copyright (c) 2016 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/congestion_controller/include/receive_side_congestion_controller.h"
|
|
#include "modules/pacing/packet_router.h"
|
|
#include "system_wrappers/include/clock.h"
|
|
#include "test/gmock.h"
|
|
#include "test/gtest.h"
|
|
|
|
using testing::_;
|
|
using testing::AtLeast;
|
|
using testing::NiceMock;
|
|
using testing::Return;
|
|
using testing::SaveArg;
|
|
using testing::StrictMock;
|
|
|
|
namespace webrtc {
|
|
|
|
namespace {
|
|
|
|
// Helper to convert some time format to resolution used in absolute send time
|
|
// header extension, rounded upwards. |t| is the time to convert, in some
|
|
// resolution. |denom| is the value to divide |t| by to get whole seconds,
|
|
// e.g. |denom| = 1000 if |t| is in milliseconds.
|
|
uint32_t AbsSendTime(int64_t t, int64_t denom) {
|
|
return (((t << 18) + (denom >> 1)) / denom) & 0x00fffffful;
|
|
}
|
|
|
|
class MockPacketRouter : public PacketRouter {
|
|
public:
|
|
MOCK_METHOD2(OnReceiveBitrateChanged,
|
|
void(const std::vector<uint32_t>& ssrcs, uint32_t bitrate));
|
|
};
|
|
|
|
const uint32_t kInitialBitrateBps = 60000;
|
|
|
|
} // namespace
|
|
|
|
namespace test {
|
|
|
|
TEST(ReceiveSideCongestionControllerTest, OnReceivedPacketWithAbsSendTime) {
|
|
StrictMock<MockPacketRouter> packet_router;
|
|
SimulatedClock clock_(123456);
|
|
|
|
ReceiveSideCongestionController controller(&clock_, &packet_router);
|
|
|
|
size_t payload_size = 1000;
|
|
RTPHeader header;
|
|
header.ssrc = 0x11eb21c;
|
|
header.extension.hasAbsoluteSendTime = true;
|
|
|
|
std::vector<unsigned int> ssrcs;
|
|
EXPECT_CALL(packet_router, OnReceiveBitrateChanged(_, _))
|
|
.WillRepeatedly(SaveArg<0>(&ssrcs));
|
|
|
|
for (int i = 0; i < 10; ++i) {
|
|
clock_.AdvanceTimeMilliseconds((1000 * payload_size) / kInitialBitrateBps);
|
|
int64_t now_ms = clock_.TimeInMilliseconds();
|
|
header.extension.absoluteSendTime = AbsSendTime(now_ms, 1000);
|
|
controller.OnReceivedPacket(now_ms, payload_size, header);
|
|
}
|
|
|
|
ASSERT_EQ(1u, ssrcs.size());
|
|
EXPECT_EQ(header.ssrc, ssrcs[0]);
|
|
}
|
|
|
|
} // namespace test
|
|
} // namespace webrtc
|