| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2014 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 #ifndef WEBRTC_TEST_CALL_TEST_H_ | 10 #ifndef WEBRTC_TEST_CALL_TEST_H_ |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 int width, | 84 int width, |
| 85 int height); | 85 int height); |
| 86 void CreateFrameGeneratorCapturer(int framerate, int width, int height); | 86 void CreateFrameGeneratorCapturer(int framerate, int width, int height); |
| 87 void CreateFakeAudioDevices( | 87 void CreateFakeAudioDevices( |
| 88 std::unique_ptr<FakeAudioDevice::Capturer> capturer, | 88 std::unique_ptr<FakeAudioDevice::Capturer> capturer, |
| 89 std::unique_ptr<FakeAudioDevice::Renderer> renderer); | 89 std::unique_ptr<FakeAudioDevice::Renderer> renderer); |
| 90 | 90 |
| 91 void CreateVideoStreams(); | 91 void CreateVideoStreams(); |
| 92 void CreateAudioStreams(); | 92 void CreateAudioStreams(); |
| 93 void CreateFlexfecStreams(); | 93 void CreateFlexfecStreams(); |
| 94 |
| 95 void AssociateFlexfecStreamsWithVideoStreams(); |
| 96 void DissociateFlexfecStreamsFromVideoStreams(); |
| 97 |
| 94 void Start(); | 98 void Start(); |
| 95 void Stop(); | 99 void Stop(); |
| 96 void DestroyStreams(); | 100 void DestroyStreams(); |
| 97 void SetFakeVideoCaptureRotation(VideoRotation rotation); | 101 void SetFakeVideoCaptureRotation(VideoRotation rotation); |
| 98 | 102 |
| 99 Clock* const clock_; | 103 Clock* const clock_; |
| 100 | 104 |
| 101 std::unique_ptr<webrtc::RtcEventLog> event_log_; | 105 std::unique_ptr<webrtc::RtcEventLog> event_log_; |
| 102 std::unique_ptr<Call> sender_call_; | 106 std::unique_ptr<Call> sender_call_; |
| 103 std::unique_ptr<PacketTransport> send_transport_; | 107 std::unique_ptr<PacketTransport> send_transport_; |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 EndToEndTest(); | 226 EndToEndTest(); |
| 223 explicit EndToEndTest(unsigned int timeout_ms); | 227 explicit EndToEndTest(unsigned int timeout_ms); |
| 224 | 228 |
| 225 bool ShouldCreateReceivers() const override; | 229 bool ShouldCreateReceivers() const override; |
| 226 }; | 230 }; |
| 227 | 231 |
| 228 } // namespace test | 232 } // namespace test |
| 229 } // namespace webrtc | 233 } // namespace webrtc |
| 230 | 234 |
| 231 #endif // WEBRTC_TEST_CALL_TEST_H_ | 235 #endif // WEBRTC_TEST_CALL_TEST_H_ |
| OLD | NEW |