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

Unified Diff: content/renderer/media/android/audio_decoder_android.cc

Issue 131833006: Don't print messages about unknown WAVE chunks in Android WAV decoder. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/media/android/audio_decoder_android.cc
diff --git a/content/renderer/media/android/audio_decoder_android.cc b/content/renderer/media/android/audio_decoder_android.cc
index b589d67412c0cad3cb77ccc04a0a79a1023da7b5..97dc22aa98537d584182788ec386f5772025136f 100644
--- a/content/renderer/media/android/audio_decoder_android.cc
+++ b/content/renderer/media/android/audio_decoder_android.cc
@@ -377,8 +377,8 @@ bool WAVEDecoder::DecodeWAVEFile(blink::WebAudioBus* destination_bus) {
return CopyDataChunkToBus(destination_bus);
} else {
// Ignore these chunks that we don't know about.
- VLOG(0) << "Ignoring WAVE chunk `" << chunk_id_ << "' size "
- << chunk_size_;
+ DVLOG(0) << "Ignoring WAVE chunk `" << chunk_id_ << "' size "
+ << chunk_size_;
}
// Advance to next chunk.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698