| Index: webrtc/logging/rtc_event_log/rtc_event_log_parser.h
|
| diff --git a/webrtc/logging/rtc_event_log/rtc_event_log_parser.h b/webrtc/logging/rtc_event_log/rtc_event_log_parser.h
|
| index 966f00dfe031132ec9592190694bfbb3d01358b9..f69c80364400f50f504812ac80e3648a4a8ad00c 100644
|
| --- a/webrtc/logging/rtc_event_log/rtc_event_log_parser.h
|
| +++ b/webrtc/logging/rtc_event_log/rtc_event_log_parser.h
|
| @@ -92,25 +92,23 @@ class ParsedRtcEventLog {
|
| // Reads the event type of the rtclog::Event at |index|.
|
| EventType GetEventType(size_t index) const;
|
|
|
| - // Reads the header, direction, media type, header length and packet length
|
| - // from the RTP event at |index|, and stores the values in the corresponding
|
| - // output parameters. Each output parameter can be set to nullptr if that
|
| - // value isn't needed.
|
| + // Reads the header, direction, header length and packet length from the RTP
|
| + // event at |index|, and stores the values in the corresponding output
|
| + // parameters. Each output parameter can be set to nullptr if that value
|
| + // isn't needed.
|
| // NB: The header must have space for at least IP_PACKET_SIZE bytes.
|
| void GetRtpHeader(size_t index,
|
| PacketDirection* incoming,
|
| - MediaType* media_type,
|
| uint8_t* header,
|
| size_t* header_length,
|
| size_t* total_length) const;
|
|
|
| - // Reads packet, direction, media type and packet length from the RTCP event
|
| - // at |index|, and stores the values in the corresponding output parameters.
|
| + // Reads packet, direction and packet length from the RTCP event at |index|,
|
| + // and stores the values in the corresponding output parameters.
|
| // Each output parameter can be set to nullptr if that value isn't needed.
|
| // NB: The packet must have space for at least IP_PACKET_SIZE bytes.
|
| void GetRtcpPacket(size_t index,
|
| PacketDirection* incoming,
|
| - MediaType* media_type,
|
| uint8_t* packet,
|
| size_t* length) const;
|
|
|
|
|