Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(834)

Side by Side Diff: webrtc/modules/rtp_rtcp/source/rtcp_format_remb_unittest.cc

Issue 1369263002: Unify Transport and newapi::Transport interfaces. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2012 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
(...skipping 13 matching lines...) Expand all
24 24
25 using namespace webrtc; 25 using namespace webrtc;
26 26
27 27
28 class TestTransport : public Transport { 28 class TestTransport : public Transport {
29 public: 29 public:
30 TestTransport(RTCPReceiver* rtcp_receiver) : 30 TestTransport(RTCPReceiver* rtcp_receiver) :
31 rtcp_receiver_(rtcp_receiver) { 31 rtcp_receiver_(rtcp_receiver) {
32 } 32 }
33 33
34 int SendPacket(const void* /*data*/, size_t /*len*/) override { return -1; } 34 bool SendRtp(const uint8_t* /*data*/, size_t /*len*/) override { return -1; }
stefan-webrtc 2015/09/28 13:37:33 Implicit cast
35 int SendRTCPPacket(const void* packet, size_t packetLength) override { 35 bool SendRtcp(const uint8_t* packet, size_t packetLength) override {
36 RTCPUtility::RTCPParserV2 rtcpParser((uint8_t*)packet, 36 RTCPUtility::RTCPParserV2 rtcpParser((uint8_t*)packet,
37 packetLength, 37 packetLength,
38 true); // Allow non-compound RTCP 38 true); // Allow non-compound RTCP
39 39
40 EXPECT_TRUE(rtcpParser.IsValid()); 40 EXPECT_TRUE(rtcpParser.IsValid());
41 RTCPHelp::RTCPPacketInformation rtcpPacketInformation; 41 RTCPHelp::RTCPPacketInformation rtcpPacketInformation;
42 EXPECT_EQ(0, rtcp_receiver_->IncomingRTCPPacket(rtcpPacketInformation, 42 EXPECT_EQ(0, rtcp_receiver_->IncomingRTCPPacket(rtcpPacketInformation,
43 &rtcpParser)); 43 &rtcpParser));
44 44
45 EXPECT_EQ((uint32_t)kRtcpRemb, 45 EXPECT_EQ((uint32_t)kRtcpRemb,
46 rtcpPacketInformation.rtcpPacketTypeFlags & kRtcpRemb); 46 rtcpPacketInformation.rtcpPacketTypeFlags & kRtcpRemb);
47 EXPECT_EQ((uint32_t)1234, 47 EXPECT_EQ((uint32_t)1234,
48 rtcpPacketInformation.receiverEstimatedMaxBitrate); 48 rtcpPacketInformation.receiverEstimatedMaxBitrate);
49 return static_cast<int>(packetLength); 49 return static_cast<int>(packetLength);
stefan-webrtc 2015/09/28 13:37:33 Implicit cast.
50 } 50 }
51 private: 51 private:
52 RTCPReceiver* rtcp_receiver_; 52 RTCPReceiver* rtcp_receiver_;
53 }; 53 };
54 54
55 55
56 class RtcpFormatRembTest : public ::testing::Test { 56 class RtcpFormatRembTest : public ::testing::Test {
57 protected: 57 protected:
58 RtcpFormatRembTest() 58 RtcpFormatRembTest()
59 : over_use_detector_options_(), 59 : over_use_detector_options_(),
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 122
123 TEST_F(RtcpFormatRembTest, TestCompund) { 123 TEST_F(RtcpFormatRembTest, TestCompund) {
124 uint32_t SSRCs[2] = {456789, 98765}; 124 uint32_t SSRCs[2] = {456789, 98765};
125 rtcp_sender_->SetRTCPStatus(kRtcpCompound); 125 rtcp_sender_->SetRTCPStatus(kRtcpCompound);
126 rtcp_sender_->SetREMBData(1234, std::vector<uint32_t>(SSRCs, SSRCs + 2)); 126 rtcp_sender_->SetREMBData(1234, std::vector<uint32_t>(SSRCs, SSRCs + 2));
127 RTCPSender::FeedbackState feedback_state = 127 RTCPSender::FeedbackState feedback_state =
128 dummy_rtp_rtcp_impl_->GetFeedbackState(); 128 dummy_rtp_rtcp_impl_->GetFeedbackState();
129 EXPECT_EQ(0, rtcp_sender_->SendRTCP(feedback_state, kRtcpRemb)); 129 EXPECT_EQ(0, rtcp_sender_->SendRTCP(feedback_state, kRtcpRemb));
130 } 130 }
131 } // namespace 131 } // namespace
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698