Index: webrtc/call/video_receive_stream.h |
diff --git a/webrtc/call/video_receive_stream.h b/webrtc/call/video_receive_stream.h |
index 18e904d076489fdddf99b667d6f37dd90c163fb2..b3fe254872198a3af18476b41690cfb49e0a85d0 100644 |
--- a/webrtc/call/video_receive_stream.h |
+++ b/webrtc/call/video_receive_stream.h |
@@ -94,6 +94,10 @@ class VideoReceiveStream { |
StreamDataCounters rtp_stats; |
RtcpPacketTypeCounter rtcp_packet_type_counts; |
RtcpStatistics rtcp_stats; |
+ |
+ // Timing frame info: all important timestamps for a full lifetime of a |
+ // single 'timing frame'. |
+ rtc::Optional<webrtc::TimingFrameInfo> timing_frame_info; |
}; |
struct Config { |
@@ -221,8 +225,6 @@ class VideoReceiveStream { |
// TODO(pbos): Add info on currently-received codec to Stats. |
virtual Stats GetStats() const = 0; |
- virtual rtc::Optional<TimingFrameInfo> GetAndResetTimingFrameInfo() = 0; |
- |
// Takes ownership of the file, is responsible for closing it later. |
// Calling this method will close and finalize any current log. |
// Giving rtc::kInvalidPlatformFileValue disables logging. |