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_COMMON_CALL_TEST_H_ | 10 #ifndef WEBRTC_TEST_COMMON_CALL_TEST_H_ |
(...skipping 13 matching lines...) Expand all Loading... |
24 | 24 |
25 class BaseTest; | 25 class BaseTest; |
26 | 26 |
27 class CallTest : public ::testing::Test { | 27 class CallTest : public ::testing::Test { |
28 public: | 28 public: |
29 CallTest(); | 29 CallTest(); |
30 ~CallTest(); | 30 ~CallTest(); |
31 | 31 |
32 static const size_t kNumSsrcs = 3; | 32 static const size_t kNumSsrcs = 3; |
33 | 33 |
34 static const unsigned int kDefaultTimeoutMs; | 34 static const int kDefaultTimeoutMs; |
35 static const unsigned int kLongTimeoutMs; | 35 static const int kLongTimeoutMs; |
36 static const uint8_t kSendPayloadType; | 36 static const uint8_t kSendPayloadType; |
37 static const uint8_t kSendRtxPayloadType; | 37 static const uint8_t kSendRtxPayloadType; |
38 static const uint8_t kFakeSendPayloadType; | 38 static const uint8_t kFakeSendPayloadType; |
39 static const uint8_t kRedPayloadType; | 39 static const uint8_t kRedPayloadType; |
40 static const uint8_t kRtxRedPayloadType; | 40 static const uint8_t kRtxRedPayloadType; |
41 static const uint8_t kUlpfecPayloadType; | 41 static const uint8_t kUlpfecPayloadType; |
42 static const uint32_t kSendRtxSsrcs[kNumSsrcs]; | 42 static const uint32_t kSendRtxSsrcs[kNumSsrcs]; |
43 static const uint32_t kSendSsrcs[kNumSsrcs]; | 43 static const uint32_t kSendSsrcs[kNumSsrcs]; |
44 static const uint32_t kReceiverLocalSsrc; | 44 static const uint32_t kReceiverLocalSsrc; |
45 static const int kNackRtpHistoryMs; | 45 static const int kNackRtpHistoryMs; |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 public: | 120 public: |
121 explicit EndToEndTest(unsigned int timeout_ms); | 121 explicit EndToEndTest(unsigned int timeout_ms); |
122 | 122 |
123 bool ShouldCreateReceivers() const override; | 123 bool ShouldCreateReceivers() const override; |
124 }; | 124 }; |
125 | 125 |
126 } // namespace test | 126 } // namespace test |
127 } // namespace webrtc | 127 } // namespace webrtc |
128 | 128 |
129 #endif // WEBRTC_TEST_COMMON_CALL_TEST_H_ | 129 #endif // WEBRTC_TEST_COMMON_CALL_TEST_H_ |
OLD | NEW |