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 17 matching lines...) Expand all Loading... |
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(const ParsedRtcEventLog& parsed_log, | 32 static void VerifyAudioSendStreamConfig(const ParsedRtcEventLog& parsed_log, |
33 size_t index, | 33 size_t index, |
34 const rtclog::StreamConfig& config); | 34 const rtclog::StreamConfig& config); |
35 static void VerifyRtpEvent(const ParsedRtcEventLog& parsed_log, | 35 static void VerifyRtpEvent(const ParsedRtcEventLog& parsed_log, |
36 size_t index, | 36 size_t index, |
37 PacketDirection direction, | 37 PacketDirection direction, |
38 MediaType media_type, | |
39 const uint8_t* header, | 38 const uint8_t* header, |
40 size_t header_size, | 39 size_t header_size, |
41 size_t total_size); | 40 size_t total_size); |
42 static void VerifyRtcpEvent(const ParsedRtcEventLog& parsed_log, | 41 static void VerifyRtcpEvent(const ParsedRtcEventLog& parsed_log, |
43 size_t index, | 42 size_t index, |
44 PacketDirection direction, | 43 PacketDirection direction, |
45 MediaType media_type, | |
46 const uint8_t* packet, | 44 const uint8_t* packet, |
47 size_t total_size); | 45 size_t total_size); |
48 static void VerifyPlayoutEvent(const ParsedRtcEventLog& parsed_log, | 46 static void VerifyPlayoutEvent(const ParsedRtcEventLog& parsed_log, |
49 size_t index, | 47 size_t index, |
50 uint32_t ssrc); | 48 uint32_t ssrc); |
51 static void VerifyBweLossEvent(const ParsedRtcEventLog& parsed_log, | 49 static void VerifyBweLossEvent(const ParsedRtcEventLog& parsed_log, |
52 size_t index, | 50 size_t index, |
53 int32_t bitrate, | 51 int32_t bitrate, |
54 uint8_t fraction_loss, | 52 uint8_t fraction_loss, |
55 int32_t total_packets); | 53 int32_t total_packets); |
(...skipping 26 matching lines...) Expand all Loading... |
82 | 80 |
83 static void VerifyProbeResultFailure(const ParsedRtcEventLog& parsed_log, | 81 static void VerifyProbeResultFailure(const ParsedRtcEventLog& parsed_log, |
84 size_t index, | 82 size_t index, |
85 uint32_t id, | 83 uint32_t id, |
86 ProbeFailureReason failure_reason); | 84 ProbeFailureReason failure_reason); |
87 }; | 85 }; |
88 | 86 |
89 } // namespace webrtc | 87 } // namespace webrtc |
90 | 88 |
91 #endif // WEBRTC_LOGGING_RTC_EVENT_LOG_RTC_EVENT_LOG_UNITTEST_HELPER_H_ | 89 #endif // WEBRTC_LOGGING_RTC_EVENT_LOG_RTC_EVENT_LOG_UNITTEST_HELPER_H_ |
OLD | NEW |