| Index: webrtc/modules/rtp_rtcp/source/rtp_sender_unittest.cc
|
| diff --git a/webrtc/modules/rtp_rtcp/source/rtp_sender_unittest.cc b/webrtc/modules/rtp_rtcp/source/rtp_sender_unittest.cc
|
| index 62fd743d2fb432c62a7f91e4562472e6d4af55e8..2f664d74fcba57b4cd0673341fe7966a80f66ec1 100644
|
| --- a/webrtc/modules/rtp_rtcp/source/rtp_sender_unittest.cc
|
| +++ b/webrtc/modules/rtp_rtcp/source/rtp_sender_unittest.cc
|
| @@ -332,7 +332,6 @@ TEST_F(RtpSenderTestWithoutPacer, RegisterRtpHeaderExtensions) {
|
| rtp_sender_->RtpHeaderExtensionLength());
|
| EXPECT_EQ(0, rtp_sender_->RegisterRtpHeaderExtension(
|
| kRtpExtensionVideoRotation, kVideoRotationExtensionId));
|
| - EXPECT_TRUE(rtp_sender_->ActivateCVORtpHeaderExtension());
|
| EXPECT_EQ(RtpUtility::Word32Align(kRtpOneByteHeaderLength +
|
| kTransmissionTimeOffsetLength +
|
| kAbsoluteSendTimeLength +
|
| @@ -365,9 +364,7 @@ TEST_F(RtpSenderTestWithoutPacer, RegisterRtpVideoRotationHeaderExtension) {
|
| EXPECT_EQ(0u, rtp_sender_->RtpHeaderExtensionLength());
|
| EXPECT_EQ(0, rtp_sender_->RegisterRtpHeaderExtension(
|
| kRtpExtensionVideoRotation, kVideoRotationExtensionId));
|
| - EXPECT_EQ(0u, rtp_sender_->RtpHeaderExtensionLength());
|
|
|
| - EXPECT_TRUE(rtp_sender_->ActivateCVORtpHeaderExtension());
|
| EXPECT_EQ(
|
| RtpUtility::Word32Align(kRtpOneByteHeaderLength + kVideoRotationLength),
|
| rtp_sender_->RtpHeaderExtensionLength());
|
| @@ -1435,8 +1432,6 @@ TEST_F(RtpSenderVideoTest, SendVideoWithCVO) {
|
|
|
| EXPECT_EQ(0, rtp_sender_->RegisterRtpHeaderExtension(
|
| kRtpExtensionVideoRotation, kVideoRotationExtensionId));
|
| - EXPECT_TRUE(rtp_sender_->ActivateCVORtpHeaderExtension());
|
| -
|
| EXPECT_EQ(
|
| RtpUtility::Word32Align(kRtpOneByteHeaderLength + kVideoRotationLength),
|
| rtp_sender_->RtpHeaderExtensionLength());
|
|
|