| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| 11 #include <map> | 11 #include <map> |
| 12 #include <memory> | 12 #include <memory> |
| 13 #include <set> | 13 #include <set> |
| 14 | 14 |
| 15 #include "webrtc/base/rate_limiter.h" | 15 #include "webrtc/base/rate_limiter.h" |
| 16 #include "webrtc/common_types.h" | 16 #include "webrtc/common_types.h" |
| 17 #include "webrtc/modules/rtp_rtcp/include/rtp_header_parser.h" | 17 #include "webrtc/modules/rtp_rtcp/include/rtp_header_parser.h" |
| 18 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" | 18 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" |
| 19 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet.h" | 19 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet.h" |
| 20 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/nack.h" | 20 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/nack.h" |
| 21 #include "webrtc/modules/rtp_rtcp/source/rtp_rtcp_defines_nullimpl.h" |
| 21 #include "webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl.h" | 22 #include "webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl.h" |
| 22 #include "webrtc/test/gmock.h" | 23 #include "webrtc/test/gmock.h" |
| 23 #include "webrtc/test/gtest.h" | 24 #include "webrtc/test/gtest.h" |
| 24 #include "webrtc/test/rtcp_packet_parser.h" | 25 #include "webrtc/test/rtcp_packet_parser.h" |
| 25 | 26 |
| 26 using ::testing::_; | 27 using ::testing::_; |
| 27 using ::testing::ElementsAre; | 28 using ::testing::ElementsAre; |
| 28 using ::testing::NiceMock; | 29 using ::testing::NiceMock; |
| 29 using ::testing::Return; | 30 using ::testing::Return; |
| 30 using ::testing::SaveArg; | 31 using ::testing::SaveArg; |
| (...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 548 EXPECT_EQ(6U, receiver_.RtcpSent().unique_nack_requests); | 549 EXPECT_EQ(6U, receiver_.RtcpSent().unique_nack_requests); |
| 549 EXPECT_THAT(receiver_.LastNackListSent(), ElementsAre(11, 18, 20, 21)); | 550 EXPECT_THAT(receiver_.LastNackListSent(), ElementsAre(11, 18, 20, 21)); |
| 550 | 551 |
| 551 // Send module receives the request. | 552 // Send module receives the request. |
| 552 EXPECT_EQ(2U, sender_.RtcpReceived().nack_packets); | 553 EXPECT_EQ(2U, sender_.RtcpReceived().nack_packets); |
| 553 EXPECT_EQ(8U, sender_.RtcpReceived().nack_requests); | 554 EXPECT_EQ(8U, sender_.RtcpReceived().nack_requests); |
| 554 EXPECT_EQ(6U, sender_.RtcpReceived().unique_nack_requests); | 555 EXPECT_EQ(6U, sender_.RtcpReceived().unique_nack_requests); |
| 555 EXPECT_EQ(75, sender_.RtcpReceived().UniqueNackRequestsInPercent()); | 556 EXPECT_EQ(75, sender_.RtcpReceived().UniqueNackRequestsInPercent()); |
| 556 } | 557 } |
| 557 } // namespace webrtc | 558 } // namespace webrtc |
| OLD | NEW |