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

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

Issue 718423002: [content/renderer] Convert VLOGs to DVLOGs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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: 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 f3e118ce641332ad945d5c0852d68407685a4647..73a92257aaa2f4bbb66f51fe6466f7cd71acfcfc 100644
--- a/content/renderer/media/android/audio_decoder_android.cc
+++ b/content/renderer/media/android/audio_decoder_android.cc
@@ -309,10 +309,10 @@ bool WAVEDecoder::CopyDataChunkToBus(blink::WebAudioBus* destination_bus) {
return false;
}
- VLOG(0) << "Decoding WAVE file: " << number_of_channels_ << " channels, "
- << sample_rate_ << " kHz, "
- << chunk_size_ / bytes_per_sample_ / number_of_channels_
- << " frames, " << 8 * bytes_per_sample_ << " bits/sample";
+ DVLOG(0) << "Decoding WAVE file: " << number_of_channels_ << " channels, "
+ << sample_rate_ << " kHz, "
+ << chunk_size_ / bytes_per_sample_ / number_of_channels_
+ << " frames, " << 8 * bytes_per_sample_ << " bits/sample";
// Create the destination bus of the appropriate size and then decode
// the data into the bus.
« no previous file with comments | « content/renderer/accessibility/renderer_accessibility.cc ('k') | content/renderer/media/rtc_video_decoder_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698