OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2015 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 std::string payload_name; | 48 std::string payload_name; |
49 int payload_type; | 49 int payload_type; |
50 int rtx_payload_type; | 50 int rtx_payload_type; |
51 }; | 51 }; |
52 std::vector<Codec> codecs; | 52 std::vector<Codec> codecs; |
53 }; | 53 }; |
54 | 54 |
55 } // namespace rtclog | 55 } // namespace rtclog |
56 | 56 |
57 class Clock; | 57 class Clock; |
58 class RtcEventLogImpl; | |
59 struct AudioEncoderRuntimeConfig; | 58 struct AudioEncoderRuntimeConfig; |
60 | 59 |
61 enum class MediaType; | 60 enum class MediaType; |
62 enum class BandwidthUsage; | 61 enum class BandwidthUsage; |
63 | 62 |
64 enum PacketDirection { kIncomingPacket = 0, kOutgoingPacket }; | 63 enum PacketDirection { kIncomingPacket = 0, kOutgoingPacket }; |
65 enum ProbeFailureReason { | 64 enum ProbeFailureReason { |
66 kInvalidSendReceiveInterval, | 65 kInvalidSendReceiveInterval, |
67 kInvalidSendReceiveRatio, | 66 kInvalidSendReceiveRatio, |
68 kTimeout | 67 kTimeout |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
224 int min_probes, | 223 int min_probes, |
225 int min_bytes) override{}; | 224 int min_bytes) override{}; |
226 void LogProbeResultSuccess(int id, int bitrate_bps) override{}; | 225 void LogProbeResultSuccess(int id, int bitrate_bps) override{}; |
227 void LogProbeResultFailure(int id, | 226 void LogProbeResultFailure(int id, |
228 ProbeFailureReason failure_reason) override{}; | 227 ProbeFailureReason failure_reason) override{}; |
229 }; | 228 }; |
230 | 229 |
231 } // namespace webrtc | 230 } // namespace webrtc |
232 | 231 |
233 #endif // WEBRTC_LOGGING_RTC_EVENT_LOG_RTC_EVENT_LOG_H_ | 232 #endif // WEBRTC_LOGGING_RTC_EVENT_LOG_RTC_EVENT_LOG_H_ |
OLD | NEW |