| Index: media/formats/webm/webm_cluster_parser.cc
|
| diff --git a/media/formats/webm/webm_cluster_parser.cc b/media/formats/webm/webm_cluster_parser.cc
|
| index 38a9f42bcfe5678bcfcf725da17330ce72aa6db7..92b508bc17544f4e86c328cd7830ba7330a3f230 100644
|
| --- a/media/formats/webm/webm_cluster_parser.cc
|
| +++ b/media/formats/webm/webm_cluster_parser.cc
|
| @@ -241,9 +241,8 @@
|
| // things go sideways.
|
| LIMITED_MEDIA_LOG(DEBUG, media_log_, num_duration_errors_,
|
| kMaxDurationErrorLogs)
|
| - << "Warning, demuxed Opus packet with encoded duration: "
|
| - << duration.InMilliseconds() << "ms. Should be no greater than "
|
| - << kPacketDurationMax.InMilliseconds() << "ms.";
|
| + << "Warning, demuxed Opus packet with encoded duration: " << duration
|
| + << ". Should be no greater than " << kPacketDurationMax;
|
| }
|
|
|
| return duration;
|
| @@ -562,9 +561,10 @@
|
| if (duration_difference.magnitude() > kWarnDurationDiff) {
|
| LIMITED_MEDIA_LOG(DEBUG, media_log_, num_duration_errors_,
|
| kMaxDurationErrorLogs)
|
| - << "BlockDuration (" << block_duration_time_delta.InMilliseconds()
|
| - << "ms) differs significantly from encoded duration ("
|
| - << encoded_duration.InMilliseconds() << "ms).";
|
| + << "BlockDuration "
|
| + << "(" << block_duration_time_delta << ") "
|
| + << "differs significantly from encoded duration "
|
| + << "(" << encoded_duration << ").";
|
| }
|
| }
|
| } else if (block_duration_time_delta != kNoTimestamp()) {
|
| @@ -693,11 +693,10 @@
|
|
|
| LIMITED_MEDIA_LOG(INFO, media_log_, num_duration_estimates_,
|
| kMaxDurationEstimateLogs)
|
| - << "Estimating WebM block duration to be "
|
| - << estimated_duration.InMilliseconds()
|
| - << "ms for the last (Simple)Block in the Cluster for this Track. Use "
|
| - "BlockGroups with BlockDurations at the end of each Track in a "
|
| - "Cluster to avoid estimation.";
|
| + << "Estimating WebM block duration to be " << estimated_duration << " "
|
| + << "for the last (Simple)Block in the Cluster for this Track. Use "
|
| + << "BlockGroups with BlockDurations at the end of each Track in a "
|
| + << "Cluster to avoid estimation.";
|
|
|
| DVLOG(2) << __FUNCTION__ << " new dur : ts "
|
| << last_added_buffer_missing_duration_->timestamp().InSecondsF()
|
|
|