| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2016 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 | 10 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 const ParsedRtcEventLog& parsed_log, | 22 const ParsedRtcEventLog& parsed_log, |
| 23 size_t index, | 23 size_t index, |
| 24 const rtclog::StreamConfig& config); | 24 const rtclog::StreamConfig& config); |
| 25 static void VerifyVideoSendStreamConfig(const ParsedRtcEventLog& parsed_log, | 25 static void VerifyVideoSendStreamConfig(const ParsedRtcEventLog& parsed_log, |
| 26 size_t index, | 26 size_t index, |
| 27 const rtclog::StreamConfig& config); | 27 const rtclog::StreamConfig& config); |
| 28 static void VerifyAudioReceiveStreamConfig( | 28 static void VerifyAudioReceiveStreamConfig( |
| 29 const ParsedRtcEventLog& parsed_log, | 29 const ParsedRtcEventLog& parsed_log, |
| 30 size_t index, | 30 size_t index, |
| 31 const rtclog::StreamConfig& config); | 31 const rtclog::StreamConfig& config); |
| 32 static void VerifyAudioSendStreamConfig( | 32 static void VerifyAudioSendStreamConfig(const ParsedRtcEventLog& parsed_log, |
| 33 const ParsedRtcEventLog& parsed_log, | 33 size_t index, |
| 34 size_t index, | 34 const rtclog::StreamConfig& config); |
| 35 const AudioSendStream::Config& config); | |
| 36 static void VerifyRtpEvent(const ParsedRtcEventLog& parsed_log, | 35 static void VerifyRtpEvent(const ParsedRtcEventLog& parsed_log, |
| 37 size_t index, | 36 size_t index, |
| 38 PacketDirection direction, | 37 PacketDirection direction, |
| 39 MediaType media_type, | 38 MediaType media_type, |
| 40 const uint8_t* header, | 39 const uint8_t* header, |
| 41 size_t header_size, | 40 size_t header_size, |
| 42 size_t total_size); | 41 size_t total_size); |
| 43 static void VerifyRtcpEvent(const ParsedRtcEventLog& parsed_log, | 42 static void VerifyRtcpEvent(const ParsedRtcEventLog& parsed_log, |
| 44 size_t index, | 43 size_t index, |
| 45 PacketDirection direction, | 44 PacketDirection direction, |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 | 82 |
| 84 static void VerifyProbeResultFailure(const ParsedRtcEventLog& parsed_log, | 83 static void VerifyProbeResultFailure(const ParsedRtcEventLog& parsed_log, |
| 85 size_t index, | 84 size_t index, |
| 86 uint32_t id, | 85 uint32_t id, |
| 87 ProbeFailureReason failure_reason); | 86 ProbeFailureReason failure_reason); |
| 88 }; | 87 }; |
| 89 | 88 |
| 90 } // namespace webrtc | 89 } // namespace webrtc |
| 91 | 90 |
| 92 #endif // WEBRTC_LOGGING_RTC_EVENT_LOG_RTC_EVENT_LOG_UNITTEST_HELPER_H_ | 91 #endif // WEBRTC_LOGGING_RTC_EVENT_LOG_RTC_EVENT_LOG_UNITTEST_HELPER_H_ |
| OLD | NEW |