Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(36)

Unified Diff: media/formats/mp4/aac.cc

Issue 1041353002: media-internals: Differentiate error, info, and debug log messages (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address reviewer comments Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: media/formats/mp4/aac.cc
diff --git a/media/formats/mp4/aac.cc b/media/formats/mp4/aac.cc
index 71dededf5526d539a68cfcb951cb64aa6de5cd2f..fa5938b1da7b0a86dd3932e5ca3e16cd05308e64 100644
--- a/media/formats/mp4/aac.cc
+++ b/media/formats/mp4/aac.cc
@@ -58,8 +58,8 @@ bool AAC::Parse(const std::vector<uint8>& data, const LogCB& log_cb) {
RCHECK(reader.ReadBits(5, &profile_));
}
- MEDIA_LOG(log_cb) << "Audio codec: mp4a.40."
- << std::hex << static_cast<int>(profile_);
+ MEDIA_LOG(INFO, log_cb) << "Audio codec: mp4a.40." << std::hex
+ << static_cast<int>(profile_);
RCHECK(SkipDecoderGASpecificConfig(&reader));
RCHECK(SkipErrorSpecificConfig());

Powered by Google App Engine
This is Rietveld 408576698