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

Unified Diff: media/cast/audio_sender/audio_sender.h

Issue 307933007: Cast: Log audio received events for audio (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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 | « no previous file | media/cast/audio_sender/audio_sender.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/audio_sender/audio_sender.h
diff --git a/media/cast/audio_sender/audio_sender.h b/media/cast/audio_sender/audio_sender.h
index 8911320b3f43771281562152db10bebc2f768dcf..c633b076c8a7edff836f85de206784c45b3e1e98 100644
--- a/media/cast/audio_sender/audio_sender.h
+++ b/media/cast/audio_sender/audio_sender.h
@@ -66,6 +66,10 @@ class AudioSender : public RtcpSenderFeedback,
int num_aggressive_rtcp_reports_sent_;
CastInitializationStatus cast_initialization_cb_;
+ // Used to map the lower 8 bits of the frame id to a RTP timestamp. This is
+ // good enough as we only use it for logging.
+ RtpTimestamp frame_id_to_rtp_timestamp_[256];
miu 2014/05/30 23:33:30 Ugh. I hate this approach. But, we're doing it i
+
// NOTE: Weak pointers must be invalidated before all other member variables.
base::WeakPtrFactory<AudioSender> weak_factory_;
« no previous file with comments | « no previous file | media/cast/audio_sender/audio_sender.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698