Index: webrtc/call/rtc_event_log_parser.h |
diff --git a/webrtc/call/rtc_event_log_parser.h b/webrtc/call/rtc_event_log_parser.h |
index 74f066d575ac86439dc62039f82467818eb16e30..35c818f763f853c4168badd4dda4c6ade9f2f1f1 100644 |
--- a/webrtc/call/rtc_event_log_parser.h |
+++ b/webrtc/call/rtc_event_log_parser.h |
@@ -96,6 +96,15 @@ class ParsedRtcEventLog { |
// Only the fields that are stored in the protobuf will be written. |
void GetVideoSendConfig(size_t index, VideoSendStream::Config* config) const; |
+ // Reads a config event to a (non-NULL) AudioReceiveStream::Config struct. |
+ // Only the fields that are stored in the protobuf will be written. |
+ void GetAudioReceiveConfig(size_t index, |
+ AudioReceiveStream::Config* config) const; |
+ |
+ // Reads a config event to a (non-NULL) AudioSendStream::Config struct. |
+ // Only the fields that are stored in the protobuf will be written. |
+ void GetAudioSendConfig(size_t index, AudioSendStream::Config* config) const; |
+ |
// Reads the SSRC from the audio playout event at |index|. The SSRC is stored |
// in the output parameter ssrc. The output parameter can be set to nullptr |
// and in that case the function only asserts that the event is well formed. |