| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 static const int kDefaultTimeoutMs; | 43 static const int kDefaultTimeoutMs; |
| 44 static const int kLongTimeoutMs; | 44 static const int kLongTimeoutMs; |
| 45 static const uint8_t kVideoSendPayloadType; | 45 static const uint8_t kVideoSendPayloadType; |
| 46 static const uint8_t kSendRtxPayloadType; | 46 static const uint8_t kSendRtxPayloadType; |
| 47 static const uint8_t kFakeVideoSendPayloadType; | 47 static const uint8_t kFakeVideoSendPayloadType; |
| 48 static const uint8_t kRedPayloadType; | 48 static const uint8_t kRedPayloadType; |
| 49 static const uint8_t kRtxRedPayloadType; | 49 static const uint8_t kRtxRedPayloadType; |
| 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 uint8_t kPayloadTypeH264; |
| 54 static const uint8_t kPayloadTypeVP8; |
| 55 static const uint8_t kPayloadTypeVP9; |
| 53 static const uint32_t kSendRtxSsrcs[kNumSsrcs]; | 56 static const uint32_t kSendRtxSsrcs[kNumSsrcs]; |
| 54 static const uint32_t kVideoSendSsrcs[kNumSsrcs]; | 57 static const uint32_t kVideoSendSsrcs[kNumSsrcs]; |
| 55 static const uint32_t kAudioSendSsrc; | 58 static const uint32_t kAudioSendSsrc; |
| 56 static const uint32_t kFlexfecSendSsrc; | 59 static const uint32_t kFlexfecSendSsrc; |
| 57 static const uint32_t kReceiverLocalVideoSsrc; | 60 static const uint32_t kReceiverLocalVideoSsrc; |
| 58 static const uint32_t kReceiverLocalAudioSsrc; | 61 static const uint32_t kReceiverLocalAudioSsrc; |
| 59 static const int kNackRtpHistoryMs; | 62 static const int kNackRtpHistoryMs; |
| 60 static const std::map<uint8_t, MediaType> payload_type_map_; | 63 static const std::map<uint8_t, MediaType> payload_type_map_; |
| 61 | 64 |
| 62 protected: | 65 protected: |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 EndToEndTest(); | 225 EndToEndTest(); |
| 223 explicit EndToEndTest(unsigned int timeout_ms); | 226 explicit EndToEndTest(unsigned int timeout_ms); |
| 224 | 227 |
| 225 bool ShouldCreateReceivers() const override; | 228 bool ShouldCreateReceivers() const override; |
| 226 }; | 229 }; |
| 227 | 230 |
| 228 } // namespace test | 231 } // namespace test |
| 229 } // namespace webrtc | 232 } // namespace webrtc |
| 230 | 233 |
| 231 #endif // WEBRTC_TEST_CALL_TEST_H_ | 234 #endif // WEBRTC_TEST_CALL_TEST_H_ |
| OLD | NEW |