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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 static const uint8_t kUlpfecPayloadType; | 50 static const uint8_t kUlpfecPayloadType; |
51 static const uint8_t kFlexfecPayloadType; | 51 static const uint8_t kFlexfecPayloadType; |
52 static const uint8_t kAudioSendPayloadType; | 52 static const uint8_t kAudioSendPayloadType; |
53 static const uint32_t kSendRtxSsrcs[kNumSsrcs]; | 53 static const uint32_t kSendRtxSsrcs[kNumSsrcs]; |
54 static const uint32_t kVideoSendSsrcs[kNumSsrcs]; | 54 static const uint32_t kVideoSendSsrcs[kNumSsrcs]; |
55 static const uint32_t kAudioSendSsrc; | 55 static const uint32_t kAudioSendSsrc; |
56 static const uint32_t kFlexfecSendSsrc; | 56 static const uint32_t kFlexfecSendSsrc; |
57 static const uint32_t kReceiverLocalVideoSsrc; | 57 static const uint32_t kReceiverLocalVideoSsrc; |
58 static const uint32_t kReceiverLocalAudioSsrc; | 58 static const uint32_t kReceiverLocalAudioSsrc; |
59 static const int kNackRtpHistoryMs; | 59 static const int kNackRtpHistoryMs; |
| 60 static const uint8_t kDefaultKeepalivePayloadType; |
60 static const std::map<uint8_t, MediaType> payload_type_map_; | 61 static const std::map<uint8_t, MediaType> payload_type_map_; |
61 | 62 |
62 protected: | 63 protected: |
63 // RunBaseTest overwrites the audio_state and the voice_engine of the send and | 64 // RunBaseTest overwrites the audio_state and the voice_engine of the send and |
64 // receive Call configs to simplify test code and avoid having old VoiceEngine | 65 // receive Call configs to simplify test code and avoid having old VoiceEngine |
65 // APIs in the tests. | 66 // APIs in the tests. |
66 void RunBaseTest(BaseTest* test); | 67 void RunBaseTest(BaseTest* test); |
67 | 68 |
68 void CreateCalls(const Call::Config& sender_config, | 69 void CreateCalls(const Call::Config& sender_config, |
69 const Call::Config& receiver_config); | 70 const Call::Config& receiver_config); |
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
222 EndToEndTest(); | 223 EndToEndTest(); |
223 explicit EndToEndTest(unsigned int timeout_ms); | 224 explicit EndToEndTest(unsigned int timeout_ms); |
224 | 225 |
225 bool ShouldCreateReceivers() const override; | 226 bool ShouldCreateReceivers() const override; |
226 }; | 227 }; |
227 | 228 |
228 } // namespace test | 229 } // namespace test |
229 } // namespace webrtc | 230 } // namespace webrtc |
230 | 231 |
231 #endif // WEBRTC_TEST_CALL_TEST_H_ | 232 #endif // WEBRTC_TEST_CALL_TEST_H_ |
OLD | NEW |