OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2004 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2004 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 1063 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1074 rtx_ssrcs.push_back(ssrc + kRtxSsrcOffset); | 1074 rtx_ssrcs.push_back(ssrc + kRtxSsrcOffset); |
1075 } | 1075 } |
1076 } | 1076 } |
1077 if (with_rtx) { | 1077 if (with_rtx) { |
1078 return AddSendStream( | 1078 return AddSendStream( |
1079 cricket::CreateSimWithRtxStreamParams("cname", ssrcs, rtx_ssrcs)); | 1079 cricket::CreateSimWithRtxStreamParams("cname", ssrcs, rtx_ssrcs)); |
1080 } | 1080 } |
1081 return AddSendStream(CreateSimStreamParams("cname", ssrcs)); | 1081 return AddSendStream(CreateSimStreamParams("cname", ssrcs)); |
1082 } | 1082 } |
1083 | 1083 |
| 1084 int GetMaxEncoderBitrate(cricket::FakeVideoCapturer& capturer) { |
| 1085 EXPECT_TRUE(capturer.CaptureFrame()); |
| 1086 |
| 1087 std::vector<FakeVideoSendStream*> streams = |
| 1088 fake_call_->GetVideoSendStreams(); |
| 1089 EXPECT_TRUE(streams.size() > 0); |
| 1090 FakeVideoSendStream* stream = streams[streams.size() - 1]; |
| 1091 |
| 1092 webrtc::VideoEncoderConfig encoder_config = stream->GetEncoderConfig(); |
| 1093 EXPECT_EQ(1, encoder_config.streams.size()); |
| 1094 return encoder_config.streams[0].max_bitrate_bps; |
| 1095 } |
| 1096 |
| 1097 void SetAndExpectMaxBitrate(cricket::FakeVideoCapturer& capturer, |
| 1098 int global_max, |
| 1099 int stream_max, |
| 1100 int expected_encoder_bitrate) { |
| 1101 VideoSendParameters limited_send_params = send_parameters_; |
| 1102 limited_send_params.max_bandwidth_bps = global_max; |
| 1103 EXPECT_TRUE(channel_->SetSendParameters(limited_send_params)); |
| 1104 webrtc::RtpParameters parameters = channel_->GetRtpParameters(last_ssrc_); |
| 1105 EXPECT_EQ(1UL, parameters.encodings.size()); |
| 1106 parameters.encodings[0].max_bitrate_bps = stream_max; |
| 1107 EXPECT_TRUE(channel_->SetRtpParameters(last_ssrc_, parameters)); |
| 1108 // Read back the parameteres and verify they have the correct value |
| 1109 parameters = channel_->GetRtpParameters(last_ssrc_); |
| 1110 EXPECT_EQ(1UL, parameters.encodings.size()); |
| 1111 EXPECT_EQ(stream_max, parameters.encodings[0].max_bitrate_bps); |
| 1112 // Verify that the new value propagated down to the encoder |
| 1113 EXPECT_EQ(expected_encoder_bitrate, GetMaxEncoderBitrate(capturer)); |
| 1114 } |
| 1115 |
1084 std::unique_ptr<FakeCall> fake_call_; | 1116 std::unique_ptr<FakeCall> fake_call_; |
1085 std::unique_ptr<VideoMediaChannel> channel_; | 1117 std::unique_ptr<VideoMediaChannel> channel_; |
1086 cricket::VideoSendParameters send_parameters_; | 1118 cricket::VideoSendParameters send_parameters_; |
1087 cricket::VideoRecvParameters recv_parameters_; | 1119 cricket::VideoRecvParameters recv_parameters_; |
1088 uint32_t last_ssrc_; | 1120 uint32_t last_ssrc_; |
1089 }; | 1121 }; |
1090 | 1122 |
1091 TEST_F(WebRtcVideoChannel2Test, SetsSyncGroupFromSyncLabel) { | 1123 TEST_F(WebRtcVideoChannel2Test, SetsSyncGroupFromSyncLabel) { |
1092 const uint32_t kVideoSsrc = 123; | 1124 const uint32_t kVideoSsrc = 123; |
1093 const std::string kSyncLabel = "AvSyncLabel"; | 1125 const std::string kSyncLabel = "AvSyncLabel"; |
(...skipping 2004 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3098 } | 3130 } |
3099 | 3131 |
3100 TEST_F(WebRtcVideoChannel2Test, UlpfecPacketDoesntCreateUnsignalledStream) { | 3132 TEST_F(WebRtcVideoChannel2Test, UlpfecPacketDoesntCreateUnsignalledStream) { |
3101 TestReceiveUnsignalledSsrcPacket(kDefaultUlpfecType, false); | 3133 TestReceiveUnsignalledSsrcPacket(kDefaultUlpfecType, false); |
3102 } | 3134 } |
3103 | 3135 |
3104 TEST_F(WebRtcVideoChannel2Test, RedRtxPacketDoesntCreateUnsignalledStream) { | 3136 TEST_F(WebRtcVideoChannel2Test, RedRtxPacketDoesntCreateUnsignalledStream) { |
3105 TestReceiveUnsignalledSsrcPacket(kRedRtxPayloadType, false); | 3137 TestReceiveUnsignalledSsrcPacket(kRedRtxPayloadType, false); |
3106 } | 3138 } |
3107 | 3139 |
| 3140 TEST_F(WebRtcVideoChannel2Test, CanSentMaxBitrateForExistingStream) { |
| 3141 AddSendStream(); |
| 3142 |
| 3143 cricket::FakeVideoCapturer capturer; |
| 3144 EXPECT_TRUE(channel_->SetCapturer(last_ssrc_, &capturer)); |
| 3145 cricket::VideoFormat capture_format_hd = |
| 3146 capturer.GetSupportedFormats()->front(); |
| 3147 EXPECT_EQ(1280, capture_format_hd.width); |
| 3148 EXPECT_EQ(720, capture_format_hd.height); |
| 3149 EXPECT_EQ(cricket::CS_RUNNING, capturer.Start(capture_format_hd)); |
| 3150 EXPECT_TRUE(channel_->SetSend(true)); |
| 3151 |
| 3152 int default_encoder_bitrate = GetMaxEncoderBitrate(capturer); |
| 3153 EXPECT_TRUE(default_encoder_bitrate > 1000); |
| 3154 |
| 3155 // TODO(skvlad): Resolve the inconsistency between the interpretation |
| 3156 // of the global bitrate limit for audio and video: |
| 3157 // - Audio: max_bandwidth_bps = 0 - fail the operation, |
| 3158 // max_bandwidth_bps = -1 - remove the bandwidth limit |
| 3159 // - Video: max_bandwidth_bps = 0 - remove the bandwidth limit, |
| 3160 // max_bandwidth_bps = -1 - do not change the previously set |
| 3161 // limit. |
| 3162 |
| 3163 SetAndExpectMaxBitrate(capturer, 1000, 0, 1000); |
| 3164 SetAndExpectMaxBitrate(capturer, 1000, 800, 800); |
| 3165 SetAndExpectMaxBitrate(capturer, 600, 800, 600); |
| 3166 SetAndExpectMaxBitrate(capturer, 0, 800, 800); |
| 3167 SetAndExpectMaxBitrate(capturer, 0, 0, default_encoder_bitrate); |
| 3168 |
| 3169 EXPECT_TRUE(channel_->SetCapturer(last_ssrc_, NULL)); |
| 3170 } |
| 3171 |
| 3172 TEST_F(WebRtcVideoChannel2Test, CannotSetMaxBitrateForNonexistentStream) { |
| 3173 webrtc::RtpParameters nonexistent_parameters = |
| 3174 channel_->GetRtpParameters(last_ssrc_); |
| 3175 EXPECT_EQ(0, nonexistent_parameters.encodings.size()); |
| 3176 |
| 3177 nonexistent_parameters.encodings.push_back(webrtc::RtpEncodingParameters()); |
| 3178 EXPECT_FALSE(channel_->SetRtpParameters(last_ssrc_, nonexistent_parameters)); |
| 3179 } |
| 3180 |
| 3181 TEST_F(WebRtcVideoChannel2Test, |
| 3182 CannotSetRtpParametersWithIncorrectNumberOfEncodings) { |
| 3183 // This test verifies that setting RtpParameters succeeds only if |
| 3184 // the structure contains exactly one encoding. |
| 3185 // TODO(skvlad): Update this test when we strat supporting setting parameters |
| 3186 // for each encoding individually. |
| 3187 |
| 3188 AddSendStream(); |
| 3189 // Setting RtpParameters with no encoding is expected to fail. |
| 3190 webrtc::RtpParameters parameters; |
| 3191 EXPECT_FALSE(channel_->SetRtpParameters(last_ssrc_, parameters)); |
| 3192 // Setting RtpParameters with exactly one encoding should succeed. |
| 3193 parameters.encodings.push_back(webrtc::RtpEncodingParameters()); |
| 3194 EXPECT_TRUE(channel_->SetRtpParameters(last_ssrc_, parameters)); |
| 3195 // Two or more encodings should result in failure. |
| 3196 parameters.encodings.push_back(webrtc::RtpEncodingParameters()); |
| 3197 EXPECT_FALSE(channel_->SetRtpParameters(last_ssrc_, parameters)); |
| 3198 } |
| 3199 |
3108 void WebRtcVideoChannel2Test::TestReceiverLocalSsrcConfiguration( | 3200 void WebRtcVideoChannel2Test::TestReceiverLocalSsrcConfiguration( |
3109 bool receiver_first) { | 3201 bool receiver_first) { |
3110 EXPECT_TRUE(channel_->SetSendParameters(send_parameters_)); | 3202 EXPECT_TRUE(channel_->SetSendParameters(send_parameters_)); |
3111 | 3203 |
3112 const uint32_t kSenderSsrc = 0xC0FFEE; | 3204 const uint32_t kSenderSsrc = 0xC0FFEE; |
3113 const uint32_t kSecondSenderSsrc = 0xBADCAFE; | 3205 const uint32_t kSecondSenderSsrc = 0xBADCAFE; |
3114 const uint32_t kReceiverSsrc = 0x4711; | 3206 const uint32_t kReceiverSsrc = 0x4711; |
3115 const uint32_t kExpectedDefaultReceiverSsrc = 1; | 3207 const uint32_t kExpectedDefaultReceiverSsrc = 1; |
3116 | 3208 |
3117 if (receiver_first) { | 3209 if (receiver_first) { |
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3293 | 3385 |
3294 // Test that we normalize send codec format size in simulcast. | 3386 // Test that we normalize send codec format size in simulcast. |
3295 TEST_F(WebRtcVideoChannel2SimulcastTest, SetSendCodecsWithOddSizeInSimulcast) { | 3387 TEST_F(WebRtcVideoChannel2SimulcastTest, SetSendCodecsWithOddSizeInSimulcast) { |
3296 cricket::VideoCodec codec(kVp8Codec270p); | 3388 cricket::VideoCodec codec(kVp8Codec270p); |
3297 codec.width += 1; | 3389 codec.width += 1; |
3298 codec.height += 1; | 3390 codec.height += 1; |
3299 VerifySimulcastSettings(codec, 2, 2); | 3391 VerifySimulcastSettings(codec, 2, 2); |
3300 } | 3392 } |
3301 } // namespace cricket | 3393 } // namespace cricket |
3302 | 3394 |
OLD | NEW |