summaryrefslogtreecommitdiffstats
path: root/media
diff options
context:
space:
mode:
Diffstat (limited to 'media')
-rw-r--r--media/filters/decrypting_audio_decoder.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/media/filters/decrypting_audio_decoder.cc b/media/filters/decrypting_audio_decoder.cc
index fd5cd0d..f5adcb9 100644
--- a/media/filters/decrypting_audio_decoder.cc
+++ b/media/filters/decrypting_audio_decoder.cc
@@ -434,8 +434,10 @@ void DecryptingAudioDecoder::EnqueueFrames(
base::TimeDelta cur_timestamp = output_timestamp_base_ +
NumberOfSamplesToDuration(total_samples_decoded_);
if (IsOutOfSync(cur_timestamp, frame->GetTimestamp())) {
- DVLOG(1) << "Timestamp returned by the decoder does not match the input "
- << "timestamp and number of samples decoded.";
+ DVLOG(1) << "Timestamp returned by the decoder ("
+ << frame->GetTimestamp().InMilliseconds() << " ms)"
+ << " does not match the input timestamp and number of samples"
+ << " decoded (" << cur_timestamp.InMilliseconds() << " ms).";
}
frame->SetTimestamp(cur_timestamp);