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

Unified Diff: webrtc/video/vie_sync_module.h

Issue 1756193005: Add histogram stats for AV sync stream offset: (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: mark constructor explicit Created 4 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/video/video_receive_stream.cc ('k') | webrtc/video/vie_sync_module.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/video/vie_sync_module.h
diff --git a/webrtc/video/vie_sync_module.h b/webrtc/video/vie_sync_module.h
index a5dff437f02c302adc415fac7b154a2b5fbf5730..2b499ff4d38a49cef992281e1af155712ea8f896 100644
--- a/webrtc/video/vie_sync_module.h
+++ b/webrtc/video/vie_sync_module.h
@@ -24,8 +24,10 @@
namespace webrtc {
+class Clock;
class RtpRtcp;
class VideoCodingModule;
+class VideoFrame;
class ViEChannel;
class VoEVideoSync;
@@ -43,9 +45,15 @@ class ViESyncModule : public Module {
int64_t TimeUntilNextProcess() override;
void Process() override;
+ // Gets the sync offset between the current played out audio frame and the
+ // video |frame|. Returns true on success, false otherwise.
+ bool GetStreamSyncOffsetInMs(const VideoFrame& frame,
+ int64_t* stream_offset_ms) const;
+
private:
rtc::CriticalSection data_cs_;
VideoCodingModule* const vcm_;
+ Clock* const clock_;
RtpReceiver* video_receiver_;
RtpRtcp* video_rtp_rtcp_;
int voe_channel_id_;
« no previous file with comments | « webrtc/video/video_receive_stream.cc ('k') | webrtc/video/vie_sync_module.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698