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

Unified Diff: webrtc/video/vie_sync_module.cc

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/vie_sync_module.h ('k') | webrtc/video_receive_stream.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/video/vie_sync_module.cc
diff --git a/webrtc/video/vie_sync_module.cc b/webrtc/video/vie_sync_module.cc
index f8376e53d1f6d0bf49b715ad09596bfd7201f556..9feace79b930e189969d6fd4c4efd2b48866e86c 100644
--- a/webrtc/video/vie_sync_module.cc
+++ b/webrtc/video/vie_sync_module.cc
@@ -16,11 +16,13 @@
#include "webrtc/modules/rtp_rtcp/include/rtp_receiver.h"
#include "webrtc/modules/rtp_rtcp/include/rtp_rtcp.h"
#include "webrtc/modules/video_coding/include/video_coding.h"
+#include "webrtc/system_wrappers/include/clock.h"
#include "webrtc/video/stream_synchronization.h"
+#include "webrtc/video_frame.h"
#include "webrtc/voice_engine/include/voe_video_sync.h"
namespace webrtc {
-
+namespace {
int UpdateMeasurements(StreamSynchronization::Measurements* stream,
const RtpRtcp& rtp_rtcp, const RtpReceiver& receiver) {
if (!receiver.Timestamp(&stream->latest_timestamp))
@@ -47,16 +49,17 @@ int UpdateMeasurements(StreamSynchronization::Measurements* stream,
return 0;
}
+} // namespace
ViESyncModule::ViESyncModule(VideoCodingModule* vcm)
: vcm_(vcm),
+ clock_(Clock::GetRealTimeClock()),
video_receiver_(NULL),
video_rtp_rtcp_(NULL),
voe_channel_id_(-1),
voe_sync_interface_(NULL),
last_sync_time_(TickTime::Now()),
- sync_() {
-}
+ sync_() {}
ViESyncModule::~ViESyncModule() {
}
@@ -157,4 +160,37 @@ void ViESyncModule::Process() {
vcm_->SetMinimumPlayoutDelay(target_video_delay_ms);
}
+bool ViESyncModule::GetStreamSyncOffsetInMs(const VideoFrame& frame,
+ int64_t* stream_offset_ms) const {
+ rtc::CritScope lock(&data_cs_);
+ if (voe_channel_id_ == -1)
+ return false;
+
+ uint32_t playout_timestamp = 0;
+ if (voe_sync_interface_->GetPlayoutTimestamp(voe_channel_id_,
+ playout_timestamp) != 0) {
+ return false;
+ }
+
+ int64_t latest_audio_ntp;
+ if (!RtpToNtpMs(playout_timestamp, audio_measurement_.rtcp,
+ &latest_audio_ntp)) {
+ return false;
+ }
+
+ int64_t latest_video_ntp;
+ if (!RtpToNtpMs(frame.timestamp(), video_measurement_.rtcp,
+ &latest_video_ntp)) {
+ return false;
+ }
+
+ int64_t time_to_render_ms =
+ frame.render_time_ms() - clock_->TimeInMilliseconds();
+ if (time_to_render_ms > 0)
+ latest_video_ntp += time_to_render_ms;
+
+ *stream_offset_ms = latest_audio_ntp - latest_video_ntp;
+ return true;
+}
+
} // namespace webrtc
« no previous file with comments | « webrtc/video/vie_sync_module.h ('k') | webrtc/video_receive_stream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698