| Index: media/formats/mp4/box_definitions.cc
|
| diff --git a/media/formats/mp4/box_definitions.cc b/media/formats/mp4/box_definitions.cc
|
| index fec356afd50fd55215a514bc973d3c59f5d52eca..2308b5f0fcf3f6633c51b599da5176de88a01cca 100644
|
| --- a/media/formats/mp4/box_definitions.cc
|
| +++ b/media/formats/mp4/box_definitions.cc
|
| @@ -393,10 +393,10 @@ bool AVCDecoderConfigurationRecord::ParseInternal(BufferReader* reader,
|
| RCHECK(sps_list[i].size() > 4);
|
|
|
| if (!log_cb.is_null()) {
|
| - MEDIA_LOG(log_cb) << "Video codec: avc1." << std::hex
|
| - << static_cast<int>(sps_list[i][1])
|
| - << static_cast<int>(sps_list[i][2])
|
| - << static_cast<int>(sps_list[i][3]);
|
| + MEDIA_LOG(log_cb, INFO) << "Video codec: avc1." << std::hex
|
| + << static_cast<int>(sps_list[i][1])
|
| + << static_cast<int>(sps_list[i][2])
|
| + << static_cast<int>(sps_list[i][3]);
|
| }
|
| }
|
|
|
| @@ -489,8 +489,9 @@ bool ElementaryStreamDescriptor::Parse(BoxReader* reader) {
|
| object_type = es_desc.object_type();
|
|
|
| if (object_type != 0x40) {
|
| - MEDIA_LOG(reader->log_cb()) << "Audio codec: mp4a."
|
| - << std::hex << static_cast<int>(object_type);
|
| + MEDIA_LOG(reader->log_cb(), INFO) << "Audio codec: mp4a."
|
| + << std::hex
|
| + << static_cast<int>(object_type);
|
| }
|
|
|
| if (es_desc.IsAAC(object_type))
|
|
|