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

Unified Diff: media/cast/audio_receiver/audio_receiver.cc

Issue 162333002: Cast: Rtcp and RtcpSender don't take event logs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: cast Created 6 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
« no previous file with comments | « no previous file | media/cast/rtcp/rtcp.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/audio_receiver/audio_receiver.cc
diff --git a/media/cast/audio_receiver/audio_receiver.cc b/media/cast/audio_receiver/audio_receiver.cc
index 71c2095d082a4202bde80ce7364e0f8460205525..ba846a12a459c83e0b05ed1ff52e58db10976f5a 100644
--- a/media/cast/audio_receiver/audio_receiver.cc
+++ b/media/cast/audio_receiver/audio_receiver.cc
@@ -375,14 +375,11 @@ void AudioReceiver::IncomingPacket(scoped_ptr<Packet> packet) {
}
void AudioReceiver::CastFeedback(const RtcpCastMessage& cast_message) {
- RtcpReceiverLogMessage receiver_log;
- event_subscriber_.GetReceiverLogMessageAndReset(&receiver_log);
-
base::TimeTicks now = cast_environment_->Clock()->NowTicks();
cast_environment_->Logging()->InsertGenericEvent(now, kAudioAckSent,
cast_message.ack_frame_id_);
- rtcp_->SendRtcpFromRtpReceiver(&cast_message, &receiver_log);
+ rtcp_->SendRtcpFromRtpReceiver(&cast_message, &event_subscriber_);
}
base::TimeTicks AudioReceiver::GetPlayoutTime(base::TimeTicks now,
« no previous file with comments | « no previous file | media/cast/rtcp/rtcp.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698