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

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: Created 4 years, 10 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
Index: webrtc/video/vie_sync_module.h
diff --git a/webrtc/video/vie_sync_module.h b/webrtc/video/vie_sync_module.h
index 5724ce799a7307caba2c0c0162b14f1b72affefe..b08dd8a79965b252d0f746dfda67db76eb6ab268 100644
--- a/webrtc/video/vie_sync_module.h
+++ b/webrtc/video/vie_sync_module.h
@@ -23,8 +23,10 @@
namespace webrtc {
+class Clock;
class RtpRtcp;
class VideoCodingModule;
+class VideoFrame;
class ViEChannel;
class VoEVideoSync;
@@ -42,9 +44,14 @@ class ViESyncModule : public Module {
int64_t TimeUntilNextProcess() override;
void Process() override;
+ // Returns the absolute value of the sync offset between the video |frame| and
+ // the current played out audio frame (or -1 on error).
pbos-webrtc 2016/03/04 14:34:27 -1 if not configured/in use?
åsapersson 2016/03/09 15:44:35 Done.
+ int64_t GetStreamSyncOffsetInMs(const VideoFrame& frame);
stefan-webrtc 2016/03/04 14:32:17 Would it be reasonable to request a unittest here
åsapersson 2016/03/09 15:44:35 I will look into adding unittest for this class. M
stefan-webrtc 2016/03/09 15:59:30 Sure no problem.
+
private:
rtc::CriticalSection data_cs_;
VideoCodingModule* const vcm_;
+ Clock* const clock_;
RtpReceiver* video_receiver_;
RtpRtcp* video_rtp_rtcp_;
int voe_channel_id_;

Powered by Google App Engine
This is Rietveld 408576698