| Index: media/base/decoder_buffer.cc
|
| diff --git a/media/base/decoder_buffer.cc b/media/base/decoder_buffer.cc
|
| index 9eaa128ceb2ce66a8778666a680bf04d45c37d72..d4e75410abeba58915547062d3722439fdceb3f9 100644
|
| --- a/media/base/decoder_buffer.cc
|
| +++ b/media/base/decoder_buffer.cc
|
| @@ -80,7 +80,8 @@ std::string DecoderBuffer::AsHumanReadableString() {
|
| << " duration: " << duration_.InMicroseconds()
|
| << " size: " << size_
|
| << " side_data_size: " << side_data_size_
|
| - << " encrypted: " << (decrypt_config_ != NULL);
|
| + << " encrypted: " << (decrypt_config_ != NULL)
|
| + << " discard_padding (ms): " << discard_padding_.InMilliseconds();
|
| return s.str();
|
| }
|
|
|
|
|