Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(322)

Side by Side Diff: webrtc/logging/rtc_event_log/rtc_event_log_parser.h

Issue 2745473003: Resolve cyclic dependency between audio network adaptor and event log api (Closed)
Patch Set: Revert "Activated checks for rtc_event_log_api" Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 #ifndef WEBRTC_LOGGING_RTC_EVENT_LOG_RTC_EVENT_LOG_PARSER_H_ 10 #ifndef WEBRTC_LOGGING_RTC_EVENT_LOG_RTC_EVENT_LOG_PARSER_H_
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 129
130 // Reads bitrate and detector_state from the delay based BWE event at |index| 130 // Reads bitrate and detector_state from the delay based BWE event at |index|
131 // and stores the values in the corresponding output parameters. Each output 131 // and stores the values in the corresponding output parameters. Each output
132 // parameter can be set to nullptr if that 132 // parameter can be set to nullptr if that
133 // value isn't needed. 133 // value isn't needed.
134 void GetDelayBasedBweUpdate(size_t index, 134 void GetDelayBasedBweUpdate(size_t index,
135 int32_t* bitrate_bps, 135 int32_t* bitrate_bps,
136 BandwidthUsage* detector_state) const; 136 BandwidthUsage* detector_state) const;
137 137
138 // Reads a audio network adaptation event to a (non-NULL) 138 // Reads a audio network adaptation event to a (non-NULL)
139 // AudioNetworkAdaptor::EncoderRuntimeConfig struct. Only the fields that are 139 // AudioEncoderRuntimeConfig struct. Only the fields that are
140 // stored in the protobuf will be written. 140 // stored in the protobuf will be written.
141 void GetAudioNetworkAdaptation( 141 void GetAudioNetworkAdaptation(size_t index,
142 size_t index, 142 AudioEncoderRuntimeConfig* config) const;
143 AudioNetworkAdaptor::EncoderRuntimeConfig* config) const;
144 143
145 private: 144 private:
146 std::vector<rtclog::Event> events_; 145 std::vector<rtclog::Event> events_;
147 }; 146 };
148 147
149 } // namespace webrtc 148 } // namespace webrtc
150 149
151 #endif // WEBRTC_LOGGING_RTC_EVENT_LOG_RTC_EVENT_LOG_PARSER_H_ 150 #endif // WEBRTC_LOGGING_RTC_EVENT_LOG_RTC_EVENT_LOG_PARSER_H_
OLDNEW
« no previous file with comments | « webrtc/logging/rtc_event_log/rtc_event_log.cc ('k') | webrtc/logging/rtc_event_log/rtc_event_log_parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698