| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 size_t total_size); | 49 size_t total_size); |
| 50 static void VerifyPlayoutEvent(const ParsedRtcEventLog& parsed_log, | 50 static void VerifyPlayoutEvent(const ParsedRtcEventLog& parsed_log, |
| 51 size_t index, | 51 size_t index, |
| 52 uint32_t ssrc); | 52 uint32_t ssrc); |
| 53 static void VerifyBweLossEvent(const ParsedRtcEventLog& parsed_log, | 53 static void VerifyBweLossEvent(const ParsedRtcEventLog& parsed_log, |
| 54 size_t index, | 54 size_t index, |
| 55 int32_t bitrate, | 55 int32_t bitrate, |
| 56 uint8_t fraction_loss, | 56 uint8_t fraction_loss, |
| 57 int32_t total_packets); | 57 int32_t total_packets); |
| 58 | 58 |
| 59 static void VerifyAudioNetworkAdaptation( |
| 60 const ParsedRtcEventLog& parsed_log, |
| 61 size_t index, |
| 62 const AudioNetworkAdaptor::EncoderRuntimeConfig& config); |
| 63 |
| 59 static void VerifyLogStartEvent(const ParsedRtcEventLog& parsed_log, | 64 static void VerifyLogStartEvent(const ParsedRtcEventLog& parsed_log, |
| 60 size_t index); | 65 size_t index); |
| 61 static void VerifyLogEndEvent(const ParsedRtcEventLog& parsed_log, | 66 static void VerifyLogEndEvent(const ParsedRtcEventLog& parsed_log, |
| 62 size_t index); | 67 size_t index); |
| 63 }; | 68 }; |
| 64 | 69 |
| 65 } // namespace webrtc | 70 } // namespace webrtc |
| 66 | 71 |
| 67 #endif // WEBRTC_LOGGING_RTC_EVENT_LOG_RTC_EVENT_LOG_UNITTEST_HELPER_H_ | 72 #endif // WEBRTC_LOGGING_RTC_EVENT_LOG_RTC_EVENT_LOG_UNITTEST_HELPER_H_ |
| OLD | NEW |