| Index: media/cast/sender/frame_sender.cc
|
| diff --git a/media/cast/sender/frame_sender.cc b/media/cast/sender/frame_sender.cc
|
| index b531a069fe46022d5089aab45b79945e8f8c64dc..687296b7f5aea557e440de9dc74a1f005a332861 100644
|
| --- a/media/cast/sender/frame_sender.cc
|
| +++ b/media/cast/sender/frame_sender.cc
|
| @@ -51,8 +51,7 @@ void FrameSender::SendRtcpReport(bool schedule_future_reports) {
|
| DCHECK(cast_environment_->CurrentlyOn(CastEnvironment::MAIN));
|
| const base::TimeTicks now = cast_environment_->Clock()->NowTicks();
|
| uint32 now_as_rtp_timestamp = 0;
|
| - if (rtp_timestamp_helper_.GetCurrentTimeAsRtpTimestamp(
|
| - now, &now_as_rtp_timestamp)) {
|
| + if (rtp_timestamp_helper_.EstimateRtpTimestamp(now, &now_as_rtp_timestamp)) {
|
| transport_sender_->SendSenderReport(ssrc_, now, now_as_rtp_timestamp);
|
| } else {
|
| // |rtp_timestamp_helper_| should have stored a mapping by this point.
|
|
|