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 #include <algorithm> | 10 #include <algorithm> |
(...skipping 26 matching lines...) Expand all Loading... | |
37 #include "webrtc/voice_engine/include/voe_base.h" | 37 #include "webrtc/voice_engine/include/voe_base.h" |
38 #include "webrtc/voice_engine/include/voe_codec.h" | 38 #include "webrtc/voice_engine/include/voe_codec.h" |
39 #include "webrtc/voice_engine/include/voe_network.h" | 39 #include "webrtc/voice_engine/include/voe_network.h" |
40 #include "webrtc/voice_engine/include/voe_rtp_rtcp.h" | 40 #include "webrtc/voice_engine/include/voe_rtp_rtcp.h" |
41 #include "webrtc/voice_engine/include/voe_video_sync.h" | 41 #include "webrtc/voice_engine/include/voe_video_sync.h" |
42 | 42 |
43 namespace webrtc { | 43 namespace webrtc { |
44 | 44 |
45 class CallPerfTest : public test::CallTest { | 45 class CallPerfTest : public test::CallTest { |
46 protected: | 46 protected: |
47 void TestAudioVideoSync(bool fec); | 47 void TestAudioVideoSync(bool fec, bool create_audio_first); |
48 | 48 |
49 void TestCpuOveruse(LoadObserver::Load tested_load, int encode_delay_ms); | 49 void TestCpuOveruse(LoadObserver::Load tested_load, int encode_delay_ms); |
50 | 50 |
51 void TestMinTransmitBitrate(bool pad_to_min_bitrate); | 51 void TestMinTransmitBitrate(bool pad_to_min_bitrate); |
52 | 52 |
53 void TestCaptureNtpTime(const FakeNetworkPipe::Config& net_config, | 53 void TestCaptureNtpTime(const FakeNetworkPipe::Config& net_config, |
54 int threshold_ms, | 54 int threshold_ms, |
55 int start_time_ms, | 55 int start_time_ms, |
56 int run_time_ms); | 56 int run_time_ms); |
57 }; | 57 }; |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
182 | 182 |
183 private: | 183 private: |
184 Clock* const clock_; | 184 Clock* const clock_; |
185 int voe_channel_; | 185 int voe_channel_; |
186 VoEVideoSync* voe_sync_; | 186 VoEVideoSync* voe_sync_; |
187 SyncRtcpObserver* audio_observer_; | 187 SyncRtcpObserver* audio_observer_; |
188 int64_t creation_time_ms_; | 188 int64_t creation_time_ms_; |
189 int64_t first_time_in_sync_; | 189 int64_t first_time_in_sync_; |
190 }; | 190 }; |
191 | 191 |
192 void CallPerfTest::TestAudioVideoSync(bool fec) { | 192 void CallPerfTest::TestAudioVideoSync(bool fec, bool create_audio_first) { |
193 const char* kSyncGroup = "av_sync"; | |
193 class AudioPacketReceiver : public PacketReceiver { | 194 class AudioPacketReceiver : public PacketReceiver { |
194 public: | 195 public: |
195 AudioPacketReceiver(int channel, VoENetwork* voe_network) | 196 AudioPacketReceiver(int channel, VoENetwork* voe_network) |
196 : channel_(channel), | 197 : channel_(channel), |
197 voe_network_(voe_network), | 198 voe_network_(voe_network), |
198 parser_(RtpHeaderParser::Create()) {} | 199 parser_(RtpHeaderParser::Create()) {} |
199 DeliveryStatus DeliverPacket(MediaType media_type, const uint8_t* packet, | 200 DeliveryStatus DeliverPacket(MediaType media_type, const uint8_t* packet, |
200 size_t length) override { | 201 size_t length) override { |
201 EXPECT_TRUE(media_type == MediaType::ANY || | 202 EXPECT_TRUE(media_type == MediaType::ANY || |
202 media_type == MediaType::AUDIO); | 203 media_type == MediaType::AUDIO); |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
262 | 263 |
263 send_config_.rtp.nack.rtp_history_ms = kNackRtpHistoryMs; | 264 send_config_.rtp.nack.rtp_history_ms = kNackRtpHistoryMs; |
264 if (fec) { | 265 if (fec) { |
265 send_config_.rtp.fec.red_payload_type = kRedPayloadType; | 266 send_config_.rtp.fec.red_payload_type = kRedPayloadType; |
266 send_config_.rtp.fec.ulpfec_payload_type = kUlpfecPayloadType; | 267 send_config_.rtp.fec.ulpfec_payload_type = kUlpfecPayloadType; |
267 receive_configs_[0].rtp.fec.red_payload_type = kRedPayloadType; | 268 receive_configs_[0].rtp.fec.red_payload_type = kRedPayloadType; |
268 receive_configs_[0].rtp.fec.ulpfec_payload_type = kUlpfecPayloadType; | 269 receive_configs_[0].rtp.fec.ulpfec_payload_type = kUlpfecPayloadType; |
269 } | 270 } |
270 receive_configs_[0].rtp.nack.rtp_history_ms = 1000; | 271 receive_configs_[0].rtp.nack.rtp_history_ms = 1000; |
271 receive_configs_[0].renderer = &observer; | 272 receive_configs_[0].renderer = &observer; |
272 receive_configs_[0].audio_channel_id = channel; | 273 receive_configs_[0].sync_group = kSyncGroup; |
274 | |
275 AudioReceiveStream::Config audio_config; | |
276 audio_config.channel_id = channel; | |
277 audio_config.sync_group = kSyncGroup; | |
278 | |
279 | |
the sun
2015/06/11 11:52:04
dd
pbos-webrtc
2015/06/11 14:48:53
ddone
| |
280 AudioReceiveStream* audio_receive_stream = nullptr; | |
281 | |
282 if (create_audio_first) { | |
283 audio_receive_stream = | |
284 receiver_call_->CreateAudioReceiveStream(audio_config); | |
285 } | |
273 | 286 |
274 CreateStreams(); | 287 CreateStreams(); |
275 | 288 |
289 if (!create_audio_first) { | |
290 audio_receive_stream = | |
291 receiver_call_->CreateAudioReceiveStream(audio_config); | |
292 } | |
293 | |
276 CreateFrameGeneratorCapturer(); | 294 CreateFrameGeneratorCapturer(); |
277 | 295 |
278 Start(); | 296 Start(); |
279 | 297 |
280 fake_audio_device.Start(); | 298 fake_audio_device.Start(); |
281 EXPECT_EQ(0, voe_base->StartPlayout(channel)); | 299 EXPECT_EQ(0, voe_base->StartPlayout(channel)); |
282 EXPECT_EQ(0, voe_base->StartReceive(channel)); | 300 EXPECT_EQ(0, voe_base->StartReceive(channel)); |
283 EXPECT_EQ(0, voe_base->StartSend(channel)); | 301 EXPECT_EQ(0, voe_base->StartSend(channel)); |
284 | 302 |
285 EXPECT_EQ(kEventSignaled, observer.Wait()) | 303 EXPECT_EQ(kEventSignaled, observer.Wait()) |
286 << "Timed out while waiting for audio and video to be synchronized."; | 304 << "Timed out while waiting for audio and video to be synchronized."; |
287 | 305 |
288 EXPECT_EQ(0, voe_base->StopSend(channel)); | 306 EXPECT_EQ(0, voe_base->StopSend(channel)); |
289 EXPECT_EQ(0, voe_base->StopReceive(channel)); | 307 EXPECT_EQ(0, voe_base->StopReceive(channel)); |
290 EXPECT_EQ(0, voe_base->StopPlayout(channel)); | 308 EXPECT_EQ(0, voe_base->StopPlayout(channel)); |
291 fake_audio_device.Stop(); | 309 fake_audio_device.Stop(); |
292 | 310 |
293 Stop(); | 311 Stop(); |
294 observer.StopSending(); | 312 observer.StopSending(); |
295 audio_observer.StopSending(); | 313 audio_observer.StopSending(); |
296 | 314 |
297 voe_base->DeleteChannel(channel); | 315 voe_base->DeleteChannel(channel); |
298 voe_base->Release(); | 316 voe_base->Release(); |
299 voe_codec->Release(); | 317 voe_codec->Release(); |
300 voe_network->Release(); | 318 voe_network->Release(); |
301 voe_sync->Release(); | 319 voe_sync->Release(); |
302 | 320 |
303 DestroyStreams(); | 321 DestroyStreams(); |
304 | 322 |
323 receiver_call_->DestroyAudioReceiveStream(audio_receive_stream); | |
324 | |
305 VoiceEngine::Delete(voice_engine); | 325 VoiceEngine::Delete(voice_engine); |
306 } | 326 } |
307 | 327 |
308 TEST_F(CallPerfTest, PlaysOutAudioAndVideoInSync) { | 328 TEST_F(CallPerfTest, PlaysOutAudioAndVideoInSyncWithAudioCreatedFirst) { |
309 TestAudioVideoSync(false); | 329 TestAudioVideoSync(false, true); |
310 } | 330 } |
311 | 331 |
332 TEST_F(CallPerfTest, PlaysOutAudioAndVideoInSyncWithVideoCreatedFirst) { | |
333 TestAudioVideoSync(false, false); | |
334 } | |
335 | |
336 | |
pbos-webrtc
2015/06/11 14:48:53
Done.
| |
312 TEST_F(CallPerfTest, PlaysOutAudioAndVideoInSyncWithFec) { | 337 TEST_F(CallPerfTest, PlaysOutAudioAndVideoInSyncWithFec) { |
313 TestAudioVideoSync(true); | 338 TestAudioVideoSync(true, false); |
314 } | 339 } |
315 | 340 |
316 void CallPerfTest::TestCaptureNtpTime(const FakeNetworkPipe::Config& net_config, | 341 void CallPerfTest::TestCaptureNtpTime(const FakeNetworkPipe::Config& net_config, |
317 int threshold_ms, | 342 int threshold_ms, |
318 int start_time_ms, | 343 int start_time_ms, |
319 int run_time_ms) { | 344 int run_time_ms) { |
320 class CaptureNtpTimeObserver : public test::EndToEndTest, | 345 class CaptureNtpTimeObserver : public test::EndToEndTest, |
321 public VideoRenderer { | 346 public VideoRenderer { |
322 public: | 347 public: |
323 CaptureNtpTimeObserver(const FakeNetworkPipe::Config& config, | 348 CaptureNtpTimeObserver(const FakeNetworkPipe::Config& config, |
(...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
678 int encoder_inits_; | 703 int encoder_inits_; |
679 uint32_t last_set_bitrate_; | 704 uint32_t last_set_bitrate_; |
680 VideoSendStream* send_stream_; | 705 VideoSendStream* send_stream_; |
681 VideoEncoderConfig encoder_config_; | 706 VideoEncoderConfig encoder_config_; |
682 } test; | 707 } test; |
683 | 708 |
684 RunBaseTest(&test); | 709 RunBaseTest(&test); |
685 } | 710 } |
686 | 711 |
687 } // namespace webrtc | 712 } // namespace webrtc |
OLD | NEW |