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

Unified Diff: media/cast/net/pacing/paced_sender.h

Issue 1515433002: Replace uses of raw uint32's with a type-checked RtpTimeTicks data type. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Speculative workaround fix for win8_chromium_ng compile error. Created 5 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 | « media/cast/net/mock_cast_transport_sender.h ('k') | media/cast/net/pacing/paced_sender.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/net/pacing/paced_sender.h
diff --git a/media/cast/net/pacing/paced_sender.h b/media/cast/net/pacing/paced_sender.h
index 4bc1f0b459fc6491c2ff3508d9e508a5f22337cb..bf1116eb267782c6ac55e976206d5084a57bcd9d 100644
--- a/media/cast/net/pacing/paced_sender.h
+++ b/media/cast/net/pacing/paced_sender.h
@@ -228,6 +228,11 @@ class PacedSender : public PacedPacketSender,
bool has_reached_upper_bound_once_;
+ // Tracks recently-logged RTP timestamps so that it can expand the truncated
+ // values found in packets.
+ RtpTimeTicks last_logged_audio_rtp_timestamp_;
+ RtpTimeTicks last_logged_video_rtp_timestamp_;
+
// NOTE: Weak pointers must be invalidated before all other member variables.
base::WeakPtrFactory<PacedSender> weak_factory_;
« no previous file with comments | « media/cast/net/mock_cast_transport_sender.h ('k') | media/cast/net/pacing/paced_sender.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698