forked from JumpingYang001/webrtc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Delete unused method RtpReceiver::CSRCs.
This is a preparation for extracting CSRC book-keeping to its own class. Bug: webrtc:7135 Change-Id: Ic51ceb57ec53a43064a3d0392de8baa978a4e8cf Reviewed-on: https://webrtc-review.googlesource.com/93463 Reviewed-by: Danil Chapovalov <[email protected]> Commit-Queue: Niels Moller <[email protected]> Cr-Commit-Position: refs/heads/master@{#24257}
- Loading branch information
Niels Möller
authored and
Commit Bot
committed
Aug 10, 2018
1 parent
2ad8c43
commit d3b62cf
Showing
4 changed files
with
0 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -161,11 +161,6 @@ class RtpRtcpRtcpTest : public ::testing::Test { | |
}; | ||
|
||
TEST_F(RtpRtcpRtcpTest, RTCP_CNAME) { | ||
uint32_t testOfCSRC[webrtc::kRtpCsrcSize]; | ||
EXPECT_EQ(2, rtp_receiver2_->CSRCs(testOfCSRC)); | ||
EXPECT_EQ(test_csrcs[0], testOfCSRC[0]); | ||
EXPECT_EQ(test_csrcs[1], testOfCSRC[1]); | ||
|
||
// Set cname of mixed. | ||
EXPECT_EQ(0, module1->AddMixedCNAME(test_csrcs[0], "[email protected]")); | ||
EXPECT_EQ(0, module1->AddMixedCNAME(test_csrcs[1], "[email protected]")); | ||
|