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

Unified Diff: webrtc/video/stream_synchronization.h

Issue 2574133003: Make class of static functions in rtp_to_ntp.h: (Closed)
Patch Set: address comments Created 4 years 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/rtp_streams_synchronizer.cc ('k') | webrtc/video/stream_synchronization.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/video/stream_synchronization.h
diff --git a/webrtc/video/stream_synchronization.h b/webrtc/video/stream_synchronization.h
index c700ee3bf70641fc792edcbdea45e23a67da8fd9..0b1ad4fd3a865dfb86e71edf595eafa81e5bf29a 100644
--- a/webrtc/video/stream_synchronization.h
+++ b/webrtc/video/stream_synchronization.h
@@ -13,7 +13,7 @@
#include <list>
-#include "webrtc/system_wrappers/include/rtp_to_ntp.h"
+#include "webrtc/system_wrappers/include/rtp_to_ntp_estimator.h"
#include "webrtc/typedefs.h"
namespace webrtc {
@@ -21,8 +21,8 @@ namespace webrtc {
class StreamSynchronization {
public:
struct Measurements {
- Measurements() : rtcp(), latest_receive_time_ms(0), latest_timestamp(0) {}
- RtcpMeasurements rtcp;
+ Measurements() : latest_receive_time_ms(0), latest_timestamp(0) {}
+ RtpToNtpEstimator rtp_to_ntp;
int64_t latest_receive_time_ms;
uint32_t latest_timestamp;
};
« no previous file with comments | « webrtc/video/rtp_streams_synchronizer.cc ('k') | webrtc/video/stream_synchronization.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698